$(function() {
    $('.rollover').hover(function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    }, function() {
        var currentImg = $(this).attr('src');
        $(this).attr('src', $(this).attr('hover'));
        $(this).attr('hover', currentImg);
    });
});

$(document).ready(function( ) {
 $('.entreeWrapper').hide();
 $('#menuDisplayertbl h1').toggle(
		function() {
	   $(this).next('.entreeWrapper').fadeIn(800);
	   	$(this).addClass('close');
		},
		function() {
		  $(this).next('.entreeWrapper').fadeOut(800);
		  $(this).removeClass('close');
	  }
	); // end toggle
});

$(document).ready(function() {
	$('#menuSelectionWrapper > ul').tabs({ fx: {opacity: 'toggle' } });
});

$(document).ready(function() {
	$('#manuNavigation').tabs({ fx: {opacity: 'toggle' } });
});

$(document).ready(function() {
	$('#lunch_menu_wrapper > ul').tabs({ fx: {opacity: 'toggle' } });
});


