/* Copyright (C) 2005-2009 Brothers Media */


// HREF TARGET //
$(document).ready( function() {
	$('a[rel="external"]').click( function() {
		window.open( $(this).attr('href') );
		return false;
	});
});
// HREF TARGET END //