$(document).ready(function() {	
	
	$('#backdrop').click(function() {
		location.href = "home/" ;
	});
	$('#header').click(function() {
		location.href = "home/" ;
	});
	
	$("a.youtube").fancybox({
		'frameWidth':		480,
		'frameHeight':		385,
		'padding':			0,
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':		300,
		'hideOnContentClick':		false,
		'callbackOnClose': function(){
				parent.location.reload(true);
			}
	});
	
	
	
	$(".vimeo").fancybox({
						 'scrolling'		: 'no',
		'width'		: 418,
			'height'		: 360,
		'padding':			0,
		'zoomSpeedIn':		300, 
		'zoomSpeedOut':		300
	});
	
	
	
$("a.youtube_front2").click(function() {
	$.fancybox({
			'padding'		: 0,
			'autoScale'		: false,
			'transitionIn'	: 'none',
			'transitionOut'	: 'none',
			'title'			: this.title,
			'width'		: 680,
			'height'		: 495,
			'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
			'type'			: 'swf',
			'swf'			: {
			   	 'wmode'		: 'transparent',
				'allowfullscreen'	: 'true'
			}
		});

	return false;
});
	
 
});


