var interval;

function loadFlash()
{	
	var flashvars = {};
	var params = {allowFullScreen:true, wmode: "transparent"};
	var attributes = {id: "flashcontent"};
	swfobject.embedSWF("main.swf", "flashcontent", "100%", "100%", "9.0.0", "js/expressInstall.swf", flashvars, params, attributes);
	swffit.fit("flashcontent",1000,590);			
}

function closePopup(){
	$("#popup").fadeOut("slow");
	clearInterval(interval);
	return false;	
}


$(document).ready(function(){
	loadFlash();
	$("#popup").vhCenter();
	$(window).resize(function(){$("#popup").vhCenter()});
	$("#popup #contents a").click(function(){
		$("#popup").hide();
	});
	$("#popup #title a").click(function(){
		$("#popup").fadeOut("slow");
		return false;
	});
	interval = setInterval(closePopup, 20000);
});
