//******************* SCROLL CODE *************////////////////////////////////////
jQuery(function( $ ){
	//book1, shows how to scroll the whole window
	if($('#book1_link')){
		$('#book1_link').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
			$.scrollTo( this.hash, 800 );
			$(this.hash).find('book1').text( this.title );
			return false;
		});
	}
	
	if($('#book2_link')){
		$('#book2_link').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
			$.scrollTo( this.hash, 800 );
			$(this.hash).find('book2').text( this.title );
			return false;
		});
	}
	
	if($('#top_link')){
		$('#top_link').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
			$.scrollTo( this.hash, 800 );
			$(this.hash).find('top').text( this.title );
			return false;
		});
	}
	
	if($('#top_link2')){
		$('#top_link2').click(function(){//$.scrollTo works EXACTLY the same way, but scrolls the whole screen
			$.scrollTo( this.hash, 800 );
			$(this.hash).find('top2').text( this.title );
			return false;
		});
	}

});
//******************* SCROLL CODE *************////////////////////////////////////
