$(function() 
		   {
			   MM_preloadImages('img/botoes/instrucoes_over.png','img/botoes/jogue_agora_over.png','img/botoes/jogue_agora_over.png', 'img/botoes/site_oficial_over.png');
			   
			   setInterval(pluginControl,1000);
			   setTimeout(onResize,200);
			   onResize();
			   
			   $("#siteOficial").hover(function() { $("#imgsiteOficial").attr("src","img/botoes/site_oficial_over.png");},
									   function() { $("#imgsiteOficial").attr("src","img/botoes/site_oficial.png");});
			   
			   $("#instrucoes").hover(function() { $("#imginstrucoes").attr("src","img/botoes/instrucoes_over.png");},
									   function() { $("#imginstrucoes").attr("src","img/botoes/instrucoes.png");});
			   
			   $("#plugin").click(function() { window.open(getPluginPath(),"_blank"); });
		   });

function onResize()
{
	//Stage
	if(dhCenter($("#principal").height()) > 0)
	{
		dh = dhCenter($("#principal").height());
		$("#principal").css("top", dh - 30);
		$("#bottom").css("top", dh + $("#principal").height() - 30);
	}
	else
	{
		$("#principal").css("top", 0);
		$("#bottom").css("top", $("#principal").height());
	}
	
	$("#principal").css("left", dwCenter($("#principal").width()));
	$("#bottom").css("left", dwCenter($("#bottom").width()));
	
	$("#instrucoes").css("top", "520px");
	$("#instrucoes").css("left", dwPrincipal($("#instrucoes").width()) - 45 );
	
	$("#siteOficial").css("top", "520px");
	$("#siteOficial").css("left", dwPrincipal($("#instrucoes").width()) + 75 );
	
	$("#plugin").css("top", "110px");
	$("#plugin").css("left", dwPrincipal($("#plugin").width()) + 330);

	$("#play").css("top", "425px");
	$("#play").css("left", dwPrincipal($("#play").width()) + 300);
	
	$("#flash_video").css("top", "220px");
	$("#flash_video").css("left", dwPrincipal(520) + 40);
	
	$("#menu").css("top", "110px");
	$("#menu").css("left", dwPrincipal($("#menu").width()) - 400);
	
	$("#game").css("top", "80px");
	$("#game").css("left", 10 );	
} 	
