function flash_no_border()
{
  if (navigator.appName == "Microsoft Internet Explorer")
  {  
     flash_objects = document.getElementsByTagName("object");
 
     for (var i=0; i<flash_objects.length; i++) {
       flash_objects[i].outerHTML = flash_objects[i].outerHTML;
     }
  }
}

$(document).ready(function(){

$(".JQueryImagePopup").hover(
      function () {
        $(this).find("img").stop().animate({height: "110", width: "286", top: "-9", left: "-25"}, 250);
      }, 
      function () {
        $(this).find("img").stop().animate({height: "91", width: "236", top: "0", left: "0"}, 250);
      }
    );

}); //ready 