// Rollover code.//Script written by Andy Britcliffeif (document.images) {        var imageCache = new Array();        var allCacheCalls = 0;        var tempImage = new Image();        var debug = 0;}function change(img,isrc) {	if (document.layers){	document.layers["contentarea"].document.images[img].src = isrc;	} else {	document.images[img].src = isrc;	}}function cache(name) {        if (document.images) {                var current = imageCache.length;                imageCache[current] = new Image();                imageCache[current].src = name;        }}/**Cache list in each document**/
