// This makes the entire block clickable.
// Feel free to add additional elements, such as div.clickable, etc.
// Last Edited: Josh Thomas 4-29-09

$(document).ready(function(){

	$(".clickable li").click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});
