$(document).ready(function(){
	$(".labels img").hover(
		function() { rollover($(this).attr("id")); },
		function() { }
	);
	
	function rollover(id) {
		$(".labels img").each(function() {
			if($(this).attr("id").indexOf(id) >= 0) { // if this is the rollover image
				$(this).attr("src", "/images/explore/label-" + $(this).attr("id") + "-hover.jpg");
				$("#content-" + $(this).attr("id")).show();
			}
			else { // turn off, if not
				$(this).attr("src", "/images/explore/label-" + $(this).attr("id") + ".jpg");
				$("#content-" + $(this).attr("id")).hide();
			}
		});
	}
});