var post;function quickEdit(p,f,button) {	post = p;	url = "/quickedit.php?p="+p+"&save="+f;
	if( f == 0 ) {		$.get(url, function( data ) {			$('#post'+post).html( data );		});	}	else {		if( button < 2 ) {			$.post(url, $('#quickedit').serialize()+'&save=1&write='+button, function( data ) {				$('#post'+post).html( data );				var curry = typeof window.pageYOffset != 'undefined' ? window.pageYOffset : document.documentElement.scrollTop;				var offset = $('#post'+post).offset();				if( curry > offset.top ) {					window.scroll(0, offset.top);				}			});		}	}}
function anchor( p ) {	var offset = $('#pt'+p).offset();	window.scroll(0, offset.top);}

