$(document).ready(function(){	

$("ul li:last-child").addClass('last');
$("ul li:first-child").addClass('first');
$("section ol li:first-child article").addClass('first');
$("section ol li:last-child article").addClass('last');
$("section > article:first-child").addClass('first');
$("section > article:last-child").addClass('last');
	
// Call those functions
scrolltop();
}); 
 
// Top of page scroll
function scrolltop() {
$('a[href="#ftcf-org-uk"]').click(
function(){
$.scrollTo( '#ftcf-org-uk', 500 );
return false;
});
}


