/* Index page script
* Author:  Leo
* Date:    2011.11.04
* Update:  2011.11.04
*/
$(function(){
	$("#focus ul").cycle({
		fx:                'fade', 
		speed:             1000,
		timeout:           3000,
		cleartypeNoBg:   true,
		random: 1
   });
   
   $(".nv").each(function(e){
	   var num = "nav_bg"+e;
	   $(this).hover(function(){
		   $(".nav_bg").addClass(num);
		   $('.menu',this).slideDown();
	   },function(){
		   $(".nav_bg").removeClass(num);
		   $('.menu',this).slideUp();
	   });
	});
	$('.ch_en li').hover(function(){
	   $('.chinese',this).fadeIn();
   	},function(){
	   $('.chinese',this).fadeOut();
   	});

	addSWF("/moka_loop.swf","main_flash",615,476);
});
