$(document).ready(function() {
    $("a.screenshot").fancybox({
      'titlePosition'       : 'inside',
      'transitionIn'        : 'none',
      'transitionOut'       : 'none'
      });

    $("a.screencast").click(function() {
      $.fancybox({
        'titlePosition' : 'inside',
        'transitionIn'  : 'none',
        'transitionOut' : 'none',
        'title'         : this.title,
        'autoScale'	    : false,
        'width'	    	: 800,
        'height'		: 600,
        'href'			: '/js/player_flv.swf', 
        'type'			: 'swf',
        'swf'			: {
        'FlashVars'       : "flv=" + this.href + "&amp;playercolor=415C84&amp;bgcolor2=415C84&amp;bgcolor1=7C9CD1&amp;title=Playing&amp;autoplay=1&amp;autoload=1&amp;width=800&amp;height=600&amp;showtime=1"
        }
        });

      return false;
      });
});

