function loadStory(id,direction){

	//jQuery("#story_"+id).html("<img src=\"img/ajax-loader_blue.gif\" alt=\"loading\" style=\"margin:10px\" />");
	jQuery.post("../widgets/news/load_story.php", {story_id:id,dir:direction}, function(data){
		jQuery("#story_"+id).html(data);
	});
}
