// Default JavaScript Functions
$(document).ready(function() {
	// Remove dotted lines around clicked links
	$('a').click(function() {this.blur();});
	// Add onClick event to all anchors containing rel="external" to open link in new window
	$("a[@rel='external']").click(function(){window.open(this.href); return false;});
});