//scripts by will(@spanner.org)
// feel free to borrow.

var rollOvers = "nope";
var app = navigator.appName;"maroon"
var version = Math.round(parseFloat(navigator.appVersion) * 1000);
	//thanks bill
	
 
if(app == "Netscape"){
	if (version >= 3000) {
		rollOvers="yup";
	}  
}  

// preload universal images:
if(rollOvers == "yup") {

	film_off = new Image(65,16);
	film_off.src = "/mclibel/images/front/film_off.gif";
	film_on = new Image(65,16);
	film_on.src = "/mclibel/images/front/film_on.gif";

	storyboard_off = new Image(65,16);
	storyboard_off.src = "/mclibel/images/front/storyboard_off.gif";
	storyboard_on = new Image(65,16);
	storyboard_on.src = "/mclibel/images/front/storyboard_on.gif";

	reviews_off = new Image(65,16);
	reviews_off.src = "/mclibel/images/front/reviews_off.gif";
	reviews_on = new Image(65,16);
	reviews_on.src = "/mclibel/images/front/reviews_on.gif";

	making_off = new Image(65,16);
	making_off.src = "/mclibel/images/front/making_off.gif";
	making_on = new Image(65,16);
	making_on.src = "/mclibel/images/front/making_on.gif";

	distribution_off = new Image(65,16);
	distribution_off.src = "/mclibel/images/front/distribution_off.gif";
	distribution_on = new Image(65,16);
	distribution_on.src = "/mclibel/images/front/distribution_on.gif";

	contacts_off = new Image(65,16);
	contacts_off.src = "/mclibel/images/front/contacts_off.gif";
	contacts_on = new Image(65,16);
	contacts_on.src = "/mclibel/images/front/contacts_on.gif";

	mcl_side_off = new Image(36,144);
	mcl_side_off.src = "/mclibel/images/front/mcl_side_off.gif";
	mcl_side_on = new Image(36,144);
	mcl_side_on.src = "/mclibel/images/front/mcl_side_on.gif";
}

function rollOver(imgDocID,imgObjName) {
	if (rollOvers == "yup") {
		document.images[imgDocID].src = eval(imgObjName + ".src");
	}
}
