/*
 * Base JavaScript Files to handle common tasks
 */


// add _blank to any link with class="new_window" 
$(document).ready(function() { 
	$('a.new_window').click(function() {
		this.target = "_blank";
	});
});
/* */
