
	
	/*
	//Questo script richiede jQuery
	$('form.InnerLabelInputs').each(function() {
		$(this).find('input[type=text],input[type=password]').each(function () {
			if($(this).val()) {
				var original_val = $(this).val();
				$(this).focus(function() { if ($(this).val() == original_val) $(this).val(''); });
				$(this).blur(function()  { if (!$(this).val())                $(this).val(original_val); });
			}
		});
	});
	*/
	

if (typeof jQuery != 'undefined') {               
    //$('html').hide();//nascondo il DOM prima di caricare i fix
		//Questo script richiede jQuery  
    $(document).ready(function(){
       
		if($.browser.safari)  $('head').append('<link href="../includes/safari_fixes.css" rel="stylesheet" type="text/css" media="screen" />');
		if($.browser.mozilla)  $('head').append('<link href="../includes/mozilla_fixes.css" rel="stylesheet" type="text/css" media="screen" />');
		if($.browser.msie) 
            if($.browser.version == "7.0")
                $('head').append('<link href="../includes/msie_fixes.css" rel="stylesheet" type="text/css" media="screen" />');
		//$('html').show();
		//Questo script richiede jQuery
		$('#nav li').each(function() {
			$(this).mouseover(function()  { $(this).find('ul').show(); $(this).children().addClass('hover');    });
			$(this).mouseleave(function() { $(this).find('ul').hide();  $(this).children().removeClass('hover'); });
		});
/*("Benvenuto: sono le: ",today.getHours(),":",today.getMinutes());
document.write(" del: ",today.getDate(),"/",
today.getMonth()+1,"/",today.getFullYear()); */
	});
}
	

