//var so = new SWFObject("../flash/ine_swf.swf", "mymovie", "681", "247", "7", "#D7C77A");
//参数意思： 地址，Flash 的 id（不是容器的 id），宽，高，版本需求，背景颜色
//这是最基本的，如果你要高级的设置，就仔细翻翻说明吧。

//so.write("banner2");


var t = n = count = 0;

jQuery("#flash_text").load("flash_html/introduce.html");

jQuery(function(){
		
	count = jQuery("#play_list img").size();
	
	jQuery("#play_list img:not(:first-child)").hide();
	
	show();
		
	setInterval(showAuto, 4000);
	
});

function showAuto()
{
	n = n >= (count - 1) ? 0 : n + 1;
	
	show();

}

function show(){
	jQuery("#play_list img").filter(":visible").fadeOut(500).parent().children().eq(n).fadeIn(1500);
}
