/*
*	this menu file created psufool
*	psufool informations:
*	name:psufool
*	email:psufool@163.com
*	qq:psufool@qq.com
*	homePage:http://www.psufool.com.cn/
**/
$(function(){
	var topNav = $(".topNav > ul > li");
	topNav.each(
		function(i){
			this.id=navId(i);
			if(i==0){this.className="currentNav";}
		}
	);
	var objNav = $(".topNav > ul > li:not(.currentNav)");
	objNav.each(function(i){
		this.className="nav";
		if(this.id!=navId(topNav.length-1)){
			$("#"+this.id).html($("#"+this.id).html()+"<span><img src='images/menu_m.gif' width='2' height='37' border='0' /></span>");
		}
	});
});

function navId(tempI){
	return "menu" + tempI;	
}

function navOver(tempI){
	
}
function navOut(){
		
}
