// JavaScript Document

$("document").ready(function() {
	//mouseover highlight the boxes on the hs homepage						 
	$("div.featured-program").hover(function() { //"#hshome-content ul li.menu-item"
			$(this).addClass("highlight");						   
	},function () {
			$(this).removeClass("highlight");									   
	});
	
	//make the entire area clickable, uses li id as link
	$("div.featured-program").click(function(e) {
		document.location.href = $(this).attr("id");
		e.preventDefault();					
	});
							 
});