// JavaScript Document

$(document).ready(function() {
		$('#youtubelink').click(function() {
		$.fancybox({
				'padding'		: 0,
				'autoScale'		: false,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none',
				'title'			: this.title,
				'width'		: 600,
				'height'		: 370,
				'href'			: 'http://www.youtube.com/v/QqY8q9zAOCg?autoplay=1',
				'type'			: 'swf',
				'swf'			: {
					 'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
});
