﻿$(document).ready(function(){  
    //open in fancybox iframe
    $("a.extLink").fancybox({  
          'width' : 495,  
          'height' : 425,  
          'autoScale' : false,  
          'transitionIn' : 'none',  
          'transitionOut' : 'none',  
          'type' : 'iframe'  
    });  

    //open flash media in fancybox
    $('a.media').click(function () {
        $.fancybox({
            'padding': 0,
            'autoScale': false,
            'transitionIn': 'none',
            'transitionOut': 'none',
            'title': this.title,
            'width': 680,
            'height': 495,
            'href': this.href,
            'type': 'swf',
            'swf': {
                'wmode': 'transparent',
                'allowfullscreen': 'true'
            }
        });
        return false;
    });
 }); 

