// JavaScript Document
$(document).ready(function() {
	$("a#single_image").fancybox({
			'titleShow'		: true,
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'overlayOpacity': '0.5',
			'overlayColor'	: '#000'
	});
	
	$("#myvideo").click(function() {
	$.fancybox({
			'padding'		: 0,
			'showCloseButton': 0,
			'titlePosition' : 'over',
			'overlayOpacity': '0.8',
			'overlayColor'	: '#000',
			'transitionIn'	: 'elastic',
			'transitionOut'	: 'elastic',
			'speedIn'		:	300, 
			'speedOut'		:	600, 
			'autoScale'		: false,
			'title'			: this.title,
			'width'			: 640,
			'height'		: 505,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
								'wmode'				: 'window',
								'allowfullscreen'	: 'true'
								}
		});

	return false;
	});

});
