$(document).ready(function(){
  /* pngfix */
  $.ifixpng('/js/img/0.gif');
  $('img[@src$=.png]').each(function() {           
    if ($(this)[0].complete) {                     
       $(this).ifixpng();                           
     } else {                                       
      $(this).load(function(){$(this).ifixpng();});
    }                                              
  })                         


 $('body').bind('flashLoad', function(){
     $('#logo-img').each(function() {
         if ($(this)[0].complete) {                     
           $(this).ifixpng();                           
         } else {                                       
           $(this).load(function(){$(this).ifixpng();});
         }                                             
       });
   });
});