  $(document).ready(function() {
    $('#menu ul').parent().addClass('hassub'); 
    $("#menu li").hover(
   	 function() { $('ul:first',this).show(); },
   		function() { $('ul:first',this).hide(); }
    );
   });
  
  jQuery(document).ready(function(){

                jQuery("li.cat-item a").each(function(){
                    jQuery(this).removeAttr('title');
                })                

                jQuery("li.page_item a").each(function(){
                    jQuery(this).removeAttr('title');
                })

  });
