/* WOLFMOTHER */
/* Home Page Functions
----------------------------------------------------------------------------- */


	$(window).load(function() {

		var height = $(window).height() - 5 + 'px';

		function embedSplash() {

			$('#flash').show().css('height', height);
		
			if (asset_host == "http://redirect-staging.media.sparkart.net/wolfmother") {
				asset_host = "http://dev.media.sparkart.net/wolfmother";
			}
		
			var so = new SWFObject(asset_host + "/flash/cosmicegg.swf", "_swf", "100%", "100%", "9", "#000000");
			so.addParam("AllowScriptAccess", "always");
			so.addParam("menu", "false");
			so.addVariable("xml",asset_host+"/xml/nav.xml");
			so.write("flash");
			
			$('#content').remove();

		}
		
		embedSplash();

		if (window.location.toString().match('video=false')) {

			embedSplash();

		} else {
		
			$('#enter').click(function() {
						
				$('#content').fadeOut('slow', function() {
	
					embedSplash();
				
				});
				return false;
			
			});		
		
		}

		$(window).resize(function() {
		
			var height = $(window).height() - 5 + 'px';
			$('#flash').css('height', height);
	
		});

	});