
	$(function() {
		$(".menuitem").each( function() {
			var el = $(this).find("img");
			if ( $(this).hasClass('current') ) {
				$(this).find("img").attr('src', $(this).find("img").attr('src').replace(".png","_over.png") );
			} else {
				$(this).bind('mouseenter',function(){ $(this).find("img").attr('src', $(this).find("img").attr('src').replace(".png","_over.png") ); });
				$(this).bind('mouseleave',function(){ $(this).find("img").attr('src', $(this).find("img").attr('src').replace("_over.png",".png") ); });
			}
		} );
		$(".restaurantMenu").bind("click",function() { $(this).fadeOut(); } );
	});
	
	
	function showMenu( id ) {
		$(".restaurantMenu:visible").fadeOut();
		$("#"+id).fadeIn();
	}