// JavaScript Document
// change links in homepage content blocks to be clickable

$(document).ready(function() {
	$('.block').mouseover (function() {
			
			if($(this).children('.readmore').attr('href'))
				$(this).addClass('overhand');
	});
	$('.block').click(function() {
		if(l = $(this).children('.readmore').attr('href'))
			window.location = l;		
	});
});