$(function(){

  // Draw title
  var $title = $('h1:nth(0)');
  //$('head title').text($title.text());

  // Include stylesheets
  $('head').append('<link rel="stylesheet" href="style.css"/>');

  // Include wrapper around the contents
  var $content = $('div:nth(0)');
  var li = function(url,label) {
    return '<li><a href="'+url+'">'+label+'</a></li>';
  };

  $('body').append(
      '<ul id="menu">'
    + li('last-minute-skin.html','Last Minute Skin')
    + li('growl.html','Gremlin')
    + li('/', 'nicollet.net')
    + '</ul>'
    + '<div id="inner">'
    + '</div>'
    + '<div id="footer">'
    + '&copy; 2009 <a href="/">Victor Nicollet</a>'
    + '</div>');

  $content.appendTo('#inner');
  $title.prependTo('body').attr('id','title');
});
