$(document).ready(function() {

    $('#footer_buttons img').hover(function() { // Mouse Over Function
        $('#socialFooterWords').addClass('footerWords');
        $('#socialFooterWords').html(this.alt);
    }, function() { // Mouse Out Function
        $('#socialFooterWords').html('');
        $('#socialFooterWords').removeClass('footerWords');
    });

    // Dynamic login box in header:
    $('#logInDropDown #logIn').click(function(e) {
        $("#dropDownInputs").slideToggle();
        if ($("#dropDownInputs").is(":visible")) {
            $("#logInDropDown #username").focus();
        }
        e.preventDefault()
    });
    $('#logInDropDown #cancelLink').click(function() {
        $("#dropDownInputs").slideUp('fast');
    });
    $('#dropDownInputs').TextfieldPlaceholders();    // requires jquery.placeholder.js

    // Highlight the active nav link, if any:
    (function() {
        var re_match = location.pathname.match(/^\/([\w-]+)\//);
        if(re_match && re_match.length > 1) {
            $('#nav a.' + re_match[1]).addClass('active');
        }
    })();
});

