/*
	Web Portal Now
	Theme: santalusa
	Author: Danilo Cicognani
	Version: 1.00
	Date: 10/07/2009
*/
$('document').ready(function() {
	tmrHeadAnim = setTimeout('headAnim()', 2000);
	$('a.slb').lightBox({imageLoading: strSiteUrl + "/../themes/santalusa/img/lightbox-ico-carica.gif", imageBtnPrev: strSiteUrl + "/../themes/santalusa/img/lightbox-btn-prec.gif", imageBtnNext: strSiteUrl + "/../themes/santalusa/img/lightbox-btn-succ.gif", imageBtnClose: strSiteUrl + "/../themes/santalusa/img/lightbox-btn-chiudi.gif", imageBlank: strSiteUrl + "/../themes/santalusa/img/lightbox-blank.gif", txtImage: "Immagine", txtOf: "di", keyToNext: "s"});
});
function headAnim() {
	$('div#headbg').animate({top: -200}, 1000, function() {
		$('div#headbg').animate({top: 0}, 2000, function() {
			$('div#headbg').animate({top: -116}, 1500, function() {
				tmrHeadAnim = setTimeout('headAnim()', 3000);
			});
		});
	});
}