
$(function(){var current=0;$('#arrowLeft, #arrowRight').bind('click',function(){current=(this.id=='arrowRight')?current+1:current-1;$('#storyContainer').css({'-webkit-transform':'translate3d(-'+(current*100)+'%, 0, 0)'});if(current===0){$('#arrowLeft').addClass('hide');}else{$('#arrowLeft').removeClass('hide');}
if(current==$('#storyContainer > div.story').length-1){$('#arrowRight').addClass('hide');}else{$('#arrowRight').removeClass('hide');}});});
