$(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:'170px'},{queue:false, duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','1px solid #dbdbdb');
		$("#headerOver").css('boxShadow','0 2px 3px #fff');
	});
	$("#headerOver").mouseover(function(){
		$(this).stop().animate({opacity:'1',height:'170px'},{queue:false, duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','1px solid #dbdbdb');
		$("#headerOver").css('boxShadow','0 2px 3px #fff');
	});
	$("#headerOver").mouseout(function(){
		$(this).stop().animate({height:'43px',opacity:'0'},{duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','none');
		$("#headerOver").css('boxShadow','0 0 0 #fff');
	});
	$("#gnb").mouseout(function(){
		$("#headerOver").stop().animate({height:'43px',opacity:'0'},{duration:400, easing: 'easeInSine'});
		$("#headerOver").css('borderBottom','none');
		$("#headerOver").css('boxShadow','0 0 0 #fff');
	});

});
