﻿$(function(){
    $(".boxBiancoNews").hover(function(){
        $(this).css("background-color","#000").css("color","#fff");
        $(this).find(".itemTitoloNews").hide();
        $(this).find(".itemDescNews").show();
    },function(){
        $(this).css("background-color","#fff").css("color","#000");
        $(this).find(".itemDescNews").hide();
        $(this).find(".itemTitoloNews").show();
    });
    
    $(".boxNeroEventi").hover(function(){
        $(this).css("background-color","#fff").css("color","#000");
        $(this).find(".itemTitoloEventi").hide();
        $(this).find(".itemDescEventi").show();
    },function(){        
        $(this).css("background-color","#000").css("color","#fff");
        $(this).find(".itemDescEventi").hide();
        $(this).find(".itemTitoloEventi").show();
    });
});
