// JavaScript Document
jQuery(function(){
	jQuery('#index_nav li').hover(
		function(){
			jQuery(this).find('.n1').stop().animate({opacity:'0',top:'43px'});
		},
		function(){
			jQuery(this).find('.n1').stop().animate({opacity:'1',top:'0px'});
		}
	);
});
$(document).ready(function() {
    $("#newprobox li").hover(
	  function() { $(this).addClass("overd") },
	  function() { $(this).removeClass("overd") }
   );
});
