$j(function()
{
	$j('.mod_detail_item').each(function()
	{
		var item = $j(this);
		var readMore = item.find('.leesmeer');
		var href =  readMore.find('a').attr('href');
		readMore.remove();
		item.click(function()
		{
			window.location = href;
		});
	})
	// Allow the edit button to be clickable.
	.find('.message > h5 > a').click(function(e)
	{
		e.preventDefault();
		e.stopPropagation();
	});
});
