	 // DOM ready
	 $(function() {
	   
      // Create the dropdown base
      $("<select />").appendTo("header nav");
      
      // Create default option "Go to..."
      $("<option />", {
         "selected": "selected",
         "value"   : "",
         "text"    : "Go to..."
      }).appendTo("header nav select");
	  
	  // Create home link
      $("<option />", {
         "value"   : "/",
         "text"    : "Home"
      }).appendTo("header nav select");
      
      // Populate dropdown with menu items
      $("header nav a").each(function() {
       var el = $(this);
       $("<option />", {
           "value"   : el.attr("href"),
           "text"    : el.text()
       }).appendTo("header nav select");
      });
      
	   // To make dropdown actually work
	   // To make more unobtrusive: http://css-tricks.com/4064-unobtrusive-page-changer/
      $("header nav select").change(function() {
        window.location = $(this).find("option:selected").val();
      });
	 
	 });
