//basic functionality for the home page, goal-based nav boxes.
$(document).ready(function() {
	$('.box')
		.click(function(){
		  window.location=$(this).find('a').attr('href');						 
			return false;
			})
		.hover(function(){ 
			$(this).children('h2').css('text-decoration','underline');			
			}, function(){
				$(this).children('h2').css('text-decoration','none');
				})
		.css('cursor', 'pointer');
}); 