$(document).ready(function(){
$(".buttons .menudropdown").hover(
	function(){
		if ($(this).find(".menu").is(":hidden")) { $(this).find(".menu").show(); } else { $(this).find(".menu").hide(); }
	}, 
	function(){
		$(this).find(".menu").hide(); }
	); 
	$(".buttons .menudropdown .link").click(function(){ $(".buttons .menudropdown .menu").hide(); }); 
	$(".buttons .menudropdown .link").hover( function() { $(this).addClass("over"); }, function(){ $(this).removeClass("over"); }); 
}); 



