// JavaScript Document

$(document).ready(function() {

 $("a.youtube").click(function() {
                    $.fancybox({
			'padding'		: 0,
			'autoScale'		: true,
			'transitionIn'	: 'fade',
			'transitionOut'	: 'fade',
			'speedIn'		:	600, 
			'speedOut'		:	600, 
			'title'			: this.title,
			'titlePosition' : 'outside',
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
                    });
                   return false;
        });
      });
