$(function(){
	$("#viewall a").toggle(function(){
		$(this).toggleClass("on").html("<strong>Hide Hotspots</strong>");
	    $("#hotspots").show();
		return false;
	}, function(){
		$(this).toggleClass("on").html("<strong>Show Hotspots</strong> - Place cursor over hotspots to learn more about this product");
	    $("#hotspots").hide();
	    return false;
	});
	$("#hotspots a").each(function(){
		this.description = $(this).attr("title");
		$(this).removeAttr("title");
	}).hover(function(){
		$("#description").html(this.description);
	}, function(){
	}).click(function(){
	    return false;
	}).mouseout(function(){
		$("#description").html($("#origDesc").html());
		return false;
	});
});