 $(document).ready(function() {
  
  //project javascript
  $("div.project div.description").toggle();
  $("div.project div.button").click(function(){
    $(this).siblings().toggle("medium");
  });
  
  $("span.close").click(function(){
    $(this).parent().toggle("medium");
  });

  //clear the value in input when people click them
  $("input, textarea").focus(
   function() {
    // only select if the text has not changed
    if(this.value == this.defaultValue)
    { this.select(); }
   });
   
 });

