$(document).ready(function(){

    oldgox = 'nimic';
    $("dt").click(function(){
        var id = $(this).attr('id');
        $("dd:visible").slideUp("fast");
        if(oldgox != id){
            $('#dd-'+id).slideDown("fast");
            //$(this).html('txt '+id+' - '+oldgox);
            oldgox = id;
        }else{
            oldgox = 'nimic';
        }
        return false;
    });

    $(".mz_dt").hover(function () {
        $(this).css({
            'background' : 'url(http://www.midagiochi.com/modules/blockcategories/mmem1o.png) no-repeat',
            'background-color' : '#4c84b7'
        });
    }, function () {
        $(this).css({
            'background' : 'url(http://www.midagiochi.com/modules/blockcategories/mmem1.png) no-repeat',
            'background-color' : '#4c84b7'
        });
    });
});

/*'background-color' : '#086061',*/

