
$(document).ready( function( )
{
	//show intro
	//check, if we haven't showed it before
	//we don't want to become annoying

	if( ! $.cookie( 'intro' ) )
	{
		//set the container
		var intro = document.createElement( 'div' );
		$(intro).addClass( 'intro' );
		$("body").prepend( $(intro) );

		//create the dom-logo
		var logo = new Image( );
		logo.src = assets_url + "/images/logo_big.jpg";
		logo.style.marginTop = "150px";
		logo.style.display = "none";
		
		//set the logo
		$(logo).load(function(){
			$(intro).prepend( $(this) );
			$(this).fadeIn( );
			
			$(intro).animate( {opacity: 1.0}, 900 ).fadeOut( 2000 );
		})
		$.cookie( 'intro', 1 );
	}
});
