// function respondToClick(item) {
//    //Which link are we working with?
//   tagClass = item.id;
//   alert(tagClass)
// 
//   //Find the div(s) with a matching class
//   var hiddenContent = $('.' + tagClass);
// 
//   //Show it if it's hidden and hide it if it's shown
//   if (hiddenContent.style.display == "none") {
//     hiddenContent.show();
//   } else {
//     hiddenContent.hide();
//   }
// 
//   Event.stop(event);
// }
