$(function() {
    $('.smenu-closeup')
        //.click(function() {
        //    $(this).parent().find('ul').slideToggle('normal');
        //})
        .parent()
            .not('.opened')
            .find('ul')
                .hide();
    
    $('.small-input').find('input')
        .focus(function() {
            (this.value == $(this).attr('alt')) && $(this).removeClass('empty').val('');
        })
        .blur(function() {
            ($.trim(this.value) == '') && $(this).addClass('empty').val( $(this).attr('alt') );
        })
        .blur();
    
    $('#slider').nivoSlider({
        //effect: 'fade',
        pauseTime: 4000,
        directionNav: false
    });
});
