// Open link in a new window/tab
$(function(){
	$('.news a').click(function(){
		window.open(this.href);
		return false;
	});
});
