var loaded;
function swapover(n)
{

	if(document.getElementById && loaded == true)
	{
	
		eval('document.getElementById("button'+n+'").src = on'+n+'.src');
		
	}
	
}

function swapout(n)
{
	
	if(document.getElementById && loaded == true)
	{
	
		eval('document.getElementById("button'+n+'").src = off'+n+'.src');
		
	}
	
}

function preloadimages()
{

	imgdir = "../images/";

	on1 = new Image();
	on1.src = imgdir+"games_button_on.gif";
	off1 = new Image();
	off1.src = imgdir+"games_button.gif";

	on2 = new Image();
	on2.src = imgdir+"promotions_button_on.gif";
	off2 = new Image();
	off2.src = imgdir+"promotions_button.gif";

	on3 = new Image();
	on3.src = imgdir+"winners_circle_button_on.gif";
	off3 = new Image();
	off3.src = imgdir+"winners_circle_button.gif";

	on4 = new Image();
	on4.src = imgdir+"videos_and_more_button_on.gif";
	off4 = new Image();
	off4.src = imgdir+"videos_and_more_button.gif";

	on5 = new Image();
	on5.src = imgdir+"faq_button_on.gif";
	off5 = new Image();
	off5.src = imgdir+"faq_button.gif";

	on6 = new Image();
	on6.src = imgdir+"press_room_button_on.gif";
	off6 = new Image();
	off6.src = imgdir+"press_room_button.gif";

	on7 = new Image();
	on7.src = imgdir+"game_show_button_on.gif";
	off7 = new Image();
	off7.src = imgdir+"game_show_button.gif";

	on8 = new Image();
	on8.src = imgdir+"vip_club_button_on.gif";
	off8 = new Image();
	off8.src = imgdir+"vip_club_button.gif";

	on9 = new Image();
	on9.src = imgdir+"about_us_button_on.gif";
	off9 = new Image();
	off9.src = imgdir+"about_us_button.gif";

	on10 = new Image();
	on10.src = imgdir+"contact_us_button_on.gif";
	off10 = new Image();
	off10.src = imgdir+"contact_us_button.gif";

	on11 = new Image();
	on11.src = imgdir+"retailers_button_on.gif";
	off11 = new Image();
	off11.src = imgdir+"retailers_button.gif";

	on12 = new Image();
	on12.src = imgdir+"vendors_button_on.gif";
	off12 = new Image();
	off12.src = imgdir+"vendors_button.gif";

	on13 = new Image();
	on13.src = imgdir+"faq_button_on.gif";
	off13 = new Image();
	off13.src = imgdir+"faq_button.gif";

	on14 = new Image();
	on14.src = imgdir+"links_button_on.gif";
	off14 = new Image();
	off14.src = imgdir+"links_button.gif";

	on15 = new Image();
	on15.src = imgdir+"site_map_button_on.gif";
	off15 = new Image();
	off15.src = imgdir+"site_map_button.gif";

	on16 = new Image();
	on16.src = imgdir+"about_us_button_on.gif";
	off16 = new Image();
	off16.src = imgdir+"about_us_button.gif";
	
	on17 = new Image();
	on17.src = imgdir+"mobile_button_on.gif";
	off17 = new Image();
	off17.src = imgdir+"mobile_button.gif";
	
	on18 = new Image();
	on18.src = imgdir+"player_security_button_on.gif";
	off18 = new Image();
	off18.src = imgdir+"player_security_button.gif";
	
	loaded = true;

}