function swapimage(id,image,txt,file,width)
{
	document.getElementById(id).innerHTML='<img src="'+image+'" border="0" height="44" onmouseout="swapout(\''+ id +'\',\''+image+'\',\''+txt+'\',\''+ file +'\',\''+ width +'\')" onclick="window.location.href=\''+ file +'\'">';
}

function swapout(id,image,text,file,width)
{
	document.getElementById(id).innerHTML='<div style="float:left; color:#666666; padding-top:12px; width:'+ width +'px; height:32px; font-size:12px; font-family:Verdana, Arial, Helvetica, sans-serif;" align="center" onmouseover="swapimage(\''+ id +'\',\''+ image +'\',\''+ text +'\',\''+ file +'\',\''+ width +'\')">'+ text +'</div>';
}

