$(function() {

	// Rollovers for quad links.
	$('#campus_quad td').hover(
		function() {
			$(this).addClass('mouseover');
		},
		function() {
			$(this).removeClass('mouseover');
		}
	);
	
	// Clickthroughs for quad links - when the quad is clicked,
	// navigate to the href of the first link found in the quad.
	$('#campus_quad td').click(function() {
		window.location = $(this).find('a').eq(0).attr('href');
	});

});