﻿//获取文件名参数
jQuery.fn.getSceneId=function()
{
	var LocString=String(window.document.location.href);
	var rs=new RegExp("index_([^\&]*)(.htm)","gi").exec(LocString),tmp;
	if(tmp=rs)return tmp[1];
	return "-1";
}
jQuery.fn.setIndexTop=function()
{
	var top=$("#indexTop");
	$.get("index_top.html",
              function(msg){ 
              top.html(msg);
              }
		);      
}
jQuery.fn.setIndexFoot=function()
{
	var top=$("#indexFoot");
	$.get("index_foot.html",
              function(msg){ 
              top.html(msg);
              }
		);      
}
//内页头尾
jQuery.fn.setSceneTop=function()
{
	var top=$("#SceneTop");
	$.get("Scene_top.html",
              function(msg){ 
              top.html(msg);
              }
		);      
}
jQuery.fn.setSceneFoot=function()
{
	var top=$("#SceneFoot");
	$.get("Scene_foot.html",
              function(msg){ 
              top.html(msg);
              }
		);      
}
