$(document).ready(function() {
	$('#footer a.to-top').click(function(){
		$.scrollTo( '#header', 800, {offset:-40});
		return false;
	})

	$('ol.posts li:first-child').find('span.prev-post').remove();
	$('ol.posts li div.post-content img').parent().addClass('p-image');
	
	$('ol.posts li p.cat-comments span.prev-post a').live('click',function(){
		if($(this).parents('li.hentry').parent().attr('id') != ''){
			$.scrollTo($(this).parents('li.hentry').parent().prev(), 800, {offset:-40});
		}else{
			$.scrollTo($(this).parents('li.hentry').prev(), 800, {offset:-40});		
		}
		return false;
	})
	
	if ($.browser.webkit) {
		$('#post-comment div.text-comment').css('margin-top',0);
		$('#post-comment div.text-comment textarea').height(143);
	}

});



