var home_btn = genBtn("index.php",subnav_dictionary[locale]["HOME"]);
var tech_btn = genBtn("technology.php",subnav_dictionary[locale]["MPh Technology"]);
var prod_btn = genBtn("production.php",subnav_dictionary[locale]["MPh Production"]);
var hifi_btn = genBtn("hifitrack.php",subnav_dictionary[locale]["HifiTrack"]);
var news_btn = genBtn("news.php",subnav_dictionary[locale]["News"]);

var company_btn = genBtn("company.php",subnav_dictionary[locale]["Company"]);
var management_btn = genBtn("management.php",subnav_dictionary[locale]["Management"]);
var partners_btn = genBtn("partners.php",subnav_dictionary[locale]["Partners"]);
var awards_btn = genBtn("awards.php",subnav_dictionary[locale]["Awards"]);
var contact_btn = genBtn("contact.php",subnav_dictionary[locale]["Contact"]);
//sub pages
var musicreg_btn = genBtn("technology.php?content=_musicreg",subnav_dictionary[locale]["Music Recognition"]);
var mmusicreg_btn = genBtn("technology.php?content=_mmusicreg",subnav_dictionary[locale]["Mobile Music Recognition"]);
var music_discovery_btn = genBtn("technology.php?content=_music_discovery",subnav_dictionary[locale]["Music Discovery"]);
var mmusic_discovery_btn = genBtn("technology.php?content=_mmusic_discovery",subnav_dictionary[locale]["Mobile Music Discovery"]);
var playlist_btn = genBtn("technology.php?content=_playlist",subnav_dictionary[locale]["Playlist"]);
var musicex_btn = genBtn("technology.php?content=_musicex",subnav_dictionary[locale]["MusicEx"]);
var musicdownload_btn = genBtn("technology.php?content=_musicdownload",subnav_dictionary[locale]["Music Download Factory"]);
var sing_btn = genBtn("technology.php?content=_singlikeastar",subnav_dictionary[locale]["Sing Like A Star"]);
var games_btn = genBtn("technology.php?content=_games",subnav_dictionary[locale]["Games"]);
var sep = " > ";

var result;
//check url
var url = window.location.href;
if(url.indexOf("technology_")==-1){
if(url.indexOf("technology.php")>0) result = tech_btn;
else if(url.indexOf("production.php")>0) result = prod_btn;
else if(url.indexOf("hifitrack.php")>0) result = hifi_btn;
else if(url.indexOf("news.php")>0) result = news_btn;
else if(url.indexOf("company.php")>0) result = company_btn;
else if(url.indexOf("management.php")>0) result = management_btn;
else if(url.indexOf("partners.php")>0) result = partners_btn;
else if(url.indexOf("awards.php")>0) result = awards_btn;
else if(url.indexOf("contact.php")>0) result = contact_btn;
else if(url.indexOf("news_")>0){
	result = news_btn+sep+"Content";
}
}
//sections that contains sub divisions
else if(url.indexOf("technology_")>0){
	result = tech_btn + sep;
	if(url.indexOf("_musicreg")>0) result += musicreg_btn;
	else if(url.indexOf("_mmusicreg")>0) result += mmusicreg_btn;
	else if(url.indexOf("_music_discovery")>0) result += music_discovery_btn;
	else if(url.indexOf("_mmusic_discovery")>0) result += mmusic_discovery_btn;
	else if(url.indexOf("_playlist")>0) result += playlist_btn;
	else if(url.indexOf("_musicex")>0) result += musicex_btn;
	else if(url.indexOf("_musicdownload")>0) result += musicdownload_btn;
	else if(url.indexOf("_games")>0) result +=  games_btn;
	else if(url.indexOf("_singlikeastar")>0 || url.indexOf("_animalhowl.php")>0) result += games_btn;
}

var style="";
if(locale=="zh" || locale =="cn")
	style="style='margin-left:5 px;'"
document.writeln("&nbsp;<span class=\"subNav\""+style+">"+home_btn+sep+result+"</span>");

function genBtn(url,label){
	return "<a href=\""+url+"\">"+label+"</a>";
}
