// JavaScript Document

function E_nav(obj,bol){
	var pathLink="";
	var pathActive="";
	var id=obj.getAttribute("id");
	if(id=="E_nav1"){
		pathLink="images/left_but_aboutcicaf.gif";
		pathActive="images/left_but_aboutcicaf2.gif";
	}
	else if(id=="E_nav2"){
		pathLink="images/left_but_cicaie.gif";
		pathActive="images/left_but_cicaie2.gif";
	}
	else if(id=="E_nav3"){
		pathLink="images/left_but_monkeykingaward.gif";
		pathActive="images/left_but_monkeykingaward2.gif";
	}
	else if(id=="E_nav4"){
		pathLink="images/left_but_conferences.gif";
		pathActive="images/left_but_conferences2.gif";
	}
	else if(id=="E_nav5"){
		pathLink="images/left_but_hangzhousummit.gif";
		pathActive="images/left_but_hangzhousummit2.gif";
	}
	else if(id=="E_nav6"){
		pathLink="images/left_but_animation-trade-fair.gif";
		pathActive="images/left_but_animation-trade-fair2.gif";
	}
	else if(id=="E_nav7"){
		pathLink="images/left_but_themeday.gif";
		pathActive="images/left_but_themeday2.gif";
	}
	else if(id=="E_nav8"){
		pathLink="images/left_but_projects-investment-fair.gif";
		pathActive="images/left_but_projects-investment-fair2.gif";
	}
	else if(id=="E_nav9"){
		pathLink="images/left_but_talentsrecruitment.gif";
		pathActive="images/left_but_talentsrecruitment2.gif";
	}
	else if(id=="E_nav10"){
		pathLink="images/other-events.gif";
		pathActive="images/other-events2.gif";
	}
	else if(id=="E_nav11"){
		pathLink="images/conferences(salon)_button_introduction.gif";
		pathActive="images/conferences(salon)_button_introduction2.gif";
	}
	else if(id=="E_nav12"){
		pathLink="images/conferences(salon)_button_ep.gif";
		pathActive="images/conferences(salon)_button_ep2.gif";
	}
	else if(id=="E_nav13"){
		pathLink="images/E_home.gif";
		pathActive="images/E_home2.gif";
	}
	if(bol==true){
		obj.src=pathActive;
	}
	else{
		obj.src=pathLink;
	}
}