// load links marked with rel="_blank" in a new tab or window
        $(document).ready(function(){
	    $('A[rel="_blank"]').click(function(){
	        window.open($(this).attr('href'));
	        return false;
	    });
	});
