// JavaScript Document

jQuery(document).ready(function() {
    if(jQuery.browser.msie)
    {
      var $imgs = jQuery("img.aligncenter");
      $imgs.each(function(index) {
          var $cloned = jQuery(this).clone();
          var $cloned2 = jQuery(this).clone().addClass("img-shadow");                    
          jQuery(this).replaceWith( jQuery("<div></div>").addClass("w-shadow").css({ width:jQuery(this).width()+6,height:jQuery(this).height()+6 }).append($cloned).append($cloned2) );
          
          
      });
    }          
});

