//author: Laura - date: 2011-09-08 - serve per dare l'effetto "bottone" ai box delle aree
(function ($) {
    $(document).ready(function() {
        $('.areaCitt').click(function(){
            $(this).removeClass('areaCitt');
            $(this).addClass('selCitt');
        });
        $('.areaVProf').click(function(){
            $(this).removeClass('areaVProf');
            $(this).addClass('selVProf');
        });
        $('.areaProf').click(function(){
            $(this).removeClass('areaProf');
            $(this).addClass('selProf');
        });
    });
})(jQuery);
