$(document).ready(function() {
	
	/*$(".bodyy .post img").each(function () {
		var oheight = $(this).attr("height");
		var owidth = $(this).attr("width");
		if($(this).width()>644) {
			$(this).width(644);
			$(this).height(oheight*644/owidth);
		}
	});
	$(".story .post img").each(function () {
		var oheight = $(this).attr("height");
		var owidth = $(this).attr("width");
		if($(this).width()>950) {
			$(this).width(950);
			$(this).height(oheight*950/owidth);
		}
	});*/
	//$('#sidebar-container').css({'top' : '98%'});
	$('#sidebar-container').animate({top: "83%"}, 1000).animate({top: "98%"}, 750);
	$("#content img").lazyload();
	$('#sidebar-toggle').toggle(
		function() {
			$('#sidebar-container').animate({top: "50%"}, 1500);
			$('#sidebar-toggle').empty().html("Less");
		},
		function() {
			$('#sidebar-container').animate({top: "98%"}, 1000);
			$('#sidebar-toggle').empty().html("More");
	});
	
	//Twitter Click
	$('#twitter-module').addClass('clickable');
	$('#twitter-module').click(function() {
		window.location = $('#twitter-module a:last').attr("href");

	});
	$('#sidebar').jScrollPane({scrollbarWidth:15, scrollbarMargin:10, showArrows:true});
	
	
	
	/*$('#about p:not("#about p:eq(0)")').slideUp();	
	$('#about').append('<a href="#" id="read-more">Read More</a>');
	$('#read-more').click(function() {
		$('#about p:not("#about p:eq(0)")').slideToggle();
		$('#read-more').text($('#read-more').text() == 'Read More' ? 'Read Less' : 'Read More');
	});*/
});