var j = jQuery.noConflict();




// -------------------[ each page initialize function is here
 
Pages = {
	
	intro: function (){
		
		var params = {
			quality: "high",
			scale: "noscale",
			wmode: "transparent",
			allowscriptaccess: "always",
			base: "/Speedstick/PE/X5/swf/"
		};
		
		/*var flashvars = {};*/
		var flashvars = {
			trackBase: "/Speedstick/PE/X5/INTRO/",
			swfPath: "/Speedstick/PE/X5/swf/intro.swf"
			};
		
		var attributes = {
			id: "intro",
			name: "intro"
		};
		if(swfobject.hasFlashPlayerVersion("10")){
			swfobject.embedSWF("/Speedstick/PE/X5/swf/GenericLoader-AS2.swf", "intro", "980", "583", "10", "/Speedstick/PE/X5/swf/expressInstall.swf", flashvars, params, attributes);
		}
		/*swfobject.embedSWF("swf/intro.swf", "intro", "980", "800", "9.0.124", "expressInstall.swf", flashvars, params, attributes);*/
	},	
	
	detectDevice: function(){
		// android
		var ua = navigator.userAgent.toLowerCase();
		//var isAndroid = ua.indexOf("android") > -1; //&& ua.indexOf("mobile");
		if (ua.indexOf('iphone') > 0 || ua.indexOf('ipod') > 0 || ua.indexOf('android') > 0 || ua.indexOf('ipad') > 0){
			  location.href = "/app/Speedstick/PE/X5/home.cvsp";//Pages.homejs();
		}else{ 
			Pages.intro();
		}
	},
	
	homeswf: function(){
		location.href = "/app/Speedstick/PE/X5/home.cvsp";//Pages.homejs();
	}

};


j(document).ready(function() {
	Pages.detectDevice();
	
});



