//subPage JS 文件


//定义Flash文件指定路径
var strAddress=" http://www.ynsph.com.cn/Admin/UserFiles/file/2010/jiaotong/";
//定义Flash文件名数组
var myFlash=new Array("1.swf","2.swf","3.swf","4.swf","5.swf","6.swf","7.swf","8.swf","9.swf","10.swf","11.swf","12.swf","13.swf","14.swf","15.swf");

var flashNames=new Array("第一集  高速公路行车安全知识","第二集  高速公路行车的速度要求","第三集  进入高速公路前的车辆检查","第四集  高速公路行车备忘录","第五集  高速公路行车五不要","第六集  高速公路行车的安全距离","第七集  转向失控的应急处理","第八集  高速公路行驶怎样避让障碍物","第九集  刹车失灵的应急处理","第十集  高速公路行驶发生故障怎么办","第十一集  如何安全进出高速公路","第十二集  进入隧道的安全驾驶","第十三集  行驶中爆胎的应急处理","第十四集  大客车长途驾驶注意事项","第十五集  大货车行驶高速公路注意事项");

//定义页面加载时所取得的数组下标[即页面参数]
var arrayIndex=window.location.href.split("?")[1];

var subPage=
{
	"iniPage":function()
	{
		this.addTitle();
		this.showFlash();
	},
	"addTitle":function()
	{
		$("#flashTitle").html("<p style='font-size:15px'>"+flashNames[arrayIndex]+"</p>");
	},
	
    //页面加载方法[加载flash]
	"showFlash":function()
	{
		$("#pagContent").html("<object classid='clsid:D27CDB6E-AE6D-11CF-96B8-444553540000' id='obj1' codebase=' http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0' border='0' width='450' height='400'><param name='movie' value='"+strAddress+myFlash[arrayIndex]+"'><param name='quality' value='high'><param name='wmode' value='transparent'><param name='menu' value='false'><embed src='"+strAddress+myFlash[arrayIndex]+"' pluginspage=' http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' name='obj1' width='450' height='400' quality='High' wmode='transparent'></embed></object>");
	}

}

$().ready(
	function()
	{	
		subPage.iniPage();
	}
);
