$(document).ready(function() {
	$(".rollover").hover(function () {
		$(".display").hide();  // Hide all the big divs
		$(".rollover").removeClass("selected");  // Remove selected class from the rollovers
		$("#"+this.id.replace("rollover","display")).show(); // Show the current big div
		$(this).addClass("selected"); // Highlight rolled over rollover
	});

	$(".rollover2").hover(function () {
		$(".display2").hide();  // Hide all the big divs
		$(".rollover2").removeClass("selected");  // Remove selected class from the rollovers
		$("#"+this.id.replace("rollover2","display2")).show(); // Show the current big div
		$(this).addClass("selected"); // Highlight rolled over rollover
	});

	$(".rollover3").hover(function () {
		$(".display3").hide();  // Hide all the big divs
		$(".rollover3").removeClass("selected");  // Remove selected class from the rollovers
		$("#"+this.id.replace("rollover3","display3")).show(); // Show the current big div
		$(this).addClass("selected"); // Highlight rolled over rollover
	});
});

