//  Browser check	if (navigator.appName.indexOf('Microsoft') >= 0 && navigator.appVersion.indexOf('3.') >=0) {		okbrowser = false;		}	else {		okbrowser = true;		}	//  Load images	imag = new Array();			imag[0]="images/learn_more_blu.gif"						im = new Array()	if(document.images) {		for (var i = 0; i < imag.length; i++) {			im[i] = new Image();			im[i].src = imag[i];			}		}//  Mouseover functionsfunction aon(s) {	if (okbrowser) {		document.images[s].src= "images/learn_more_blu_on.gif";		}	}function aoff(s) {	if (okbrowser) {		document.images[s].src= "images/learn_more_blu.gif";		}	}		function bon(s) {	if (okbrowser) {		document.images[s].src= "images/learn_more_green_on.gif";		}	}function boff(s) {	if (okbrowser) {		document.images[s].src= "images/learn_more_green.gif";		}	}			function con(s) {	if (okbrowser) {		document.images[s].src= "images/view_gallery_on.gif";		}	}function coff(s) {	if (okbrowser) {		document.images[s].src= "images/view_gallery.gif";		}	}
