$(document).ready(function(){
	initDefaults();
});

function initDefaults(){
	/*
		Makes all anchors scrollable.
	*/
	$('a[href^=#]').click(function() {
		$.scrollTo( $("a[name=" + $(this).attr('href').substr(1) + "]").offset().top, 750 );
		return false;
	});
	
	/*
		Makes all links with class 'blank' open in a new window
	*/
	$("a.blank").click( function(){
		void(window.open($(this).attr('href'),'',''));
		return false;
	});
}
