
// Messaggio homepage
function messaggio_popup(){
	var msgHomePage = '<div id="messaggio_popup"><img src="/immagini_layout/popup_home/popup_klimahouse.jpg" /><a class="button_close" href="#"><span>X</span></a></div>';
	
	$("body").prepend(msgHomePage);
	$("#messaggio_popup").css({'height': $(document).height()+'px'});
	$("#messaggio_popup").fadeIn(800, function(){
		$("#messaggio_popup img").fadeIn(800);
		$("#messaggio_popup a.button_close").fadeIn(500);
	});
	
}

$(".button_close").live('click', function(){

	$("#messaggio_popup img").fadeOut(500);
	$("#messaggio_popup a.button_close").fadeOut(500);
	$("#messaggio_popup").fadeOut(1000, function(){
		$("#messaggio_popup").remove();
	});
	
});


$(document).ready(function(e) {
	
	// Messaggio programmato fino al 31/01/2012
	var dmho = new Date(); //data_msg_home_oggi
	var anno = dmho.getFullYear();
	var mese = dmho.getMonth();
	mese++;
	if(mese < 10){mese = '0'+mese.toString();}
	var giorno = dmho.getDate();
	if(giorno < 10){giorno = '0'+giorno.toString();}
	dmho = anno.toString()+mese.toString()+giorno.toString();
	dmho = parseInt(dmho);
	
	if(dmho < 20120130){
		messaggio_popup();
		
	}
});


















