$(document).ready(function(){
	//nav
	$('li.navbtn').hover(
		function() { $('.in', this).fadeIn("fast");$('.navbtn_a', this).addClass("on"); },
		function() { $('.in', this).hide();$('.navbtn_a', this).removeClass("on"); }
	);
	
	//banner
	$('.index_banner').cycle({
		fx:			"fade",
		timeout :	6000
	});
	$('.index_banner_title').cycle({
		fx:			"scrollUp",
		timeout :	6000
	});
	



});

