Example Code
jQuery("#radial_container").radmenu({
listClass: 'list',
itemClass: 'item',
radius: 100,
animSpeed:400,
centerX: 30,
centerY: 100,
selectEvent: "click",
onSelect: function($selected){
alert("you clicked on .. " + $selected.index());
},
rotate: true, angleOffset: 0,
onShow: function($menuitems){
$menuitems.each(function(i){
var $this = jQuery(this);
setTimeout(function(){
$this.fadeIn(500);
},i*100);
});
}
});