/*
	@author:	Krzysztof Prugar
	@desc:		Javascript for restaurant_home.php
*/
/*
$(document).ready(function() 
{
	$("#menu").find(".menu_category_item").hover(function()
	{
		$(this).addClass("highlight");
	},
	function()
	{
		$(this).removeClass("highlight");
	});
	
});
*/
