jQuery.noConflict();
jQuery(document).ready(function() {
     jQuery("#liMenuPlus").mouseenter( function () { jQuery("[id^=block_]").show(); })         
                     .mouseleave( function () { jQuery("[id^=block_]").hide(); });
              
     jQuery("#block_1").mouseenter( function () { jQuery("#ab1").css('background-color', '#ffc53f'); })
                  .mouseleave( function () { jQuery("#ab1").css('background-color', '#f1f1f1'); });                          
         
     jQuery("#block_2").mouseenter( function () { jQuery("#ab2").css('background-color', '#ffc53f'); }) 
                  .mouseleave( function () { jQuery("#ab2").css('background-color', '#f1f1f1'); });                                                   
});


