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

}
