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

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