$(document).ready(function() {
	$("#contact").css({'overflow' : 'hidden', 'height' : '0px', 'padding' : '0px 20px'});
	$("#info #contact").css({'overflow' : 'auto', 'height' : 'auto' });
	$("#kontaktFoot").css({'cursor' : 'pointer'});
	var clicked = false;
	$("#kontaktFoot").click(function(){
		if(clicked){
			clicked = false;
			//$('#contact').stop().slideUp();
			$('#contact').stop().animate({
				height:'0px'
			},100);
			//$('#kontaktFoot').animate({ backgroundColor: "#e3e3e3" }, 800);
		} else {
			clicked = true;
			 //$('#contact').stop().slideDown();
			$("#contact").stop().animate({
				height:'290px'
			},200);
			$(".hitarea").css({'height' : '50px', 'padding-top':'20px','margin-top':'0px'});
			$('body').scrollTo( '80%', 200 );
		}	
		//event.preventDefault();
	});
});
