/*
why O why do the browsers not have a common standard?

And for once it's not IE breaking the rules, Mozilla
is just as guilty!
*/

function high(which2){
	theobject=which2
	if (navigator.appName.indexOf("Netscape")!=-1&&parseInt(navigator.appVersion)>=5) { // Netscape Version
		theobject.style.MozOpacity = 1
	} else if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4) { // IE Version
		highlighting=setInterval("highlightit(theobject)",30)
		}
	}

function qhigh(which2) {
	theobject=which2
	if (navigator.appName.indexOf("Netscape")!=-1&&parseInt(navigator.appVersion)>=5) { // Netscape Version
		theobject.style.MozOpacity = 1
	} else if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4) { // IE Version
		theobject.filters.alpha.opacity=100
		}
	}	
	
function low(which2){
	if (navigator.appName.indexOf("Netscape")!=-1&&parseInt(navigator.appVersion)>=5) { // Netscape Version
		which2.style.MozOpacity=0.4
	} else if (navigator.appName.indexOf("Microsoft")!=-1&&parseInt(navigator.appVersion)>=4) { // IE Version
		which2.filters.alpha.opacity=40
		}
	}

function highlightit(cur2){
		// This is the time section for the fade in, only used by IE
		if (cur2.filters.alpha.opacity<100)
			cur2.filters.alpha.opacity+=5
		else if (window.highlighting)
			clearInterval(highlighting)
	}
