// image rollover code. function calls every image that has the class "swapImage". 
$(document).ready(function() {
	$.swapImage(".swapImage");
});
// switches background element for left-hand navigation				
$(document).ready(function() {
	$('div.select').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
});
// make entire div clickable to self link
$(document).ready(function() {
	$('div.select').click(function() {
		window.location = $(this).attr("url");
	});
});
//