jQuery(function ($) {
	$(document).ready(function() {
		$('body').addClass('js');
		
		$('div#content.teaser div.page').each(function() {
			$(this).find('div.entry-content').css('top', $(this).height());
			
			$(this).mouseenter(function() {
				$(this).find('div.entry-content').animate({'top': 0});
			});

			$(this).mouseleave(function() {
				$(this).find('div.entry-content').animate({'top': $(this).height()});
			});
		});
	});
});