// JavaScript Document

function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
};

//$(function() {
//		$('a[rel*=lightbox]').lightBox({
//			txtImage: 'Immagine',
//				txtOf: 'di',
//				imageBtnClose: 'images/lightbox-btn-close-ita.gif'
//			});
//});

$(document).ready(function(){//
	$(".franchising, .fiere, .news").hover(
	function(){$(this).children("a").addClass("subnavover");$(this).children(".subnav").stop().css("height", "auto").animate({height:"show"},"fast").css("z-index",11);},
	function(){$(this).children("a").removeClass("subnavover");$(this).children(".subnav").stop().css("height", "auto").animate({height:"hide"},'slow').css("z-index",10);}
	);
});

