$(document).ready(function() {
	
$(".loginbtn").click(function(){
	  $("#panel").slideToggle("slow");
	  $(this).toggleClass("active");
	});
$("#locationclick").click(function() { //When trigger is clicked...
									  
     $(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
		$(this).parent().hover(function() {
		}, function(){	
			$(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
		});
	});

	$("ul.subnav a").click(function() { //When trigger is clicked...
			$("input#search_fld1").val($(this).html());

			//alert($("input#search_fld1").val());
	});
});

