$(function(){
var body_height=$("body").height()+300;
$(".bgfade").css("height",body_height+"px");  

$(".start").fadeIn(800,function(){
		$(".table").fadeIn(800);						  
		});	
	$("#floatcontact").center({vertical:false});
	$("#errorbox").center({vertical:false});
	
	// HA IE AKKOR NINCS FADE
	if (jQuery.browser.msie){
		$(".formstart").click(function(){	
		$("body").css("overflow","hidden");
		$(".bgfade").fadeIn("normal").fadeTo(800,0.8,function(){
			$("#floatcontact").css("display","block");
			});
		});
		
		
		$(".close").click(function(){
		$("#errorbox").animate({top:"220"},800,function(){
		$("#errorbox").css("display","none");
		//$("#floatcontact").fadeOut(800);
		$("#floatcontact").css("display","none");
		$(".bgfade").fadeOut(800);
		$("body").css("overflow","visible");
								
	});
	});
		
		}else{
	//KÜLÖNBEN MEHET MINDEN
		  
	$(".formstart").click(function(){
	$("body").css("overflow","hidden");
		$(".bgfade").fadeIn("normal").fadeTo(800,0.8,function(){
			$("#floatcontact").fadeIn(800);
			});
		});
	

$(".close").click(function(){
	$("#errorbox").animate({top:"220"},800,function(){
		$("#errorbox").fadeOut(200);
		//$("#floatcontact").fadeOut(800);
		$("#floatcontact").fadeOut(800,function(){
		$(".bgfade").fadeOut(800);
		$("body").css("overflow","visible");
		});							
	});
	});
}//END ELSE IE

		   });