$(document).ready(function(){

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

    $(".mz_dt").hover(function () {
        $(this).css({
            'background' : 'url(http://www.tecnostop.com/themes/Electronix/img/menuV1vo.png) no-repeat',
			'background-color' : '#4c84b7'
        });
    }, function () {
        var cssObj = {
            'background' : 'url(http://www.tecnostop.com/themes/Electronix/img/menuV1v.png) no-repeat',
			'background-color' : '#4c84b7'
        }
        $(this).css(cssObj);
    });

    $(".mz_dt_solo").hover(function () {
        $(this).css({
            'background' : 'url(http://www.tecnostop.com/themes/Electronix/img/menuV1o.png) no-repeat',
			'background-color' : '#4c84b7'
        });
    }, function () {
        var cssObj = {
            'background' : 'url(http://www.tecnostop.com/themes/Electronix/img/menuV1.png) no-repeat',
			'background-color' : '#4c84b7'
        }
        $(this).css(cssObj);
    });
});
