// MouseOn 
 				homeon = new Image(79, 38);
				homeon.src = "http://www.lizashley.com/afk/images/n_home_on.jpg";
				abouton = new Image(118, 38);
				abouton.src = "http://www.lizashley.com/afk/images/n_about_on.jpg";
				getinvolvedon = new Image(138, 38);
				getinvolvedon.src = "http://www.lizashley.com/afk/images/n_getinvolved_on.jpg";
				presson = new Image(77, 38);
				presson.src = "http://www.lizashley.com/afk/images/n_press_on.jpg";
				contacton = new Image(127, 38);
				contacton.src = "http://www.lizashley.com/afk/images/n_contact_on.jpg";
				
				
			// MouseOff
			    homeoff = new Image(79, 38);
			    homeoff.src = "http://www.lizashley.com/afk/images/n_home.jpg";
				aboutoff = new Image(118, 38);
				aboutoff.src = "http://www.lizashley.com/afk/images/n_about.jpg";
				getinvolvedoff = new Image(138, 38);
				getinvolvedoff.src = "http://www.lizashley.com/afk/images/n_getinvolved.jpg";
				pressoff = new Image(77, 38);
				pressoff.src = "http://www.lizashley.com/afk/images/n_press.jpg";
				contactoff = new Image(127, 38);
				contactoff.src = "http://www.lizashley.com/afk/images/n_contact.jpg";

				
				

				
				// image-swapping functions
function imgOn(imgName) {	
  if (document.getElementById) {
    document.getElementById(imgName).src = eval(imgName + "on.src");

  }
}

function imgOff(imgName) {
  if (document.getElementById) {
    document.getElementById(imgName).src = eval(imgName + "off.src");
  }
}
// swap images
function di(id,name)
{
  if (document.images)
    document.images[id].src=eval(name+".src");   
}


function sm_jump(objSelect){
if (objSelect.selectedIndex<=0) return false;
var objOpt = objSelect.options[objSelect.selectedIndex];
window.location.href=objOpt.value;
}

