var backGroundPath = Array(); backGroundPath[0] = "/learn/destinations/alaska"; backGroundPath[1] = "/learn/destinations/asia"; backGroundPath[2] = "/learn/destinations/australia"; backGroundPath[3] = "/learn/destinations/canada"; backGroundPath[4] = "/learn/destinations/caribbean"; backGroundPath[5] = "/learn/destinations/europe"; backGroundPath[6] = "/learn/destinations/hawaii"; backGroundPath[7] = "/learn/destinations/mexico"; backGroundPath[8] = "/learn/destinations/panama_canal"; backGroundPath[9] = "/learn/destinations/south_america"; backGroundPath[10] = "/learn/destinations/world_cruise"; backGroundPath[11] = "/learn/cruisetours/alaska"; backGroundPath[12] = "/learn/cruisetours/asia"; backGroundPath[13] = "/learn/cruisetours/australia"; backGroundPath[14] = "/learn/cruisetours/canada"; backGroundPath[15] = "/learn/cruisetours/europe"; backGroundPath[16] = "/learn/cruisetours/south_america"; backGroundPath[17] = "/learn/ports/alaska"; backGroundPath[18] = "/learn/ports/asia"; backGroundPath[19] = "/learn/ports/australia"; backGroundPath[20] = "/learn/ports/canada"; backGroundPath[21] = "/learn/ports/caribbean"; backGroundPath[22] = "/learn/ports/europe"; backGroundPath[23] = "/learn/ports/hawaii"; backGroundPath[24] = "/learn/ports/mexico"; backGroundPath[25] = "/learn/ports/panama_canal"; backGroundPath[26] = "/learn/ports/south_america"; backGroundPath[27] = "/romance";
function writeBackground(){
	var css_postfix = "_default.css";
	var path = location.href.substring(document.domain.length,location.href.lastIndexOf("/"));
	path = path.substring(path.indexOf("/"), path.length );
	for( var i = 0; i < backGroundPath.length; i++ ){
		var cssName = backGroundPath[i].substring(backGroundPath[i].lastIndexOf("/")+1, backGroundPath[i].length );
		if( path.indexOf(backGroundPath[i])> -1){
			var cssFile = cssName + css_postfix;
			document.write( "<link href=\"/css/" + cssFile + "\" rel=\"stylesheet\" type=\"text/css\" media=\"screen\" />" );
		}
									  
	}
}
writeBackground();		 