$(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();
scrollcomments();
}); 
 
// Top of page scroll
function scrolltop() {
$('a[href="#page"]').click(
function(){
$.scrollTo( '#page', 500 );
return false;
}
);
}

// comments scroll
function scrollcomments() {
$('a[href="#comments"]').click(
function(){
$.scrollTo( '#comments', 500 );
return false;
}
);
}

