
jQuery(document).ready(function(){
  jQuery("ul#vert_nav li a").filter(function(){
    if (jQuery(this).text().indexOf('>') > 1){
      jQuery(this).attr("style","font-weight:bold");
    }
  });
	 jQuery("ul.main_nav_sub li a strong").filter(function(){		
    if (jQuery(this).text().indexOf('>') > 1){
      var newTextActive=jQuery(this).text().substr(0,jQuery(this).text().indexOf('>')-1);
      jQuery(this).text(newTextActive);
      jQuery(this).parent().attr("title",newTextActive);
    }
	 });
});

