jQuery(function($){
$('.change').change(function(){
    $id = $(this).attr('id');
    if ($(this).attr('rel')) 
        $id = $(this).attr('rel');
    
    $('.' + $id + '_change').hide();
    if ($(this).attr('type') == 'checkbox') {
        if ($(this).is(':checked')) 
            $('#' + $id + '_change_' + $(this).val()+', .' + $id + '_change_' + $(this).val()).show();
    }
    else 
      $('#' + $id + '_change_' + $(this).val()+', .' + $id + '_change_' + $(this).val()).show();
}).change();

    $("#Menu2 div").hover(function(){
    
        $(this).addClass("hover").css('background', '#ff5b00');
        $('ul:first',this).css('visibility', 'visible');
    
    }, function(){
     
        $(this).removeClass("hover").css('background', 'none');
        $('ul:first',this).css('visibility', 'hidden');
    
    });
    
});
