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

$(document).ready(function() { 

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

});
