$(document).ready(function(){
      
      $("ul.index_news li").hover(
        function() {
          $(this).addClass("act");
        },
        function() {
          $(this).removeClass("act");
        }
      );
	  
	  $('.content_menu ul li a').each(function(n){
	  	$(this).hover(function(){
	  		//$(this).find('img').attr('src', 'img/icons/0' + (n + 1) + 'b.gif');
	  		new_src = $(this).find('img').attr('src').replace(/^(.+\/)([0-9]+)(.*)(.gif)$/,"$1$2b.gif");
	  		$(this).find('img').attr('src',new_src);
	  	}, function(){
	  		//$(this).find('img').attr('src', 'img/icons/0' + (n + 1) + '.gif');
	  		new_src = $(this).find('img').attr('src').replace(/^(.+\/)([0-9]+)(.*)(.gif)$/,"$1$2.gif");
	  		$(this).find('img').attr('src',new_src);
	  	});
	  });
});

