$(document).ready(function() {
	$(".highlightLink").click(function() {
		$.fancybox({
				'transitionIn'	: 'elastic',
				'transitionOut'	: 'elastic',
				'width'		: 640,
				'height'		: 385,
				'href'			: this.href.replace(new RegExp("watch\\?v=", "i"), 'v/'),
				'type'			: 'swf',
				'swf'			: {
					 'wmode'		: 'transparent',
					'allowfullscreen'	: 'true'
				}
			});
	
		return false;
	});
	$('.CollapsiblePanelTab').hover(
	function() {
		$(this).css('cursor', 'pointer');
	},
	function () {
		$(this).css('cursor', 'default');
	});
	
	// These Make the Links FancyBox-ified
	$("#iframe, #iframeUsed, #iframe2").fancybox({
		'width'				: 945,
		'height'			: 600,
		'autoScale'			: false,
		'transitionIn'		: 'elastic',
		'transitionOut'		: 'elastic',
		'type'				: 'iframe',
		'scrolling' : 'yes'
	});
});

