$(document).ready(function(){
	var selectedInput = null;
	$("#topnav").mouseenter(
		function () {
			$(this).stop().delay(70).animate({ height:"275px" }, 457, "easeOutQuart" );
		}).mouseleave(
		function () {
			if (selectedInput == null) {
				$(this).stop().delay(70).animate({ height:"49px" }, 457, "easeOutQuart" );
			}
		}
	);
	$("#shadf").mouseenter(
		function () {
			$(this).stop().delay(70).animate({ height:"275px" }, 457, "easeOutQuart" );
		}).mouseleave(
		function () {
			if (selectedInput == null) {
				$(this).stop().delay(70).animate({ height:"49px" }, 457, "easeOutQuart" );
			}
		}
	);
});
function mouseleft() {
	$("#topnav").triggerHandler("mouseleave");
}


