$(document).ready(function() {
	$(".rollover-content").hide();
	$(".rollover-link").each(function() {
		$(this).css("cursor","pointer").mouseover(function() {
			theID=$(this).attr("id");
			theID=theID.split("-");
			theID=theID[0];
			$(".rollover-content").each(function() {
				checkID=$(this).attr("id");
				checkID=checkID.split("-");
				checkID=checkID[0];
				if(checkID!=theID) {
					$(this).slideUp();
				}
			});
			$("#"+theID+"-content").slideDown();
		});
	});
});