//Javascript functions for AESA site presentation

// Toggle the Nav Collections Menus
$(document).ready(function(){

    $("#collection_bar").css("display","block");
    
    $("#collection_bar").hide();
    
    $("#nav-collections").mouseover(function(event){
        $('#collection_bar').animate({
        opacity: 1,
        height: 'toggle'
      }, 300, function() {
        // Animation complete.
        });
    
        // Stop the link click from doing its normal thing
        event.preventDefault();
        });




});
   
