jQuery(document).ready(function(){
	
	//Add jump to top
	jQuery(".managementsection").append('<a href="#wrapper" class="backtotop">Back to top</a>');				

	//Management LI hover function
	jQuery('ul.keyservices li').hover(function () {
		jQuery(this).addClass('hovered');
	},function(){
		jQuery(this).removeClass('hovered');
	});
	jQuery('ul.keyservices li').click(function () {
		var source = jQuery(this).find('.readmore').attr("href");
		var elementClicked = source;
   		var destination = jQuery(elementClicked).offset().top;
   		jQuery("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
   		return false;

	});

	//Scroll the page
	jQuery('.readmore, .backtotop, .hovered').click(function() {
   		var elementClicked = jQuery(this).attr("href");
   		var destination = jQuery(elementClicked).offset().top;
   		jQuery("html:not(:animated),body:not(:animated)").animate({ scrollTop: destination-20}, 500 );
   		return false;
	});

});
