// JavaScript Document
 function closePopup() {
		document.getElementById("blocker").style.display="none";
		document.getElementById("immerse").closePopup();
     }
function openPopup() {
		document.getElementById("blocker").style.display="block";
}

function scrollDown() {

       $("html, body").animate({
          scrollTop: $("#end").offset().top
      }, 2500,"easeInOutExpo", scrollUp );
      
}

function scrollUp(){
  $("html, body").animate({scrollTop: $("#top").offset().top}, 2000,"easeInOutExpo");
}
			
var flashvars = {};
			var params = {
				quality: "high",
				scale: "noscale",
				wmode: "transparent",
				allowscriptaccess: "always",
				bgcolor: "#000000"
			};
			var attributes = {
			id: "immerse",
			name: "immerse"
			};
	
swfobject.embedSWF("main.swf", "holder", "100%", "1970", "10.0.0","expressInstall.swf", flashvars, params, attributes);

