$(document).ready(function(){

    // setup ul.tabs to work as tabs for each div directly under div.panes 
    $("ul.tabs").tabs("div.panes > div");

    $('.full_search_body').toggle();
    $('.full_search_head').click(function() {
        $('.full_search_body').toggle();
        $('.quick_search_body').toggle();
        });
   
    $('.proteincodes').toggle();
    $('.proteincodetoggler').click(function() {
        $('.proteincodes').toggle();
        });
    

    $('.quick_search_head').click(function() {
        $('.quick_search_body').toggle();
        $('.full_search_body').toggle();
        });
        
    $('#otherprots').toggle();
    $('.toggle_otherprots').click(function() {
        $('#otherprots').toggle();
        $('.toggle_otherprots').toggleClass("active")
        });

    });
