var _mem = localStorage;
$(function() {
var itm = $(".wrapper:first").attr('id'),
btn = $(".btn"),
idx = !!_mem['items'] && JSON.parse(_mem['items']) || {},
a = $(".block1 a").on("click", function() {
a.not($(this).addClass("eps")).removeClass("eps");
$(".eps").parent().css( "display", "block");
idx[itm] = a.index(this);
_mem['items'] = JSON.stringify(idx);
});
if(idx) a.eq(idx[itm]).trigger('click');
});