// JavaScript Document

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