/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


$(document).ready(function () {

    $('#nav ul').each(function(index){
        if($('li:nth-child(1)', this).text()!="")
            $(this).parent().addClass('down');
    });

    $('#nav li').hover(
        function () {
            //show its submenu
            if($('li', this).text()!="")
            {
                $('ul', this).slideDown(100);
                $('ul', this).offsetParent().removeClass('down');
                $('ul', this).offsetParent().addClass('up');

            }
        },
        function () {
            //hide its submenu
            if($('li', this).text()!="")
            {
                $('ul', this).slideUp(100);
                $('ul', this).offsetParent().removeClass('up');
                $('ul', this).offsetParent().addClass('down');
            }
        }
    );

//    $('#mycarousel').jcarousel();

});


