$(document).ready(function() {
	anchor.init()	
});

// Top
anchor = {
	init : function()  {
		$("a.top").click(function () {	
			elementClick = $(this).attr("href")
			destination = $(elementClick).offset().top - 40;
			$("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination}, 1100 );
		  	return false;
		})
	}
}
