
/**
 * 公共部分抽取 页头 页尾 和 tab
 * @param 
 * @param 
 * @author 魏新杰
 */

var menu = {
	m1:1,	// 首页
	m2:2,	//产品与服务
	m3:3,	//经典合作
	m4:4,	//广告主专区
	m5:5,	//关于星传媒
	m6:6	//星传媒指数 	
}
var currentMenuId = 0;

var txUtil = {

	writeHeader:function(){
		document.write("<div class=\"topinfo\"><span>您好！欢迎来到星传媒!</span>") ;
			document.write("<span class=\"tar\"><a href=\"http://www.shunwang.com/\" >公司官网</a>") ;
			//document.write("&nbsp;|&nbsp;") ;
			//document.write("<a href=\"http://starmedia.icafe28.com/\" >老官网</a>") ;
			document.write("</span>") ;
			document.write("</div>") ;
			document.write("<div id=\"header\">") ;
			document.write("<a href=\"http://www.icafe28.com/index.html\" title=\"logo\">") ;
			document.write("<img src=\"http://www.icafe28.com/images/hlogo.png\" alt=\"星传媒logo\" />") ;
			document.write("</a>") ;
		document.write(" </div>") ;
	},

	writeMenu:function() {
	    document.write("<div id=\"menu\" >") ;
		    document.write("<ul>") ;
			    document.write("<li id='m1'><a href=\"http://www.icafe28.com/index.html\">首页</a></li>") ;
			    document.write("<li id='m2'><a href=\"http://www.icafe28.com/pages/pose.html\" >产品与服务</a></li>") ;
			    document.write("<li id='m3'><a href=\"http://www.icafe28.com/pages/jdhz01.html\" >经典合作</a></li>") ;
			    document.write("<li id='m4'><a href=\"http://www.icafe28.com/pages/adser.html\" >广告主专区</a></li>") ;
			    document.write("<li id='m5'><a href=\"http://www.icafe28.com/pages/about.html\" >关于星传媒</a></li>") ;
			    document.write("<li id='m6'><a href=\"http://www.icafe28.com/pages/xqmzs.html\" >星传媒指数</a></li> ") ;
		    document.write("</ul>") ;
	    document.write("</div>") ;
	   txUtil.selecStyletMenu();
	} ,

	writeFooter:function() {
		document.write("<div id=\"footer\">") ;
			document.write("<div class=\"flogo\">") ;
				document.write("<p>") ;
				document.write("<a href=\"http://www.icafe28.com/index.html\">首页</a> ") ;
				document.write("<a href=\"http://www.icafe28.com/pages/about.html\">公司简介</a> ") ;
				document.write("<a href=\"http://www.icafe28.com/pages/qyln.html\" >公司理念</a> ") ;
				document.write("<a href=\"http://www.icafe28.com/pages/lxfs.html\" >联系我们</a> ") ;
				document.write("<a href=\"http://www.icafe28.com/pages/wzdt.html\" >网站地图</a> ") ;
		        document.write("</p>") ;
		        document.write("<p>版权所有&nbsp;&nbsp;2005-2012&nbsp;杭州顺网科技股份有限公司&nbsp;保留所有权利&nbsp;浙B2-20090265 ") ;
				document.write("&nbsp; <a target=_blank href=\"http://www.shunwang.com/swzz.html\" >文网文[2009]028号</a>") ;
				document.write("</p>") ;
	        document.write("</div>") ;
        document.write("</div>") ;
	},
	/**
	 * 选中当前头部menu
	 */
	selecStyletMenu:function(){
			var liNode;
			if(currentMenuId != 0){
				liNode = document.getElementById("m"+currentMenuId);
				liNode.childNodes[0].className = "onmu";
			}else{
				liNode = document.getElementById("m1");
				liNode.childNodes[0].className = "home onhome";
			}
		}
	
}

