//imageMouseover.js
if (document.images) 
{
	// Left Nav
	send_off=new Image;send_off.src='/images/send-btn-off.gif';
	send_on=new Image;send_on.src='/images/send-btn-on.gif';
	
	go_off=new Image;go_off.src='/images/go-btn-off.gif';
	go_on=new Image;go_on.src='/images/go-btn-on.gif';
	
}

function imageSwap(location,imageName){
	var imageObj = document.getElementById(location);
	if ((imageObj.tagName == 'SPAN') && (document.images)) 
	{
		imageObj.filters.item("DXImageTransform.Microsoft.AlphaImageLoader").src = eval(imageName+'.src');
		applyTransition(imageObj);
	}
	else if((imageObj.tagName == 'IMG') && (document.images))
	{
		document.images[location].src=eval(imageName+'.src');
	}
}

function applyTransition (oImg){
	oImg.filters(0).Apply();
	oImg.style.visibility = "visible";
	oImg.filters(0).Play();
}