$(function(){
    $('#nav>li>ul').hide();
    $('#nav>li').click(function(){
        // check that the menu is not currently animated
        if ($('#nav ul:animated').size() == 0) {
            // create a reference to the active element (this)
            // so we don't have to keep creating a jQuery object
            $heading = $(this);
            // create a reference to visible sibling elements
            // so we don't have to keep creating a jQuery object
            $expandedSiblings = $heading.siblings().find('ul:visible');
            if ($expandedSiblings.size() > 0) {
                $expandedSiblings.slideUp(500, function(){
                    $heading.find('ul').slideDown(500);
                });
            }
            else {
                $heading.find('ul').slideDown(1000);
            }
        }
    });
});

$("#FlySelect").change(function(){
jQuery('option:selected', this).each(function(){
//$("#FlyMov").value=this.value;
var mov=this.value;
var flyScreen='<br/><br/><br/><br/><p><div align="center"><object type="application/x-shockwave-flash" data="fly/player_flv_maxi.swf" width="600" height="400"><param name="movie" value="fly/player_flv_maxi.swf" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="flv=http%3A//taolin.myweb.hinet.net/'+mov+'&amp;width=600&amp;height=400&amp;autoplay=1" /></object></div></p>';
$("#fly_win").html(flyScreen);	
});
});

