$(document).ready(function() {

	//Main menu dropdown display...
	$("ul.menu-main-menu li").hover(
		function() {
			var itemcount = $(this).find("ul > li").length;
			var setHeight = "" + itemcount * 40 + "px";
			
			$(this).find("ul").show();
			$(this).find("ul").stop().animate({height:setHeight},200);
			
		},
		function() {
			$(this).find("ul").stop().animate({height:'0px'},200,
			
			function () {
				$(this).hide();
			});  
		
	});
	
	$("img#search-image").click(function(){
		$("input.search-button").click();
	});
});
