jQuery.noConflict();  
jQuery(document).ready(function(){
  		jQuery('.hide').hide();
  		jQuery('.showhide').toggle(function(){
  		  jQuery(this).parent().next().slideDown('slow').removeClass('hide').preventDefault;
  		    jQuery(this).html('Hide Dishes');
  		  },function(){
  		    jQuery(this).parent().next().slideUp('slow').addClass('hide').preventDefault;
  		    jQuery(this).html('Show Dishes');
  		})
		
		jQuery("#contact_us").validationEngine();
		
				jQuery("a[rel='example1']").colorbox({width:"75%", height:"75%"});
				jQuery("a[rel='gallery']").colorbox();
				jQuery("a[rel='example3']").colorbox({transition:"none", width:"75%", height:"75%"});
				jQuery("a[rel='example4']").colorbox({slideshow:true});
				jQuery(".colorbox").colorbox();
				jQuery(".iframe_vid").colorbox({width:"700px", height:"394px", iframe:true});
				jQuery(".iframe").colorbox({width:"525px", height:"335px", iframe:true});
				jQuery(".iframe2").colorbox({width:"560px", height:"440px", iframe:true});
				jQuery(".iframe_down").colorbox({width:"685px", height:"510px", iframe:true});
				jQuery(".iframe_game_gen").colorbox({width:"643px", height:"470px", iframe:true});
				jQuery(".iframe_game_gen_s").colorbox({width:"450px", height:"370px", iframe:true});
				jQuery(".iframe_game_gen_l").colorbox({width:"540px", height:"520px", iframe:true});
				jQuery(".iframe_game_gen_c").colorbox({width:"683px", height:"550px", iframe:true});
				jQuery(".iframe_game_gen_r").colorbox({width:"713px", height:"500px", iframe:true});
				jQuery(".iframe_game_gen_p").colorbox({width:"620px", height:"505px", iframe:true});
				jQuery(".iframe_game_gen_n").colorbox({width:"743px", height:"580px", iframe:true});
				jQuery("#click").click(function(){ 
					jQuery('#click').css({"background-color":"#f00", "color":"#fff", "cursor":"inherit"}).text("Open this window again and this message will still be here.");
					return false;
				});
		
  	 });
