﻿$(document).ready(function() {                                	    
    
    $(".NavSearchList li a").each(function(i){        
        $(this).click(function(){                        
            $("#selectSource").html($(this).text() + " <small>▼</small>");             
            $("#quickSearchSouce").hide();    
            // save value (id of anchor) to hidden field            
            $(".NavSearchContent").next().attr("value", $(this).attr("id"));
        });
    });    
    
    // add click handler for quicksearch
    $("#selectSource").bind("click", function(e){
        $("#quickSearchSouce").toggle();
        e.stopPropagation(); // Stops the following click function from being executed
        $(document).one("click", function(f) {
            $("#quickSearchSouce").hide();
        });
    });
              
});