/* 
 * Emulates the target attribute
 */
$(document).ready(function() {
	$('a.open-in-new-window').attr('target', '_blank');
        $('a.pdf').attr('target', '_blank');
});




