// JavaScript Document
	$(document).ready(function () {
    	//il tuo codice
    $(".TitoloNews").hover(
      function () {
        $(this).addClass("hover_news");
      }, 
      function () {
        $(this).removeClass("hover_news");
      }
    );
	});



