$('.btnExplore').click(function(event) {
event.preventDefault();
$('#menuExplore').animate({left: '+=197'});
$(this).hide();
});
$('#menuExplore a.close').click(function(event) {
event.preventDefault();
$('#menuExplore').animate({left: '-=197'});
$('.btnExplore').show();
});