$(document).ready(function(){
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	$("#headerOver").css('opacity','0');
	$("#gnb").mouseover(function(){
		$("#headerOver").stop().animate({opacity:'1',height:'205px'},{queue:false, duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','1px solid #7195c6');
		$("#headerOver").css('boxShadow','0 2px 3px #7195c6');
	});
	$("#headerOver").mouseover(function(){
		$(this).stop().animate({opacity:'1',height:'205px'},{queue:false, duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','1px solid #7195c6');
		$("#headerOver").css('boxShadow','0 2px 3px #7195c6');
	});
	$("#headerOver").mouseout(function(){
		$(this).stop().animate({height:'83px',opacity:'0'},{duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','none');
		$("#headerOver").css('boxShadow','0 0 0 #fff');
	});
	$("#gnb").mouseout(function(){
		$("#headerOver").stop().animate({height:'83px',opacity:'0'},{duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','none');
		$("#headerOver").css('boxShadow','0 0 0 #fff');
	});

});
