$(document).ready(function(){
	//resize content
	$(window).resize(function(){
		y = $(window).height() - $('#head').outerHeight() - $('#footer').outerHeight() - $('#topmenu_margin').outerHeight() - ($("#middle").height() - $("#middle").innerHeight()) - 20;
		$("#middle").animate({height:y},700);
	});
	
	//intro.
	if($('.after_intro').length){
		$('#background').fadeIn(2000,function(){
			$(this).fadeTo(1000,1.0,function(){
				$(this).fadeOut(1000,function(){
					$(this).find('img').show();
					$(this).fadeIn(1000,function(){
						$('#scroller').slideDown(1000,function(){
							$(window).trigger('resize');
						});
					});
				});
			});
		});
	}else{
		$(window).trigger('resize');
	}
	
});
