// Swap Functionsimagepath = "images/navBtns/";// Preload images - ON	newsOn = new Image();	newsOn.src = imagepath + "news_hot.gif";	aboutusOn = new Image();	aboutusOn.src = imagepath + "aboutus_hot.gif";	indexOn = new Image();	indexOn.src = imagepath + "index_hot.gif";	newtitlesOn = new Image();	newtitlesOn.src = imagepath + "newtitles_hot.gif";	booksOn = new Image();	booksOn.src = imagepath + "books_hot.gif";	orderingOn = new Image();	orderingOn.src = imagepath + "ordering_hot.gif";	submissionsOn = new Image();	submissionsOn.src = imagepath + "submissions_hot.gif";	eventsOn = new Image();	eventsOn.src = imagepath + "events_hot.gif";	//Preload images - OFF	newsOff = new Image();	newsOff.src = imagepath + "news.gif";	aboutusOff = new Image();	aboutusOff.src = imagepath + "aboutus.gif";	indexOff = new Image();	indexOff.src = imagepath + "index.gif";	newtitlesOff = new Image();	newtitlesOff.src = imagepath + "newtitles.gif";	booksOff = new Image();	booksOff.src = imagepath + "books.gif";	orderingOff = new Image();	orderingOff.src = imagepath + "ordering.gif";	submissionsOff = new Image();	submissionsOff.src = imagepath + "submissions.gif";	eventsOff = new Image();	eventsOff.src = imagepath + "events.gif";// Image Rolloversfunction menuSwap(img){	if (document.images) {		document [img].src = eval(img + "On.src");			}}function menuUnSwap(img){    if (document.images) {		document [img].src = eval(img + "Off.src");			}}function deleteConfirm(pathUrl){	if(confirm("Are you sure you want to delete this item?")){		window.location.href=pathUrl;	}}