$('#news').focus(function() {
  //alert('Handler for .focus() called.');
  if($('#news').val()=='Iscriviti alla newsletter')
  {
    $('#news').val('');
  }
});

	$('#flash_header').cycle({
			fx: 'fade',
			random: 1,
			timeout:4000
		});


$(".fade_mark").hover(
  function () {
    //$(this).removeClass("fade");
    $(this).fadeTo("fast",1);
  },
  function () {
    //$(this).addClass("fade");
    $(this).fadeTo("fast",0.5);
  }
);

$(document).ready(function() {
  $(".fade_mark").fadeTo("fast",0.5);
  $("#fondazione").fadeTo("fast",0.99);
});
