// JScript File
jQuery(document).ready(function () {
    jQuery.noConflict();

    jQuery("#DIVcommenti1").slideUp(0);
    jQuery("#DIVcommenti2").slideUp(0);
    jQuery("#DIVcommenti3").slideUp(0);
    jQuery("div#idTxtOpenClose1").html("Visualizza commenti");
    jQuery("div#idTxtOpenClose2").html("Visualizza commenti");
    jQuery("div#idTxtOpenClose3").html("Visualizza commenti");
    
	jQuery('.lavaLampWithImage').lavaLamp({
		fx: 'backout',
		speed: 800,
	        click: function(event, menuItem) {
	            return true;
	        }
	});

	//resize finestra
	jQuery( window ).wresize( function() {
	    impostaCalendario();
	});


	//gestione dei link nei testi dinamici
	jQuery.each(jQuery('#div_testo a'), function(index, value) { 
		var linkVal = new String(value);
		if ((linkVal.indexOf("clubslifestyle.it") != -1) || (linkVal.indexOf("clubslifestyle.com") != -1)) {
		    jQuery('#div_testo a')[index].setAttribute("target","_top");
		} else {
		    jQuery('#div_testo a')[index].setAttribute("target","_blank");
		}
	});
});

jQuery(function(){jQuery(document).pngFix();});

function visualizzaCommenti(id){
    jQuery("#DIVcommenti" + id).slideToggle(400);
    if (jQuery("div#idTxtOpenClose" + id).html() == "Nascondi commenti") {
          jQuery("div#idTxtOpenClose" + id).html("Visualizza commenti");
	} else {
          jQuery("div#idTxtOpenClose" + id).html("Nascondi commenti");
	}
}

function impostaCalendario(){
    if (jQuery("#offset") != null) {
	var coordCal=jQuery("#offset").offset();
	if (jQuery("#calendar") != null) {
	    jQuery("#calendar").css("top", coordCal.top);
	    jQuery("#calendar").css("left", coordCal.left);
	}
    }
}

