// JavaScript Document
function initPage() {
 	var img = document.getElementById("main_logo");
  
	if (screen.width < 1024) {
 		document.body.style.backgroundImage = "url(images/background_800_640.jpg)";
		img.src = "images/button_order.jpg";
		img.width = "166";
		img.height = "94";
		
	} else {
 		document.body.style.backgroundImage = "url(images/background_1280_1024.jpg)";
	}  
}


function btnMouseOver(img) {
	if (img.id == "btn_order") {
		if (screen.width < 1024) {
			img.src = "images/button_order2_small.jpg";
		} else {
			img.src = "images/button_order2.jpg";
		}
	
	} else if (img.id == "btn_catering") {
		if (screen.width < 1024) {
			img.src = "images/button_catering2_small.jpg";
		} else {
			img.src = "images/button_catering2.jpg";
		}
		
	} else if (img.id == "btn_ingredients") {
		if (screen.width < 1024) {
			img.src = "images/button_ingredients2_small.jpg";
		} else {
			img.src = "images/button_ingredients2.jpg";
		}
		
	} else if (img.id == "btn_menu") {
		if (screen.width < 1024) {
			img.src = "images/button_menu2_small.jpg";
		} else {
			img.src = "images/button_menu2.jpg";
		}
		
	} else if (img.id == "btn_specials") {
		if (screen.width < 1024) {
			img.src = "images/button_specials2_small.jpg";
		} else {
			img.src = "images/button_specials2.jpg";
		}
		
	} else if (img.id == "btn_aboutus") {
		if (screen.width < 1024) {
			img.src = "images/button_aboutus2_small.jpg";
		} else {
			img.src = "images/button_aboutus2.jpg";
		}
		
	} else if (img.id == "btn_events") {
		if (screen.width < 1024) {
			img.src = "images/button_events2_small.jpg";
		} else {
			img.src = "images/button_events2.jpg";
		}
	}
}


function btnMouseOut(img) {
	if (img.id == "btn_order") {
		if (screen.width < 1024) {
			img.src = "images/button_order_small.jpg";
		} else {
			img.src = "images/button_order.jpg";
		}
	
	} else if (img.id == "btn_catering") {
		if (screen.width < 1024) {
			img.src = "images/button_catering_small.jpg";
		} else {
			img.src = "images/button_catering.jpg";
		}
		
	} else if (img.id == "btn_ingredients") {
		if (screen.width < 1024) {
			img.src = "images/button_ingredients_small.jpg";
		} else {
			img.src = "images/button_ingredients.jpg";
		}
		
	} else if (img.id == "btn_menu") {
		if (screen.width < 1024) {
			img.src = "images/button_menu_small.jpg";
		} else {
			img.src = "images/button_menu.jpg";
		}
		
	} else if (img.id == "btn_specials") {
		if (screen.width < 1024) {
			img.src = "images/button_specials_small.jpg";
		} else {
			img.src = "images/button_specials.jpg";
		}
		
	} else if (img.id == "btn_aboutus") {
		if (screen.width < 1024) {
			img.src = "images/button_aboutus_small.jpg";
		} else {
			img.src = "images/button_aboutus.jpg";
		}
		
	} else if (img.id == "btn_events") {
		if (screen.width < 1024) {
			img.src = "images/button_events_small.jpg";
		} else {
			img.src = "images/button_events.jpg";
		}	
		
	}
}