dropDownToggler
$(".MCDropDownHotSpot").click(function() {
if ($(this).text() == "Show it")
$(this).text("Hide it")
else
$(this).text("Show it");
});
$(".MCToggler").click(function() {
if ($(this).text() == "Show it")
$(this).text("Hide it")
else
$(this).text("Show it");
});