/* External Links */
$("a[rel='external']").attr("target", "_blank");

// Lightboxes	
$('.videobox').fancybox({
	'callbackOnClose'   : removeInIE,
	'centerOnScroll'    : true,
	'frameHeight'		: 386, // remember to adjust the css as well
	'frameWidth'		: 720, // remember to adjust the css as well
	'hideOnContentClick': false,
	'overlayOpacity'    : 0.75,
	'padding'           : 0,
	'zoomOpacity'       : true 
});

$('.imagebox').fancybox({
	'centerOnScroll': true,
	'padding'       : 8,
	'overlayShow'   : false 
});

// Remove video callback in IE	
function removeInIE() { $('#video_container').remove(); }
