

	var button0 = new Image();

		button0.over = 'images/new/btn_home_off.gif';

		button0.src = 'images/new/btn_home_on.gif';



	var button1 = new Image();

		button1.over = 'images/new/btn_bio_off.gif';

		button1.src = 'images/new/btn_bio_on.gif';	



	var button2 = new Image();

		button2.over = 'images/new/btn_intent_off.gif';

		button2.src = 'images/new/btn_intent_on.gif';	



	var button3 = new Image();

		button3.over = 'images/new/btn_chef_off.gif';

		button3.src = 'images/new/btn_chef_on.gif';	



	var button4 = new Image();

		button4.over = 'images/new/btn_cook_off.gif';

		button4.src = 'images/new/btn_cook_on.gif';	



	var button5 = new Image();

		button5.over = 'images/new/btn_catering_off.gif';

		button5.src = 'images/new/btn_catering_on.gif';	



	var button6 = new Image();

		button6.over = 'images/new/btn_contact_off.gif';

		button6.src = 'images/new/btn_contact_on.gif';	



	var button7 = new Image();

		button7.over = 'images/new/btn_testimonials_off.gif';

		button7.src = 'images/new/btn_testimonials_on.gif';	
		


	var button8 = new Image();

		button8.over = 'images/new/btn_coach_off.gif';

		button8.src = 'images/new/btn_coach_on.gif';	



	var button9 = new Image();

		button9.over = 'images/new/btn_recipes_off.gif';

		button9.src = 'images/new/btn_recipes_on.gif';	




	function mover(thisimg) {	

	var d = document.images ? (document.images) : document.all;

		d[thisimg].src = eval(thisimg + '.src');

	}	

	function mout(thisimg) {

	var d = document.images ? (document.images) : document.all;

		d[thisimg].src = eval(thisimg + '.over');

	}