// JavaScript Document
$(document).ready(function(){
	$('.division .top').click(function(e){
		elementClick = $('body');
		destination = $(elementClick).offset().top;
		$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
		//return false;
	})
})