jQuery(document).ready(function(){
	// open new window
	$("a._blank").click(function(){
		window.open(this.href,'_blank');
		return false;
	});
});

