$(document).ready(function() {
	$('.spanLink.selfTrigger').click(function() {
		$("html, body").animate({
			scrollTop: $("#selfService").offset().top
		}, 1000);
	});
	$('.spanLink.fullTrigger').click(function() {
		$("html, body").animate({
			scrollTop: $("#fullService").offset().top
		}, 1000);
	});
	//this is for the 'find out how' link
	$('.spanLink.fullDetailsTrigger').click(function() {
		$("html, body").animate({
			scrollTop: $("#fullServiceDetails").offset().top
		}, 1000);
	});


});
