if (document.images) 
{
   img1 = new Image();
   img2 = new Image();
   img3 = new Image();
   img4 = new Image();
   img5 = new Image();
   img6 = new Image();
   img7 = new Image();
   img8 = new Image();
   
   img1.src = "../images/homeIcon.gif"
   img2.src = "../images/individIcon.gif"
   img3.src = "../images/globeIcon.gif"
   img4.src = "../images/pageShadow2.jpg"
   img5.src = "../images/grayLineLanguage.jpg"
   img6.src = "../images/pageShadow.jpg";
   img7.src = "../images/languageContentBottomShadow.jpg"
   img8.src = "../images/languageContentTop.jpg"
   
}

function bodyOnLoadGeneric() {

xmlDoc=loadXMLDoc("title.xml");
document.getElementById('languageTitle').innerHTML = xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue;
document.title = xmlDoc.getElementsByTagName("title")[0].childNodes[0].nodeValue;
getDate();
xmlDoc=loadXMLDoc("../LanguageFacts/factListMenu.xml");
var x=xmlDoc.getElementsByTagName("option");
var dropDownMenu;				   
dropDownMenu = 	"<form>" + 	"<select class=\"selectBranchDropDown\" name=\"jumpMenu\" id=\"jumpMenu\" onchange=\"MM_jumpMenu('top',this,1)\">";
dropDownMenu += "<option value=\"1\">Choose a topic</option>";
for (i=0;i<x.length;i++)
{
	dropDownMenu += "<option value=\"" + xmlDoc.getElementsByTagName("location")[i].childNodes[0].nodeValue + "\">";
	dropDownMenu += xmlDoc.getElementsByTagName("option")[i].childNodes[0].nodeValue;
	dropDownMenu += "</option>";
}

dropDownMenu += "</select></form>";

document.getElementById('factListDropDown').innerHTML = dropDownMenu;

loadWholePage('content.html', 'storageContent', 'displayedContent');
}