$(function() {
	$("#main_menu>ul>li").hover(
		function(){ $("div.menu_tendina", this).show(10); $(this).toggleClass("over"); }, 
		function(){ $("div.menu_tendina", this).hide(10); $(this).toggleClass("over"); } 
	);
	$(".info").colorbox({iframe:true, width:"500px", height:"400px"});

});

