/* 
 * jQuery SuckerFish menu animation.
 *
 * @author Roman Syrchin <roman.syrchin@gmail.com>
 * @link 
 * @copyright Copyright &copy; 2010-2011 
 * @license 
 * @version $Id:  $
 * 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

jQuery(function($) {

    $('#navibar li ul').css({
        display: 'none',
        left: 'auto'
    });

    $('#navibar li').hover(function() {
        $(this).addClass('inwait');
        setTimeout(function() {
            $('.inwait')
                .find('ul')
                .stop(true,true)
                .slideDown('slow');
            $('.inwait').removeClass('inwait');
        }, 700);
    }, function() {
       $(this)
        .find('ul')
        .stop(true,true)
        .fadeOut('slow');
       $('.inwait').removeClass('inwait');
    });

});


