$(document).ready(function() {

	var scrollTop 	= 0;
	var mouseY		= 0;

	$("div.entry p.close").hide();
	$("div.entry p.more").click(function(event){
		
		scrollTop 	= $(window).scrollTop();
		mouseY		= event.clientY;
	
		$(this).prevAll("div.entrymore").children("p:first").css("marginTop", "0");
		$(this).prevAll("div.entrymore:first").slideDown();
		$(this).hide();
		$(this).parent().children("p.close").show();
	});
	$("div.entry p.close").click(function(event){
		$(this).prevAll("div.entrymore").children("p:first").css("marginTop", "0");
		$(this).parent().children("div.entrymore:first").slideUp("",function(){
		
			$(this).hide();
			$(this).parent().children("p.close").hide();
			$(this).parent().children("p.more").show();
			
			//$(window).scrollTop(scrollTop);
		});
		
		var tempY = mouseY - event.clientY;
		
		$('html,body').stop().animate({ scrollTop: scrollTop + tempY }, 400, 'swing');
	});
});

