<!--
/*
   Images mouseOver & Preload v1.2
   © 2001 Developed by Alain Hertenstein
   You can use this script as long as you credit me in your web page, thanks.
*/
pathImages = "/images"
function act(Name) {if (Name != selected) eval ("document."+Name+".src='"+pathImages+"/UBar_"+Name+"_on.jpg'");}
function inact(Name) {if (Name != selected) eval ("document."+Name+".src='"+pathImages+"/UBar_"+Name+".jpg'");}

if (document.images) {
	imagesArray = new Array()
	imagesList = new Array(
		"UBar_home_on.jpg",
		"UBar_whoami_on.jpg",
		"UBar_projects_on.jpg",
		"UBar_musics_on.jpg",
		"UBar_equipment_on.jpg",
		"UBar_guestbook_on.jpg",
		"UBar_newsletter_on.jpg",
		"UBar_links_on.jpg",
		"UBar_contact_on.jpg"
	)
	for (i=0; i<imagesList.length; i++) {
		imagesArray[i]=new Image();
		imagesArray[i].src = pathImages+"/"+imagesList[i];
	}
}
//-->
