// behaviours for the the home page

  $(document).ready( function() {
      
    $('#feature-links ul').css({"left" : 200}); // move the links out of view until they load
    
  });

  $(window).load( function() {
    
    setTimeout( function() {
      $('#feature-links ul').animate({"left" : 0}, {duration: 1000, easing: "easeOutQuart"}); // slide the links into view (fancy!)
    },
    500);
    
  });
