(function ($, prettyDate) {
  $(document).ready(function () {
    
    /**
     * Homepage slider
     */
     
    var screens = $("#computer .screen"),
      sc_flipScreen = function (index) {
        $(screens).fadeOut();
        $(screens[index]).fadeIn();
      },
      sc_parseTwitterDate = function (text) {
        var newtext = text.replace(/(\+\S+) (.*)/, '$2 $1'),
          date = new Date(Date.parse(newtext)).toJSON();
        date = date.substring(0, date.length - 5);
        date = date + "Z";
        return date; 
      };
    $(screens[0]).fadeIn();
    // initialize scrollable
    $(".scrollable").scrollable({
      circular: true,
      onSeek: function (event, index) {
        sc_flipScreen(index);
      }
    }).navigator({
      navi: '#mantle-dots',
      naviItem: 'li'
    }).autoscroll({ autoplay: true });
  });
}(jQuery, prettyDate)); // Evil global vars here
// woo closure
// z.g.s. 2011 a.d.
