$(document).ready(function () {
/* Fancybox call */
	$("a.image").fancybox({
		'speedIn'		:	600, 
		'speedOut'		:	200,
		'hideOnContentClick' : true
	});
/* Fancybox youtube video call */
	$("a.youtube").click(function () {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
				'wmode'				: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});
		return false;
	});
/* Fancybox vimeo video call */
	$("a.vimeo").click(function () {
		$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'			: 640,
			'height'		: 385,
			'href'			: this.href.replace(new RegExp("([0-9])", "i"), 'moogaloop.swf?clip_id=$1'),
			'type'			: 'swf'
		});
		return false;
	});
});
