var blank = new Image();blank.src = 'blank.gif';//*** Fix PNG Inlinefunction jESAPngFixInline( selector, sizing ){   var sizingMethod = sizing || 'scale';   if( (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32" ) )   {       $( selector ).each       (           function()           {               if( this.tagName != 'img' && this.src.match(/\.png/i) != null )               {                   //*** Get Src                   var src = this.src;                                 //*** Set Width                   if( !this.style.width )                       this.style.width = $(this).width();                     //*** Set Height                   if( !this.style.height )                       this.style.height = $(this).height();                     //*** Replace with Blank image                   this.src = blank.src;                                 //*** Set Filter (display original image)                   this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "',sizingMethod='" + sizingMethod + "')";               }           }       )   }}//*** Fix PNG Css Backgroundfunction jESAPngFixCss( selector, sizing ){   var sizingMethod = sizing || 'scale';   if( (/MSIE ((5\.5)|6)/.test(navigator.userAgent) && navigator.platform == "Win32" ) )   {       $(selector).each       (           function()           {               if( this.tagName != 'img' && this.currentStyle.backgroundImage.match(/\.png/i) != null )               {                   //*** Get Image '"url(...)"'                   var bg = this.currentStyle.backgroundImage;                   //*** Get Src Cleaned from '"url(' and ')"'                   var src = bg.substring( 5, bg.length - 2 );                   //*** Set filter to Background                   this.runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + src + "', sizingMethod='" + sizingMethod + "')";                   //*** Unset Old Background                   this.style.backgroundImage = "url(x.gif)"               }              }       )   }}//****************************//********* FIX PNG **********$(document).ready(   function()   {       //*** Fix Png InLine       jESAPngFixInline( 'img.pngFix' );       //*** Fix Png CSS       jESAPngFixCss( '#footer','crop' );       jESAPngFixCss( '.box_big, .shadow','scale' );    });//****************************