  $(document).ready(function(){
    $("#troubleshooting").hide();
    $("#trouble").toggle(function() {
      $("#troubleshooting").show();
      $("#troublespan").text('here to hide');
      return false;
    },function() {
      $("#troubleshooting").hide();
      $("#troublespan").text('here to show');
      return false;
    });
    $("#troubleshooting li div").hide();
    $("#troubleshooting li a").addClass("col");
    $("#troubleshooting li a").toggle(function() {
      $(this).parent().find("div").show();
      $(this).removeClass("col");      
      $(this).addClass("exp");
      return false;
    },function() {
      $(this).parent().find("div").hide();
      $(this).removeClass("exp");
      $(this).addClass("col");
      return false;
    });
    $("a[rel^='prettyPhoto']").prettyPhoto({theme:"pp_default", social_tools:false});
  });
