$(function(){


	$('body').show()
	
	$('#header').css('display','none');
	$('#content').css('display','none');
	$('#footer').css('display','none');
	

$('#header').fadeIn('fast', function(){
$('#content').fadeIn('slow', function(){
$('#footer').fadeIn('fast')})

})


	$('body a').click(function(){
		var _url = this.href
		if(_url.indexOf('javascript') > -1) return true

		
		$('#footer').fadeOut()
		

$('#header').fadeOut('fast',function(){
					 $('#content').fadeOut('fast',function(){ location.href = _url })


})

		
		return false

})
})




