function initbook() {
  $('.product div').hide();
  $('.product li a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('div')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('div')) && (!checkElement.is(':visible'))) {
        $('.product div:visible').slideUp('normal');
        checkElement.slideDown('normal');
        $('.info').fadeOut(500);
        return false;
        }
      }
    );
  }
$(document).ready(function() {initbook();});








function scrollontop() {

                $('.backtotop').click(
                function(){	
                        $('html, body').animate({scrollTop:0}, 300);
                        }
                     );
                     
                  }
$(document).ready(function() {scrollontop();});

