$(document).ready(function() {
	$('table tbody tr').click(function() {
		if ($(this).find('a').length) {
			window.location.href = ($(this).find('a').attr('href'));
		}
	}).each(function() {
		if ($(this).find('a').length) $(this).addClass('clickable');
	});
});
