/*
	Gradual-Highlight Image Script-
	¬ Dynamic Drive (www.dynamicdrive.com)
	For full source code, installation instructions,
	100's more DHTML scripts, and Terms Of
	Use, visit dynamicdrive.com
*/

function high(which2){
	which2.style.cursor='auto';
	clearInterval(highlighting)
	which2.filters.alpha.opacity=100
}

function low(which2){
	which2.style.cursor='hand';
	theobject=which2
	highlighting=setInterval("highlightit(theobject)",50)
}

function highlightit(cur2){
	if (cur2.filters.alpha.opacity>50)
		cur2.filters.alpha.opacity-=10
	else if (window.highlighting)
		clearInterval(highlighting)
}