$(document).ready(function(){

	$("#menu1 li ul").hide();
	$("#menu2 li ul").hide();
	$("#menu3 li ul").hide();
	
	highlight_current_link();
	
	//prepend span tag
	$(".photo a").prepend("<span></span>");
	
	//$(".thickbox img").before('<span class="zoom"></span>');
	
	$(".submenu li").prepend(' » ');
	$(".menu").prepend('<img src="images/menu_dot.png" border="0"> ');
	
	$("#menu1 li").click(
		function () {
			$(this).children("ul").slideToggle("slow");
	});//hover
	
	$("#menu2 li").click(
		function () {
			$(this).children("ul").slideToggle("slow");
	});//hover
	
	$("#menu3 li").click(
		function () {
			$(this).children("ul").slideToggle("slow");
	});//hover
	
	function highlight_current_link()
	{
		$("#minitabs a").each(
			function () 
			{
				var url = window.location.href;				
				var current_href = $(this).attr("href");
				
				var short_current_href = $(this).attr("href").replace("http://www.progesa.it/","")
				
				if (url == current_href) //OR (url == short_current_href)
				{
					$(this).addClass("current");
				}
			}
		)
	}
	

});


	
	