if (document.images)
   {
	 // On Images
	 beauty_on = new Image(67,30);
	 beauty_on.src = "navigation/beauty_on.gif";
	 fashion_on = new Image(74,30);
	 fashion_on.src = "navigation/fashion_on.gif";
	 lingerie_on = new Image(76,30);
	 lingerie_on.src = "navigation/lingerie_on.gif";
	 playboy_on = new Image(136,30);
	 playboy_on.src = "navigation/playboy_vorn_on.gif";
	 portrait_on = new Image(70,30);
	 portrait_on.src = "navigation/portrait_on.gif";
	 personal_on = new Image(128,30);
	 personal_on.src = "navigation/personal_work_on.gif";
	 bio_on = new Image(35,30);
	 bio_on.src = "navigation/bio_on.gif";
	 contact_on = new Image(73,30);
	 contact_on.src = "navigation/contact_on.gif";
	 
	 // OFF Images
	 beauty = new Image(67,30);
	 beauty.src = "navigation/beauty.gif";
	 fashion = new Image(74,30);
	 fashion.src = "navigation/fashion.gif";
	 lingerie = new Image(76,30);
	 lingerie.src = "navigation/lingerie.gif";
	 playboy = new Image(136,30);
	 playboy.src = "navigation/playboy_vorn.gif";
	 portrait = new Image(70,30);
	 portrait.src = "navigation/portrait.gif";
	 personal = new Image(128,30);
	 personal.src = "navigation/personal_work.gif";
	 bio = new Image(35,30);
	 bio.src = "navigation/bio.gif";
	 contact = new Image(73,30);
	 contact.src = "navigation/contact.gif";
   }

function changeImg(picName,imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + ".src");
      document[picName].src= imgOn;
    }
 }