//JavaScript Document
//Flash
pageFlash = $.flash.create({
		swf: 'http://www.thephoto.ca/main.swf',
		width: '100%',
		height: '100%',
		hasVersion: 10, // requires Flash 10
        flashvars: {
			siteRoot: 'http://www.thephoto.ca/',
			siteName: 'VASKO PHOTOGRAPHY',
			sitePage: '/'
        },      
        scale: 'noscale',
		wmode: 'opaque',
		salign: 'TL',
		bgcolor: '#000000',
		allowfullscreen: 'true',
		allowscriptaccess: 'always'	
});

$(document).ready(function(){
	//Top Secret CODES
	if ( window.addEventListener ) {
			//Konami Komando
			var kkeys = [], konami = "38,38,40,40,37,39,37,39,66,65";
			window.addEventListener("keydown", function(e){
					kkeys.push( e.keyCode );
					if ( kkeys.toString().indexOf( konami ) >= 0 )
							window.location = "http://onenyne.com/";
			}, true);
	}
    
    //Insert Flash    
    if ($.flash.available){
/*	    $('#pageContent').html(pageFlash);
        $('#pageContent object').attr("name","flashContent");
        $('#pageContent object').attr("id","flashContent");
*/

		var flashvars = {}
		flashvars.siteRoot = 'http://www.thephoto.ca/';
		flashvars.siteName = 'VASKO PHOTOGRAPHY';
		flashvars.sitePage = '/';
        
		var params = {}
		params.scale = "noscale";
		params.wmode = "opaque";
		params.salign = "TL";
		params.bgcolor = "#000000";
		params.allowfullscreen = "true";
		params.allowscriptaccess = "always";
		
		var attributes = {}
		attributes.id = "flashContent";
		attributes.name = "flashContent";

		swfobject.embedSWF(
			"http://www.thephoto.ca/main.swf",
			"pageContent", "100%", "100%", "10.0.0",
			false, flashvars, params, attributes);

    } else {
   		$('link[rel=stylesheet]').remove();
		$('#pageContent').remove();
        $.getScript('http://www.thephoto.ca/assets/js/site.mobile.php', function(){});
    }
});
