var TellAFriend = {}

TellAFriend.MouseOver = function(sender,rsCode,imgPath,imgName){ 
   document.getElementById("img"+rsCode).src =  imgPath+imgName;
   //document.getElementById("title"+rsCode).style.color =  "#9d9d9d";  
   //document.getElementById("title"+rsCode).style.textDecoration =  "none";  
   document.getElementById(sender.id).style.cursor = 'pointer'; 
}

TellAFriend.MouseOut = function(sender,rsCode,imgPath,imgName){
    document.getElementById("img"+rsCode).src =  imgPath+imgName;
   //document.getElementById("title"+rsCode).style.color =  "#ffffff";  
   //document.getElementById("title"+rsCode).style.textDecoration =  "none";  
   document.getElementById(sender.id).style.cursor = 'arrow'; 
}