// javascript image roll overs -- 2005 mf
// for Earthworks Landscaping navigation
//home
if (document.images) {

  image1on = new Image();
  image1on.src = "images/nav/home1.gif";

  image1off = new Image();
  image1off.src = "images/nav/home.gif";

}

//photo gallery
if (document.images) {

  image2on = new Image();
  image2on.src = "images/nav/photo1.gif";

  image2off = new Image();
  image2off.src = "images/nav/photo.gif";

}

//request a quote

if (document.images) {

  image3on = new Image();
  image3on.src = "images/nav/quote1.gif";

  image3off = new Image();
  image3off.src = "images/nav/quote.gif";

}

//testimonials

if (document.images) {

  image4on = new Image();
  image4on.src = "images/nav/test1.gif";

  image4off = new Image();
  image4off.src = "images/nav/test.gif";

}


function turnOn(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "on.src");
  }
}

function turnOff(imageName) {
  if (document.images) {
    document[imageName].src = eval(imageName + "off.src");
  }
}

function photoWindow(URL) 
{			
	pWindow = window.open(URL,"Photo","width="+450+",height="+450+",toolbar=no,scrollbars=no,menubar=no,status=no,top=50,left=50");
}

