<!--

// BEGIN ROLLOVERS //////////////////////////////////////
// image rollover script
// note: this script only works on DIVs with absolute positioning + non-DIVs
var selectedimage = "";
function ChangeImage(image_name, file_name, absolute_div_id) {
if (image_name == selectedimage)
return;
	if(document.images) {
		if(document.all || absolute_div_id == "")
			document.images[image_name].src = file_name;
		else if(document.layers && absolute_div_id != "")
			eval("window.document." + absolute_div_id + ".document.images[image_name].src = file_name");
	}
}
// END ROLLOVERS //////////////////////////////////////


//-->
