//fot namespace object
fot = {};
// jQuery's onDOMready function
 $(document).ready(function() {
	fot.headergrow();
});
fot.headergrow = function(){
		$("#header").hover(function(){
		  $(this).stop().animate({"height": "320"}, 750,'easeInOutQuart');
		},function(){ 
		  $(this).stop().animate({"height": "200"}, 500,'swing');
		});;
}