
$(document).ready(function() {
	$("a.fancybox").fancybox();

	$("a").not('.fancybox').each(function(){
		if ( ((new String($(this).attr('href'))).indexOf('http://') == 0) ||
		     ((new String($(this).attr('href'))).indexOf('https://') == 0) ) {
			$(this).attr('onclick','window.open(this.href,\'_blank\'); return false;');
		}
	});
	
	//close overlay on click
	$("#overlay").click(function() {
     	$(this).css("display","none");

   	});
	
});
