function imgSwap(id,img)
{
	var elem = document.getElementById(id);

	var agt = navigator.userAgent.toLowerCase();	
	if (agt.indexOf("msie") != -1)
	{
		elem.src = img;		
	}
	else	
	{
		elem.src = img;		
	}
}



