// Makes the entire div a clickable link
$(function() {
	$('.latestBlogs .upload').click(function() {
		window.location = $(this).find('a:first').attr('href');
	});
});