$(document).ready(function() {
	$(".youtube-fancybox").click(function() {
		$.fancybox({
			'autoScale': false,
			'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;
	});
		
	$("a.button-googlemapit").click(function() {
		$.fancybox('<iframe src="' + this.href + '&output=embed" id="gmap-iframe"></iframe><p class="half">&nbsp;</p><div align="center"><a href="' + this.href + '" class="button button-viewongooglemaps"><span>View on Google maps</span></a></div>');
		return false;
	});
});
