if(!document.all){
    $(document).ready(function() {
        $('a.fancy').fancybox({
            'frameWidth': 800,
            'frameHeight': 350,
            'overlayShow': true,
            'centerOnScroll' : false,
            'overlayOpacity' : 0.7,
            'hideOnContentClick' : false,
            callbackOnClose : function() {
                $('.playerFlashFancy').remove();
            }

        });
          $('.fancy').click(function(){
              if ($('#playerFlash')) {
                  $('#playerFlash').remove();
              }

          })
          $("a.fancy").each(function(){
                this.href = this.href.replace("ie=1","ie=0");
          });
    });
}
