Code
<ul class="fairyMenu bottom" >
<li>Тест 1</li>
<li>Тест 2</li>
<li>Тест 3</li>
</ul>
<style type="text/css">
.fairyMenu li{
display:inline;
cursor:pointer;
margin:30px;
}
</style>
Обратите внимание на class="fairyMenu [color=orange]bottom[/color]"
Здесь [color=orange]bottom[/color] - сфера снизу, [color=orange]top[/color] - сверху
<script language="javascript" >
jQuery(function(){
$('.top').agFairy({position:'top'});
$('.bottom').agFairy({position:'bottom',timeRounding:2000,selectedElement:2});
});
</script>