jQuery(document).ready(function(){
jQuery('ul.book-list-single li:nth-child(3n)').addClass('second-item');

// hide #back-top first
	jQuery("a#back-top").hide();
	jQuery("a#back-top").prepend('<span></span>');
	// fade in #back-top
	jQuery(function () {
		jQuery(window).scroll(function () {
			if ($(this).scrollTop() > 300) {
				$('a#back-top').fadeIn();
			} else {
				$('a#back-top').fadeOut();
			}
		});

		// scroll body to 0px on click
		jQuery('a#back-top').click(function () {
			jQuery('body,html').animate({
				scrollTop: 0
			}, 800);
			return false;
		});
	});

});


