﻿  jQuery(function($) {
    $('.points li').hide();
    $('area').mouseenter(function() {
      var index = parseInt($(this).attr('alt'));
      $($('.points li').hide().get(index - 1)).show();
      $('.burritostack').css('background-position', "0 -"+(index * 200) + 'px');
    });
  });