/*-----------------------show/hide submenu------------------------------------------*/
 jQuery(document).ready(function() {
	
	var a = jQuery('#menupopup');
	
	 a.live('mouseenter', function() {
		$('#mainMenu').css({"height":"64px"});
		//jQuery('div', this).fadeIn();
		jQuery('#menuPopupDiv').fadeIn();
	});
	
	$('#menuPopupDiv').mouseleave( function(){
		$('#mainMenu').css({"height":"32px"});
		//$(this).fadeOut();
		jQuery('#menuPopupDiv').fadeOut();
	})
	
	$('#search').click(function(){
		var keyword = $('#searchbox').val();
		window.location = '/search.php?search='+keyword;
	})
});


