// Make Entire Block Element Clickable
// ----------------------
// Finds the <a> element in parent with .classname & redirects the browser location to its href value.
// Remember to style .classname:hover

$(document).ready(function(){
	$('#sa, #id, #sgl, #hfw').click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});
