// DOM ready
         $(function() {
           
      // Create the dropdown base
      $("<select />").appendTo("nav");
      
      // Create default option "Go to..."
      $("<option />", {
         "selected": "selected",
         "value"   : "",
         "text"    : "Go to..."
      }).appendTo("nav select");
      
      // Populate dropdown with menu items
      $("nav .header-nav a").each(function() {
       var el = $(this);
       $("<option />", {
           "value"   : el.attr("href"),
           "text"    : el.text()
       }).appendTo("nav select");
      });
      
           // To make dropdown actually work
           // To make more unobtrusive: http://css-tricks.com/4064-unobtrusive-page-changer/
      $("nav select").change(function() {
        window.location = $(this).find("option:selected").val();
      });
         
         });
         
         $.getJSON("http://twitter.com/statuses/user_timeline/harryjatkins.json?callback=?", function(data) {
     $("#tweet").html(data[0].text);
});

		$(document).ready(function(){
        $(".tweet").tweet({
            username: "harryjatkins",
            join_text: "auto",
            avatar_size: 40,
            count: 1,
            auto_join_text_default: "I said,", 
            auto_join_text_ed: "I",
            auto_join_text_ing: "I was",
            auto_join_text_reply: "I replied to",
            auto_join_text_url: "I said, ",
            loading_text: "loading tweets..."
        });
    });
