jQuery Drill Down iPod Menu FOUC and Selecting Current page

Your best bet would be to consult the author of plugin since it’s using a custom jQuery plugin script.

how can I prevent showing my menu un styled?

You can add a class of no-display to the elements of the menu that are un styled as the page loads then in css set .no-display {display:none;}Then use jQuery to remove the `no-display’ class when the page is loaded right before it calls the plugin javascript.

jQuery(document).ready(function($) {
    $('#parent-div').removeClass("no-display");
})