﻿function StylizeGreetings(strid)
{
   var cntrl = document.getElementById(strid);
   if(cntrl != null)
   {
      var arrItems = cntrl.getElementsByTagName("img");
      for(i = 0; i < arrItems.length; i++)
      {
         arrItems[i].onmouseover = function() {
            this.style.border = "1px solid #fff";
         }
         arrItems[i].onmouseout = function() {
            this.style.border = "1px solid #333";
         }
      }
   } 
}