Scrollto = function(postlink_id,elt_id){
	var pl = getCustomTag(postlink_id);
	var yud = YAHOO.util.Dom;
	var yus = YAHOO.util.Scroll;
	
	if(pl){
		pl.addPostDispatch(function(){
			var element = jQuery("#" + elt_id);
			// var element = yud.get(elt_id);
			if(element.length == 0){
				jQuery('html, body').scrollTop(0);
			}else{
				var position = jQuery(element[0]).position();
				jQuery('html, body').scrollTop(position.top - 10);
				// jQuery('html, body').animate({scrollTop:position.top - 10}, 'slow');
			}
		})
	}
}
