// JavaScript Document
//--------------------------------------------------------------
//add by xkyu	2006-1-10	26200
//-------------------------------------------------------------


function currentMenuItem () {

	//首页
	if (window.document.body.className=="homePage") {        
		document.getElementById('home').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu01-1.gif)";
		document.getElementById('home').className="current";
	}
	
	//酒店
	if (window.document.body.className=="hotelsPage") {        
		document.getElementById('hotels').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu02-1.gif)";
		document.getElementById('hotels').className="current";
	}
	
	//国内机票
	if (window.document.body.className=="fltDomesticPage") {        
		document.getElementById('fliDomestic').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu03-1.gif)";
		document.getElementById('fliDomestic').className="current";
	}
	
	//国际机票
	if (window.document.body.className=="fltInternationalPage") {        
		document.getElementById('fliInternational').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu04-1.gif)";
		document.getElementById('fliInternational').className="current";
	}
	
	//度假
	if (window.document.body.className=="holidaysPage") {        
		document.getElementById('holidays').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu05-1.gif)";
		document.getElementById('holidays').className="current";
	}
	
	//商旅管理1
	if (window.document.body.className=="crpTravelPage") {        
		document.getElementById('corTravel').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu06-1.gif)";
		document.getElementById('corTravel').className="current";
	}
	
	//商旅管理2
	if (window.document.body.className=="corpPageHome") {        
		document.getElementById('corpHome').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu03-1.gif)";
		document.getElementById('corpHome').className="current";
	}	
	if (window.document.body.className=="corpPageHotels") {        
		document.getElementById('corpHotels').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu02-1.gif)";
		document.getElementById('corpHotels').className="current";
	}	
	if (window.document.body.className=="corpPageFltDomestic") {        
		document.getElementById('corpFltDomestic').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu03-1.gif)";
		document.getElementById('corpFltDomestic').className="current";
	}	
	if (window.document.body.className=="corpPageFltInternational") {        
		document.getElementById('corpFltInternational').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu04-1.gif)";
		document.getElementById('corpFltInternational').className="current";
	}
	if (window.document.body.className=="corpPagePackage") {        
		document.getElementById('corpPackage').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu01-1.gif)";
		document.getElementById('corpPackage').className="current";
	}
	
	//目的地指南
	if (window.document.body.className=="desGuidesPage") {        
		document.getElementById('desGuides').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu07-1.gif)";
		document.getElementById('desGuides').className="current";
	}
	
	//社区
	if (window.document.body.className=="communityPage") {        
		document.getElementById('community').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu08-1.gif)";
		document.getElementById('community').className="current";
	}
	
	//VIP特惠商户
	if (window.document.body.className=="vipPage") {        
		document.getElementById('vip').style.backgroundImage="url(http://pic.ctrip.com/common/btn_navMenu09-1.gif)";
		document.getElementById('vip').className="current";
	}

}