		$(document).ready(function() {

			$("a.imagebox").fancybox({
				'overlayShow'	: true,
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic'
			});
			
			$("a.youtube").click(function() {
                 $.fancybox({
	              'overlayShow'			: true,
                  'autoScale'  			: false,
                  'transitionIn'        : 'elastic',
                  'transitionOut'       : 'elastic',
                  'title'               : this.title,
                  'width'               : 680,
                  'height'              : 495,
                  'href'                : this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
                  'type'                : 'swf',    // <--add a comma here
                  'swf'                 : {'allowfullscreen':'true', 'wmode':'transparent'} // <-- flashvars here

                  });
                 return false;

            }); 

		});
