// JavaScript Document

$(document).ready(function () {
							
	$("a[target='_blank']").removeAttr( "target" ).addClass('new-window');
	$(function(){
		$('a.new-window').click(function(){
			window.open(this.href);
			return false;
		});
	});
	
});