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