window.addEvent('domready', function() {
	var blocks = document.getElements('.nhplan_back');
	blocks.addEvents({
		'mouseover':function(e) {
			this.setStyle('cursor', 'pointer');
		},
		'mouseout':function(e) {
			this.setStyle('cursor', '');
		},
		'click':function(e) {
			//e.stop();
			var childLink = this.getElement('a');
			window.location = childLink.getProperty('href');
		}
	});
});