if (document.images) {
   
     button1 = new Image
     button2 = new Image
	 
	 button3 = new Image
     button4 = new Image
	 
	 button5 = new Image
     button6 = new Image
	 
	 button7 = new Image
     button8 = new Image
	 
	 button9 = new Image
     button10 = new Image
	 
	 button11 = new Image
     button12 = new Image
	 
	 
	 	 
     button1.src = 'images/nav-home.png'
     button2.src = 'images/nav-home-hvr.png'
	 
	 button3.src = 'images/nav-golf.png'
     button4.src = 'images/nav-golf-hvr.png'
	 
	 button5.src = 'images/nav-amenities.png'
     button6.src = 'images/nav-amenities-hvr.png'
	 
	 button7.src = 'images/nav-events.png'
     button8.src = 'images/nav-events-hvr.png'
	 
	 button9.src = 'images/nav-contact.png'
     button10.src = 'images/nav-contact-hvr.png'
	 
	 button11.src = 'images/nav-guests.png'
     button12.src = 'images/nav-guests-hvr.png'
	 
	 
}


function expand(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuHover";
  d.className = "menuHover";
}

function collapse(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuNormal";
  d.className = "menuNormal";
}



