//alert('hi');
$(document).ready(function(){
$(".animation li h2 a").removeAttr('href').css('cursor','pointer');

$(".animation li").bind('click',function(){
  $(".animation li").filter(".active").removeClass('active');
  $(this).addClass('active');
});

$(".presentation-box .previous").removeAttr('href').css('cursor','pointer').click(function(){
   $(".animation li").filter('.active').prev('li').addClass('active').next('li').removeClass('active');
});

$(".presentation-box .next").removeAttr('href').css('cursor','pointer').click(function(){
   $(".animation li").filter('.active').next('li').addClass('active').prev('li').removeClass('active');
});

});