$(document).ready(function(){	

$("ul li:last-child").addClass('last');
	
// Call those functions
scrolltop();
}); 

$(function() {
$('.slideshow a').lightBox();
});

$(document).ready(function(){	
$(".slideshow").easySlider({
auto: true, 
continuous: true,
numeric: true
});
});
 
// Top to magazine scroll
function scrolltop() {
$('a.self').click(
function(){
$.scrollTo( '#page', 500 );
return false;
}
);
}