function changeImage(path,src)   {
   a=document.getElementsByTagName("a");
   //alert(a[0].attributes["href"].nodeValue);
   var results = new Array();
   for(i=0;i<a.length;i++) {
		if(isInternetExplorer())	{
			href = "http://";
			winloc = window.location+"";
			//http://www.
			if(winloc.substr(7,4) == "www.")	{
				href += winloc.substr(7,4);
			}
			href +=SERVER_NAME+path;
		}	else	{
			href = path;
         
		}
      
      
      
      //if(a[i].attributes["href"].nodeValue == href && a[i].parentNode.tagName != "H2")  {
         if(a[i].attributes["href"].nodeValue == href)  {
         //alert(path);
         results[results.length] = i;
         /*img = a[i].getElementsByTagName("img");
         if(img.length>0)  {
            img[0].src = path+src;
				
         }*/
      }
   }
   if(results.length>0)   {
      for(i=(results.length-1);i>=0;i--) {
         if(results.length == 1
            || (results.length > 1 && a[results[i]].parentNode.tagName != "H2")
         ) {
            img = a[results[i]].getElementsByTagName("img");
            if(img.length>0)  {
               img[0].src = path+src;
            }
         }
      }
   }
   //alert(path);
   return false;
}

