$(document).ready(function(){

	// open wrapped items in a new window	
	$(".openBlank a").click(function(){

		$(this).attr('target','_blank');
		
	});
	
});
