
	
	/*
	//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); });
			}
		});
	});
	*/
	

	//Questo script richiede jQuery
	if($.browser.safari)  $('head').append('<link href="../includes/safari_fixes.css" rel="stylesheet" type="text/css" media="screen" />');
	if($.browser.msie){ 
    $('head').append('<link href="../includes/msie_fixes.css" rel="stylesheet" type="text/css" media="screen" />');
	  if($.browser.version == "7.0") 
      $('head').append('<link href="../includes/msie_7.0fixes.css" rel="stylesheet" type="text/css" media="screen" />');
	}

	$(document).ready(function(){
	   $("#calendarLayer").jCalendar({
			'fadeout' : 8000,
			'calendarBg' : '#b92828',
			'textColor' : '#fff',
			'monthBarBg' : '#b92828',
			'monthBarText' : '#fff',
			'currentDay' : '#891e1e',
			'eventHighlight' : '#ff0',
			'titleColor' : '#f00',
			'width' : '250',
			'textSize' : 1,
			'titleAlign' : 'center',
			'wrapperColor' : '#fff'
	   });
	});

	

