(function($){
	
	if(!document.defaultView || !document.defaultView.getComputedStyle){
		var oldCurCSS = jQuery.curCSS;
		jQuery.curCSS = function(elem, name, force){
			if(name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[ name ]){
				return oldCurCSS.apply(this, arguments);
			}
			var style = elem.style;
			if ( !force && style && style[ name ] ){
				return style[ name ];
			}
			return oldCurCSS(elem, 'backgroundPositionX', force) +' '+ oldCurCSS(elem, 'backgroundPositionY', force);
		};
	}
})(jQuery);

(function($) {
	
	function toArray(strg){
		strg = strg.replace(/left|top/g,'0px');
		strg = strg.replace(/right|bottom/g,'100%');
		strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
		var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
		return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
	}
	
	$.fx.step. backgroundPosition = function(fx) {
		if (!fx.bgPosReady) {
			
			var start = $.curCSS(fx.elem,'backgroundPosition');
			if(!start){//FF2 no inline-style fallback
				start = '0px 0px';
			}
			
			start = toArray(start);
			fx.start = [start[0],start[2]];
			
			var end = toArray(fx.options.curAnim.backgroundPosition);
			fx.end = [end[0],end[2]];
			
			fx.unit = [end[1],end[3]];
			fx.bgPosReady = true;
		}
		
		var nowPosX = [];
		nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
		nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];           
		fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];

	};
})(jQuery);

jQuery.fn.delay = function(time,func){
	this.each(function(){
		setTimeout(func,time);
	});
	
	return this;
};

jQuery.fn.pulse = function( prop, speed, times, easing, callback ) {
    
    if ( isNaN(times) ) {
        callback = easing;
        easing = times;
        times = 1;
    }
    
    var optall = jQuery.speed(speed, easing, callback),
        queue = optall.queue !== false,
        largest = 0;
        
    for (var p in prop) {
        largest = Math.max(prop[p].length, largest);
    }
    
    optall.times = optall.times || times;
    
    return this[queue?'queue':'each'](function(){
        
        var counts = {},
            opt = jQuery.extend({}, optall),
            self = jQuery(this);
            
        pulse();
        
        function pulse() {
            
            var propsSingle = {},
                doAnimate = false;
            
            for (var p in prop) {
                
                // Make sure counter is setup for current prop
                counts[p] = counts[p] || {runs:0,cur:-1};
                
                // Set "cur" to reflect new position in pulse array
                if ( counts[p].cur < prop[p].length - 1 ) {
                    ++counts[p].cur;
                } else {
                    // Reset to beginning of pulse array
                    counts[p].cur = 0;
                    ++counts[p].runs;
                }
                
                if ( prop[p].length === largest ) {
                    doAnimate = opt.times > counts[p].runs;
                }
                
                propsSingle[p] = prop[p][counts[p].cur];
                
            }
            
            opt.complete = pulse;
            opt.queue = false;
            
            if (doAnimate) {
                self.animate(propsSingle, opt);
            } else {
                optall.complete.call(self[0]);
            }
            
        }
            
    });
    
};

function insertPlayer(){

		var soundz = ['rfvs4.mp3']

	    var playerpath	= 'swf/singlemp3player.swf';
		var path		= 'audio/';
		var filename	= path + soundz.random();

		var mp3html = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ';
		mp3html += 'width="1" height="1" ';
		mp3html += 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
		mp3html += '<param name="movie" value="'+playerpath+'?';
		mp3html += 'showDownload=false&file=' + filename + '&autoStart=true';
		mp3html += '&backColor=ffffff&frontColor=ffffff';
		mp3html += '&repeatPlay=false&songVolume=50" />';
		mp3html += '<param name="wmode" value="transparent" />';
		mp3html += '<embed wmode="transparent" width="1" height="1" ';
		mp3html += 'src="' + playerpath + '?'
		mp3html += 'showDownload=false&file=' + filename + '&autoStart=true';
		mp3html += '&backColor=ffffff&frontColor=ffffff';
		mp3html += '&repeatPlay=false&songVolume=50" ';
		mp3html += 'type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />';
		mp3html += '</object>';
		return mp3html;

	}

Array.prototype.random = function( r )
{
	var i = 0, l = this.length;
	if( !r ) { r = this.length; }
	else if( r > 0 ) { r = r % l; }
	else { i = r; r = l + r % l; }
	return this[ Math.floor( r * Math.random() - i ) ];
};

$(document).ready(function() {
	$("a#launch").click(function () {      
	  $("div#bg-l4").fadeIn(1000);
	  $("div#bg-r4").fadeIn(1000);
	  $("div#layer20").fadeOut(1000);	  
	  $("div#intro5").hide();
	  $("div#outnow").hide();
	  $("div.intros").hide();
	  $("div#aiwazz").show();
	  $("div#sarge").show();
	  $("#lay2-sub1-trig").hide();
	  $("#lay2-sub2-trig").hide();
	  $("#lay2-sub3-trig").hide();
	  $("#lay3-sub1-trig").hide();
	  $("#lay3-sub2-trig").hide();
	  $("#lay3-sub3-trig").hide();
	  $("#lay4-sub1-trig").hide();
	  $("#lay4-sub2-trig").hide();
	  $("#lay4-sub3-trig").hide();
	  $("div#killplayer").fadeIn(1000);
	  $("#player").empty();
	  $("#player").prepend(insertPlayer());
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("div#lay4-sub1").delay(4000, function(){$("div#lay4-sub1").css({backgroundPosition: "0 -168px"});});
	  $("div#lay4-sub1").delay(6000, function(){$("div#lay4-sub1").css({backgroundPosition: "0 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:10").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
	  return false;
    });
	$("div#lay2-sub1").click(function () {      
	  $("div#lay2-sub2").show();
	  $("div#lay2-sub1").hide();
	  $("div#lay2-sub3-v").hide();
	  $('div#lay2-sub3-vd').hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("div#lay2-sub1-trig").hide();
	  $("div#lay2-sub2").delay(4000, function(){$("div#lay2-sub2").css({backgroundPosition: "-217px -179px"});});
	  $("div#lay2-sub2").delay(6000, function(){$("div#lay2-sub2").css({backgroundPosition: "-217px 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:3").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	$("div#lay2-sub2").click(function () {      
	  $("div#lay2-sub3").show();
	  $("div#lay2-sub2").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("div#lay2-sub2-trig").hide();
	  $("div#lay2-sub3").delay(4000, function(){$("div#lay2-sub3").css({backgroundPosition: "-424px -153px"});});
	  $("div#lay2-sub3").delay(6000, function(){$("div#lay2-sub3").css({backgroundPosition: "-424px 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:2").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	$("div#lay2-sub3").click(function () {      
	  $("div#layer2").fadeOut(1000);
	  $("div#lay2-sub3").hide();
	  $("div#lay2-sub3-trig").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("img#skarm1").delay(2000, function(){$("img#skarm1").show().pulse({left: ['5px', '25px', '11px', '0px']}, 10, 10, 'linear');});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:1").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	
	$("div#lay3-sub1").click(function () {      
	  $("div#lay3-sub2").show();
	  $("div#lay3-sub1").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});	  
	  $("div#lay3-sub1-trig").hide();
	  $("div#lay3-sub2").delay(4000, function(){$("div#lay3-sub2").css({backgroundPosition: "-386px -259px"});});
	  $("div#lay3-sub2").delay(6000, function(){$("div#lay3-sub2").css({backgroundPosition: "-386px 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:6").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	$("div#lay3-sub2").click(function () {      
	  $("div#lay3-sub3").show();
	  $("div#lay3-sub2").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("div#lay3-sub2-trig").hide();
	  $("div#lay3-sub3").delay(4000, function(){$("div#lay3-sub3").css({backgroundPosition: "-741px -212px"});});
	  $("div#lay3-sub3").delay(6000, function(){$("div#lay3-sub3").css({backgroundPosition: "-741px 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:5").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	$("div#lay3-sub3").click(function () { 
	  $("div#lay3-sub3-trig").hide();
	  $("div#lay3-sub3").hide();
	  $("div#layer3").fadeOut(1000);
	  $("div#bg-l").show();
	  $("div#bg-r").show();	  
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("div#lay2-sub3-v").show().pulse({left: ['145px', '148px', '146px', '147px']}, 10, 10, 'linear');
	  $("div#bg-l3").fadeOut(1000);
	  $("div#bg-r3").fadeOut(1000);	  
	  $("div#counter").empty();
	  $("div#lay2-sub1").delay(4000, function(){$("div#lay2-sub1").css({backgroundPosition: "0 -202px"});});
	  $("div#lay2-sub1").delay(6000, function(){$("div#lay2-sub1").css({backgroundPosition: "0 0"});});
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:4").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	
	$('div#lay2-sub3-v').click(function () {
	  $('div#lay2-sub3-vd').show();
	  $('div#lay2-sub3-v').hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $('div#lay2-sub3-vd').html('<strong>Nice find! Here\'s a version of Vertox that wont be found anywhere else for free download.</strong><br /><br /><a href="audio/digdeep/vertox.mp3">Download Vertox</a>');							   
	});
	
	$("div#lay4-sub1").click(function () {      
	  $("div#lay4-sub2").show();
	  $("div#lay4-sub1").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});	  
	  $("div#lay4-sub1-trig").hide();
	  $("div#lay4-sub2").delay(4000, function(){$("div#lay4-sub2").css({backgroundPosition: "-166px -246px"});});
	  $("div#lay4-sub2").delay(6000, function(){$("div#lay4-sub2").css({backgroundPosition: "-166px 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:9").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	$("div#lay4-sub2").click(function () {      
	  $("div#lay4-sub3").show();
	  $("div#lay4-sub2").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $("div#lay4-sub2-trig").hide();
	  $("div#lay4-sub3-v").show().pulse({right: ['20px', '19px', '21px', '18px']}, 10, 10, 'linear');
	  $("div#lay4-sub3").delay(4000, function(){$("div#lay4-sub3").css({backgroundPosition: "-377px -296px"});});
	  $("div#lay4-sub3").delay(6000, function(){$("div#lay4-sub3").css({backgroundPosition: "-377px 0"});});
	  $("div#counter").empty();
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:8").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	$('div#lay4-sub3-v').click(function () {
	  $('div#lay4-sub3-vd').show();
	  $('div#lay4-sub3-v').hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});
	  $('div#lay4-sub3-vd').html('<strong>Yup, its another bloody hidden file. this one is the Berlin Set from Feb, 2010, containing a huge amount of Vade material in it. Exclusive, grab it!</strong><br /><br /><a href="audio/digdeep/FunckarmaLiveInBerlin-2010.mp3">Download Liveset</a>');							   
	});
	$("div#lay4-sub3").click(function () { 
	  $("div#lay4-sub3-trig").hide();
	  $("div#lay4-sub3").hide();
	  $("div#layer4").fadeOut(1000);
	  $("div#lay4-sub3-v").hide();
	  $('div#lay4-sub3-vd').hide();
	  $("div#bg-l3").show();
	  $("div#bg-r3").show();	  
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});	  
	  $("div#bg-l4").fadeOut(1000);
	  $("div#bg-r4").fadeOut(1000);	  
	  $("div#counter").empty();
	  $("div#lay3-sub1").delay(4000, function(){$("div#lay3-sub1").css({backgroundPosition: "0 -211px"});});
	  $("div#lay3-sub1").delay(6000, function(){$("div#lay3-sub1").css({backgroundPosition: "0 0"});});
	  $("div#counter").delay(1000, function(){$("div#counter").html("layer:7").pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear')});
    });
	
	$("div#intro5").hover(function() {
	  $(this).css({backgroundPosition: "0 -200px"});	  
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});	  
    });
	
	$("div#lay2-sub1").hover(function() {
	  $(this).css({backgroundPosition: "0 -202px"});
	  $("div#lay2-sub1-trig").show().pulse({top: ['50px', '90px', '200px', '111px'], left: ['0px', '9px', '54px', '29px']}, 10, 10, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});
	  $("div#lay2-sub1-trig").stop().hide();	 
    });
	$("div#lay2-sub2").hover(function() {
	  $(this).css({backgroundPosition: "-217px -179px"});
	  $("div#lay2-sub2-trig").show().pulse({top: ['400px', '450px', '280px', '478px'], left: ['350px', '260px', '320px', '300px']}, 5, 20, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "-217px 0"});
	  $("div#lay2-sub2-trig").stop().hide();
    });
	$("div#lay2-sub3").hover(function() {
	  $(this).css({backgroundPosition: "-424px -153px"});
	  $("div#lay2-sub3-trig").show().pulse({top: ['100px', '250px', '160px', '50px'], left: ['310px', '330px', '280px', '300px']}, 7, 15, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "-424px 0"});
	  $("div#lay2-sub3-trig").stop().hide();
    });
	
	$("div#lay2-sub3-v").hover(function() {
	  $(this).css({backgroundPosition: "-424px -153px"});	   
	} , function() {
	  $(this).css({backgroundPosition: "-424px 0"});	  
    });
	
	$("div#lay3-sub1").hover(function() {
	  $(this).css({backgroundPosition: "0 -211px"});
	  $("div#lay3-sub1-trig").show().pulse({top: ['50px', '90px', '200px', '111px'], left: ['0px', '9px', '54px', '29px']}, 10, 10, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});
	  $("div#lay3-sub1-trig").stop().hide();	 
    });
	$("div#lay3-sub2").hover(function() {
	  $(this).css({backgroundPosition: "-386px -259px"});
	  $("div#lay3-sub2-trig").show().pulse({top: ['400px', '410px', '470px', '478px'], left: ['350px', '360px', '320px', '300px']}, 5, 10, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "-386px 0"});
	  $("div#lay3-sub2-trig").stop().hide();
    });
	$("div#lay3-sub3").hover(function() {
	  $(this).css({backgroundPosition: "-741px -212px"});
	  $("div#lay3-sub3-trig").show().pulse({top: ['80px', '110px', '60px', '20px'], left: ['100px', '0px', '70px', '50px']}, 7, 15, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "-741px 0"});
	  $("div#lay3-sub3-trig").stop().hide();
    });
	
	$("div#lay4-sub1").hover(function() {
	  $(this).css({backgroundPosition: "0 -168px"});
	  $("div#lay4-sub1-trig").show().pulse({top: ['200px', '220px', '160px', '190px'], left: ['9px', '19px', '4px', '29px']}, 11, 9, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});
	  $("div#lay4-sub1-trig").stop().hide();	 
    });
	$("div#lay4-sub2").hover(function() {
	  $(this).css({backgroundPosition: "-166px -246px"});
	  $("div#lay4-sub2-trig").show().pulse({top: ['378px', '410px', '370px', '354px'], left: ['300px', '360px', '320px', '340px']}, 5, 10, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "-166px 0"});
	  $("div#lay4-sub2-trig").stop().hide();
    });
	$("div#lay4-sub3").hover(function() {
	  $(this).css({backgroundPosition: "-377px -296px"});
	  $("div#lay4-sub3-trig").show().pulse({top: ['220px', '200px', '260px', '190px'], left: ['590px', '600px', '585px', '595px']}, 7, 15, 'linear');	  
	} , function() {
	  $(this).css({backgroundPosition: "-377px 0"});
	  $("div#lay4-sub3-trig").stop().hide();
    });
	$("div#lay4-sub3-v").hover(function() {
	  $(this).css({backgroundPosition: "0 -168px"});	   
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});	  	 
    });
	$("a#navchild1").hover(function() {
	  $(this).css({backgroundPosition: "0 -30px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});	  
    });
	
	$("a#navchild2").hover(function() {
	  $(this).css({backgroundPosition: "0 -90px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 -60px"});	  
    });
	
	$("a#navchild3").hover(function() {
	  $(this).css({backgroundPosition: "0 -150px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 -120px"});	  
    });
	
	$("a#navchild4").hover(function() {
	  $(this).css({backgroundPosition: "0 -210px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 -180px"});	  
    });
	
	$("a#navchild5").hover(function() {
	  $(this).css({backgroundPosition: "0 -270px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 -240px"});	  
    });
	
	$("a#buydisc").hover(function() {
	  $(this).css({backgroundPosition: "0 -27px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 0"});	  
    });
	
	$("a#buydigital").hover(function() {
	  $(this).css({backgroundPosition: "0 -81px"});	  	  
	} , function() {
	  $(this).css({backgroundPosition: "0 -54px"});	  
    });
	
	$("a#endaudio").click(function () {      
	  $("div#killplayer").fadeOut(1000);
	  $("div#player").empty();
	  $("div#launchplayer").delay(1000, function(){$("div#launchplayer").fadeIn(1000);});	  
	  return false;
    });
	
	$("a#startaudio").click(function () {      
	  $("div#launchplayer").fadeOut(1000);
	  $("div#player").empty();
	  $("#player").prepend(insertPlayer());
	  $("div#killplayer").delay(1000, function(){$("div#killplayer").fadeIn(1000);});
	  return false;
    });
	
	$("div.ui360").click(function () {  
	  $("div#player").empty();
	  $("div#navsprite").show();
	  $("div#killplayer").hide();
	  $("div#launchplayer").hide();
	  $("img#skarm1").hide();
	  $("div#flasher").fadeIn(200, function(){$("div#flasher").fadeOut(200);});	  
	  $("a#navchild1").delay(8000, function(){if ($.browser.msie){$("a#navchild1").show();}else{$("a#navchild1").show().pulse({opacity: ['0.1', '0.7', '0.3', '1.0']}, 5, 20, 'linear');}});
	  $("a#navchild2").delay(10000, function(){if ($.browser.msie){$("a#navchild2").show();}else{$("a#navchild2").show().pulse({opacity: ['0.1', '0.7', '0.3', '1.0']}, 5, 20, 'linear');}});
	  $("a#navchild3").delay(12000, function(){if ($.browser.msie){$("a#navchild3").show();}else{$("a#navchild3").show().pulse({opacity: ['0.1', '0.7', '0.3', '1.0']}, 5, 20, 'linear');}});
	  $("a#navchild4").delay(14000, function(){if ($.browser.msie){$("a#navchild4").show();}else{$("a#navchild4").show().pulse({opacity: ['0.1', '0.7', '0.3', '1.0']}, 5, 20, 'linear');}});
	  $("a#navchild5").delay(16000, function(){if ($.browser.msie){$("a#navchild5").show();}else{$("a#navchild5").show().pulse({opacity: ['0.1', '0.7', '0.3', '1.0']}, 5, 20, 'linear');}});	  
    });
	$("img#launch-hifi").click(function () {
	  $("div#overlay").fadeOut(2000);
	  $("div#outnow").animate({top: "-130px"}, 1000 );
	  $("div#bg-l4").hide();
	  $("div#bg-r4").hide();
	  $("div#bg-l3").hide();
	  $("div#bg-r3").hide();
	  $("div#bg-l").hide();
	  $("div#bg-r").hide();
	  $("div#lay2-sub1-trig").show();
	  $("div#lay2-sub2-trig").show();
	  $("div#lay2-sub3-trig").show();
	  $("div#lay3-sub1-trig").show();
	  $("div#lay3-sub2-trig").show();
	  $("div#lay3-sub3-trig").show();
	  $("div#lay4-sub1-trig").show();
	  $("div#lay4-sub2-trig").show();
	  $("div#lay4-sub3-trig").show();
	  $("img#gfx-layer2").show();
	  $("img#gfx-layer3").show();
	  $("img#gfx-layer4").show();
	  $("div#intro1").delay(3500, function(){$("div#intro1").fadeOut(2000);});
	  $("div#intro2").delay(7000, function(){$("div#intro2").fadeOut(2000);});	  
	  $("div#counter").delay(5000, function(){$("div#counter").fadeIn(2000).pulse({top: ['50px', '90px', '30px', '5px']}, 10, 10, 'linear');});
	  $("div#intro5").delay(9500, function(){$("div#intro5").show().pulse({backgroundPosition: ['0 -200px', '0 0']}, 5, 20, 'linear');});
	  $("a#launch").delay(10000, function(){$("a#launch").hide();});	
	  $("a#launch").delay(10500, function(){$("a#launch").show();});							   
	});
});

$(window).load(function() {
	$("div#shitscreen").hide();					
	$("img#launch-hifi").animate({left: "50%"}, 1000 );
	$("a#launch-lofi").animate({right: "50%"}, 1000 );
	$("div#outnow").delay(2000, function(){$("div#outnow").animate({top: "0px"}, 1000 );});					
	$("div#intro5").hide();
	$("a#navchild1").hide();
	$("a#navchild2").hide();
	$("a#navchild3").hide();
	$("a#navchild4").hide();
	$("a#navchild5").hide();
	$("div#counter").empty().html("layer:11").hide();	
});						   