$(document).ready(function() {
	$(".newsrow").click(function(item) {
		var url = $(this).attr('id');
		document.location = url;
	});
});