
window.defaultStatus='Rotaract Club of Seattle (seattlerotaract.org)';
function stopErrors(){return true;}
window.onerror=stopErrors;

// jQuery required
$(document).ready(function () {
    // open 'external' links in new window
    $("a.external").click(function(e) {
	e.preventDefault();
	window.open(e.target.href, "external");
    });
});
