/* * When we press the info button the info page appear */ (function ($) { $(document).ready(function(){ $("#acb-infoCircle").click(function(){ $("#acb-infoPage").stop().slideToggle("fast"); }); $("#acb-closeInfo").click(function(){ $("#acb-infoPage").stop().slideToggle("fast"); }); }); })(jQuery);