jQuery(document).ready(function() {
  jQuery('ul li:first-child').addClass('first');
  jQuery('ul li:last-child').addClass('last');
  
  jQuery('#branding ul li').wrapInner('<span></span>');
  jQuery('#branding ul li').mouseover(function() {
    jQuery(this).addClass('active');
  }).mouseout(function() {
    jQuery(this).removeClass('active');
  });
  
  jQuery('.button').wrapInner('<span></span>');
});