    $(document).ready(function() {
    	$(".navi li").hover(function() {
    		$(this).find(".subnavi").fadeIn('fast');
    		$(this).find(".navi_cell").addClass('on');
    	} , function() {
    		$(this).find(".subnavi").fadeOut('fast');
    		$(this).find(".navi_cell").removeClass('on');
    	});
    	$(".tabs a").click(function() {
      	$(".tabs a").removeClass('on');
      	$(this).addClass('on');
      });
    	$(".tabs a").eq('0').click(function() {
        $('.news_2_c ul').eq('0').css('margin-top','0')
      });
    	$(".tabs a").eq('1').click(function() {
        $('.news_2_c ul').eq('0').css('margin-top','-160px')
      });
    	$(".tabs a").eq('2').click(function() {
        $('.news_2_c ul').eq('0').css('margin-top','-320px')
      });
    	$(".tabs a").eq('3').click(function() {
        $('.news_2_c ul').eq('0').css('margin-top','-480px')
      });
    });

