/* Website Functions
######################################################################################## */

$(function() {

    // Set external links
	
	$('.external_link').click(function() {
        window.open(this.href);
        return false;
	}).attr('title', function() {
        var sTitle = (this.title) ? this.title : this.href;
        return sTitle + " (Opens in a new window)";
    });

});