function splash() {
	if ( $( '#splashCenter' ).length == 0 ) {
		$( 'body' ).prepend( '<div id="splashCenter"><div id="splashMsg" class="alignCenter"><div id="splashLogo"><img src="images/logo.png" title="Xnails" alt="Xnails" class="xnails" /><span>&rsaquo;&rsaquo;&rsaquo;</span><img src="images/konad.png" title="Konadnail" alt="Konadnail" /></div><table><tr><td style="text-align:left; width: 60%; padding-left: 40px;">Wszstkie produkty są dostepne na<br/>Alle X\'nails Produkte sind erhältlich bei<br/>All X\'nails products are available at</td><td><a href="http://www.konadnail.pl" title="Konadnail">www.Konad.pl</a></td></tr></table><img src="images/loader.gif" id="loader" title="Trwa przenoszenie" alt="Trwa przenoszenie" /></div></div><div id="splash"></div>' );
	}
	$( 'body, html' ).scrollTop( 0 );
	$("#splash").fadeIn( 1000, function() {
		$("#splashCenter").fadeIn( 1000 );
	} );
	
	$("html").css("overflow","hidden");
	$("body").css("height","100%");
	setTimeout(
		function() {
			window.location = 'http://www.konadnail.pl';
		},
		5000
	);
}

$(document).ready(function() {
	var timeout;
	$('.accordion').liteAccordion({
		headerWidth: 40,
		firstSlide: 3,
		autoPlay: false
	});
	$('h2 span').click(function(){
		clearTimeout( timeout );
	});
	$('h2 span').mouseout(function(){
		$(this).stop(false,true).animate({
			backgroundColor: "#aaaaaa"
		}, 400);
	});
	$('h2 span').mouseover(function(){
		$(this).stop(false,true).animate({
			backgroundColor: "#333333"
		}, 400);
	});
	$('.enter, .logo, .accordion div').click( function() {
		splash();
		return false;
	});
	timeout = setTimeout(
		function() {
			splash();
		},
		8000
	);
});

$(window).unload(function() {
    $("#splash").hide();
    $("#splashCenter").hide();
});
