// JavaScript Document

		//Main menu Images
function load_rollovers() {
	if (document.images) {
		imgHome = new Image();
		imgHome.src = "images/menu_home_off.gif";
		imgFilm = new Image();
		imgFilm.src = "images/menu_film_off.gif";
		imgPeople = new Image();
		imgPeople.src = "images/menu_people_off.gif";
		imgGames = new Image();
		imgGames.src = "images/menu_games_off.gif";
		imgContact = new Image();
		imgContact.src = "images/menu_contact_off.gif";
		
		imgHome_on = new Image();
		imgHome_on.src = "images/menu_home_on.gif";
		imgFilm_on = new Image();
		imgFilm_on.src = "images/menu_film_on.gif";
		imgPeople_on = new Image();
		imgPeople_on.src = "images/menu_people_on.gif";
		imgGames_on = new Image();
		imgGames_on.src = "images/menu_games_on.gif";
		imgContact_on = new Image();
		imgContact_on.src = "images/menu_contact_on.gif";
	}
}

function rollover(hotimage) {
	if (document.images) {
		eval("document.btn" + hotimage + ".src = img" + hotimage + "_on.src");
		}
}

function rollout(hotimage) {
	if (document.images) {
		eval("document.btn" + hotimage + ".src = img" + hotimage + ".src");
		}
}
