var debugMode = false;


$(function init() {
        $(document).ready(function(){
        	
        $('.nav-item').each(function (i) {
            $(this).hover(function () {
                $('.nav-tab').eq(i).stop(true, true).animate({ "bottom" : '0px', opacity: 1},100);
            },
                    function () {
                        $('.nav-tab').stop(true, true).animate({ "bottom" : '-5px', opacity: 0},100);
                    }
                    );
        });
        	
            return false;
        });
});





