$(document).ready(function(){
	$("a[rel='fancy']").fancybox();
	$("a.external-link").click(function(event){
		event.preventDefault();
		window.open($(this).attr("href"));
	});
});


