$().ready(function() {
	$('.thumbnail .center').mouseover(function() {
	  $('.text', this).show();
	});

	$('.thumbnail .center').mouseout(function() {
	  $('.text', this).hide();
	});

	$('#pagetop').scrollFollow( {
		speed: 1000,
		offset: 120,
		relativeTo: 'bottom',
		container: 'wrapper'
	} );
});
