$(document).ready(function() 
{
	$('#content').html('');
	$('<img />').attr('src', 'images/intro.jpg' + '?random=' + (new Date()).getTime()).load(function(){
		var intro = $(this);
		$('#content').html( $(intro).hide() );
		$(intro).hover(function(){ $(this).css('cursor' , 'pointer') });
		$(intro).click(function(e){ e.preventDefault(); document.location.href="engees.html" })
		
		$(intro).fadeIn( "slow" , function(){ $(intro).fadeOut( 7000 , function(){ document.location.href="engees.html" } ) } );
	});
}); 
