// JavaScript Document

$(function(){
$(".news_tit").Slide({
    effect : "scroolTxt",
    speed : "slow",
	//autoPlay:false,
    timer : 3000,
    steps:1
	});
	
	$(".navi").parent().mouseover(function(){
		$(this).find(".hide").show();
		var _index=$(this).index()+1;
		$(this).find(".navi").addClass("navi_0"+_index+"_on");
	}).mouseout(function(){
		$(this).find(".hide").hide();
		var _index=$(this).index()+1;
		$(this).find(".navi").removeClass("navi_0"+_index+"_on");
	});
	
	$(".roll_list").Slide({
		effect : "scroolLoop",
		autoPlay:false,
    	speed : "normal",
		timer : 5000,
		steps:1
	});
	
 
	
});

 

  
