jQuery(document).ready(function($) {
  $("#nav").superfish({
    delay: 500,
    speed: 'fast',
    autoArrows: false,
    dropShadows: false
  });
  
  /* http://jquery.malsup.com/cycle/options.html */
  $('div#home-heros').cycle({
    fx:'fade',
    speed: 'slow',
    timeout: 8000
  });
  
  $('li#nav-store a').attr('target','_blank');
});

