function getElements()
{
	
/*var x=document.getElementsByName("contact");
var contact = (x.length);
alert(contact);

var xfact_sheet=document.getElementsByName("fact_sheet");
var fact_sheet = (xfact_sheet.length);
alert(fact_sheet);*/


var currentURL = window.location;
var result = ( currentURL.pathname ); // Displays '/example.cgi'
/*alert(result);*/
var myString = result;
var mySplitResult = myString.split("/");
for(i = 3; i < mySplitResult.length; i++){
var page =(mySplitResult[4]); 
    /*document.write("<br /> Element " + i + " = " + mySplitResult[2]); */
	/*document.write(page);*/
	/*alert(page);*/
}

if (page == 'contact')
{
	/*alert("samecon");*/
	document.getElementById("contact").src="../images/menu_contact_on.jpg";
	document.getElementById("con").style.color = "#ACAA53";
}


if (page == "Image4")
{
	/*alert("samefac");*/
	document.getElementById("Image4").src="../images/n_loose2.jpg";
	//document.getElementById("fac").style.color = "#ACAA53";
}


if (page == "Image5")
{
	/*alert("samefac");*/
	document.getElementById("Image5").src="../images/n_gifts2.jpg";
	//document.getElementById("gal").style.color = "#ACAA53";
}

if (page == "Image3")
{
	/*alert("samefac");*/
	document.getElementById("Image3").src="../images/n_tea2.jpg.jpg";
	//document.getElementById("rat").style.color = "#ACAA53";
}

if (page == "journal")
{
	/*alert("samefac");*/
	document.getElementById("journal").src="../images/menu_journal_on.jpg";
	document.getElementById("jou").style.color = "#ACAA53";
}

if (page == "activities")
{
	/*alert("samefac");*/
	document.getElementById("activities").src="../images/menu_activities_on.jpg";
	document.getElementById("act").style.color = "#ACAA53";
}

if (page == "cuisine")
{
	/*alert("samefac");*/
	document.getElementById("cuisine").src="../images/menu_cuisine_on.jpg";
	document.getElementById("cui").style.color = "#ACAA53";
}

if (page == "living")
{
	/*alert("samefac");*/
	document.getElementById("living").src="../images/menu_living_on.jpg";
	document.getElementById("liv").style.color = "#ACAA53";
}

if (page == "the_house")
{
	/*alert("samefac");*/
	document.getElementById("the_house").src="../images/menu_house_on.jpg";
	document.getElementById("hou").style.color = "#ACAA53";

}







}