
$(document).ready(function(){

	$(".popup").fancybox({
		transitionIn : 'elastic',
		transitonOut : 'fade'
	});

	$(".youtube").click(function() {
		$.fancybox({
		'transitionIn'	: 'elastic',
		'transitionOut'	: 'fade',
		'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;
	});

	if(location.hash) {
		$(locaiton.hash).click();
	}

});


