I think they are ordered by last post date, not first post date. So, if you make a post in the thread that is later than the last post in the other stickies, it should be the first sticky listed. Here is the code that sorts them:
PHP Code:
while ($thissticky = $db->fetch_array($stickies))
{
$stickycount++;
if ($thissticky['lastpost'] >= $lastread AND $thissticky['open'] <> 10)
{
$newthreads++;
}
$stickyids .= ",$thissticky[threadid]";
}