/*
	Web Portal Now
	Theme: strapper
	Script: common.js
	Author: Danilo Cicognani
	Version: 1.00
	Date: 07/10/2011
	Use: Funzionalita' di animazione del sito
	Copyright (c) 2011 Danilo Cicognani
*/
$('document').ready(function() {
	$('a.slb').lightBox({imageLoading: strSiteUrl + "/themes/strapper/images/lightbox-ico-carica.gif", imageBtnPrev: strSiteUrl + "/themes/strapper/images/lightbox-btn-prec.gif", imageBtnNext: strSiteUrl + "/themes/strapper/images/lightbox-btn-succ.gif", imageBtnClose: strSiteUrl + "/themes/strapper/images/lightbox-btn-chiudi.gif", imageBlank: strSiteUrl + "/themes/strapper/images/lightbox-blank.gif", txtImage: "Immagine", txtOf: "di", keyToNext: "s"});

	$('.trigger-tooltip a').mouseover(function() {
		$(this).find('.tooltip').show();
	}).mouseout(function() {
		$(this).find('.tooltip').hide();
	});
});
