$(document).ready(function(){
	 $('h3').click(function(){
		 window.open($(this).parent().children('a').attr('href'), '_self');
	 });
});