running 2 mosfets with uno

hi
i want to turn on 2 bulbs using 2 mosfets the probleme is that they both turns on when it should turn up just one light!!!
code :
void setup() {
pinMode(13, OUTPUT);
pinMode(7, OUTPUT);
}

void loop() {
digitalWrite(13,1);
digitalWrite(13,0);
}
see circuit below

The built in LED is also on 13.
Change that mosfet to a different pin and the sketch to suit.