$(document).ready(function() {
	
	$('.nav li').hover(
		function(){
			$(this).children('div').show(0);
		},
		function(){
			$(this).children('div').hide(0);
		}
	);
	

$('#header .banner').hover(
		function(){
			$(this).css("height","405px");
		},
		function(){
			$(this).css("height","90px");
		}
	);


});
