
$(document).ready(function(){

	// Open links in new tab for anchors with class "new_tab"
	$("a.new_tab").click(function() {
		window.open(this.href);
		return false;
	});

	// Animated scrolling
	$(".scrollPage").click(function() {
		var elementClicked = $(this).attr("href");
		var destination = $(elementClicked).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 1100 );
		return false;
	});

	//Fancybox for images
	$(".certificates a").fancybox({
		'titleShow'     : false,
		'centerOnScroll': true,
		'overlayOpacity': 0.4,
		'overlayColor': "#000",
	});
});

