$(document).ready(function(){
  //hide all descriptions
  $(".inStoreDesc").hide();

  //toggle showing the descriptions
  $(".inStore").click(function() {
    if($(this).next(".inStoreDesc").is(":hidden")) {
      $(this).css({"clear":"both"});
    } else {
      $(this).css({"clear":"none"});
    }
    $(this).next(".inStoreDesc").slideToggle(500);
    return false;
  });
});