/*
 * control.js
 * 
 * Author: James Brumond
 * Copyright 2010 James Brumond
 * All Rights Reserved
 */

(function(window, $) {

$(function() {

	$('a[rel~="external"]').each(function() {
		this.target = '_blank';
	});

});

}(window, jQuery));

