$(document).ready(function() {
    // init
    $('#nav-account-dropdown').hide();

    // callbacks
    $('li.account').hover(function() {
        $('#nav-account-dropdown').fadeIn('slow');
    }, function() {
        $('#nav-account-dropdown').fadeOut('slow');
    });

    // search
    $('#search-nav-dropdown').hide();
    
    $('input[name=q]').autocomplete({
        source: searchData // searchData is set in base.html
    });

    $('#search-btn').click(function(event) {
        event.preventDefault();

        if($('#search-nav-dropdown').is(':visible')) {
            $('#search-nav-dropdown').fadeOut(500);
        }
        else {
            $('#search-nav-dropdown:hidden').fadeIn(500);
        }
    });

});
