$(document).ready(function(){ 
    if ($('ul.story_list_body li.selected').length != 0) {
        var selected_story=$('ul.story_list_body').find('li.selected').position().top;
        $('#story_selector').animate({'top':selected_story-15});
    }//end if
});
