
$(document).ready(function(){
$(".tablesorter").hide();

       $('#starters').click( function() {
	 $("#menu-intro").hide();				  
	 $(".tablesorter").hide();
       $('#table-starters').toggle();
   });
       $('#rice').click( function() {
	 $("#menu-intro").hide();				  
	 $(".tablesorter").hide();
       $('#table-rice').toggle();
   }); 
       $('#house').click( function() {
	 $("#menu-intro").hide()							  
	 $(".tablesorter").hide();
       $('#table-house').toggle();
   });  
       $('#tandoori').click( function() {
	 $("#menu-intro").hide()							  
	 $(".tablesorter").hide();
       $('#table-tandoori').toggle();
   }); 
       $('#chef').click( function() {
	 $("#menu-intro").hide()							  
	 $(".tablesorter").hide();
       $('#table-chef').toggle();
   });  
       $('#seafood').click( function() {
	 $("#menu-intro").hide()							  
	 $(".tablesorter").hide();
       $('#table-seafood').toggle();
   });  
       $('#chicken').click( function() {
	 $("#menu-intro").hide()							  
	 $(".tablesorter").hide();
       $('#table-chicken').toggle();
   });   
       $('#lamb').click( function() {
	 $("#menu-intro").hide()							  
	 $(".tablesorter").hide();
       $('#table-lamb').toggle();
   });  
	 							  
	 $('#biryani').click( function() {
	 $("#menu-intro").hide()
	 $(".tablesorter").hide();
       $('#table-biryani').toggle();
   });		 
	 							  
	 $('#veg').click( function() {
	 $("#menu-intro").hide()
	 $(".tablesorter").hide();
       $('#table-veg').toggle();
   });
	$('#english').click( function() {
	 $("#menu-intro").hide();				  
	 $(".tablesorter").hide();
       $('#table-english').toggle();
   });
  });

