$(document).ready(function(){
        // Awards DB filtering
          $("a:contains('Awards Database')").click(function(){
          $.cookie('cat_slug',null,{path:'/'});
          $.cookie('awardee_current_affiliation',null,{path:'/'});
          $.cookie('awardee_location',null,{path:'/'});
          $.cookie('awardee_field',null,{path:'/'});
          $.cookie('awardee_year',null,{path:'/'});
          });
          
          // Return link for getting back to either Awards DB or Profiles
          $('a[class="awards-database"]').click(function(){
                    $.cookie('retlink','awards-database',{path:'/'});
          });
          
          $('a[class="awardee-profiles"]').click(function(){
                     $.cookie('retlink','awardee-profiles',{path:'/'})
          });
          
          $('a').click(function(){
                     $.cookie('ref',window.location,{path:'/'})
          });
          
      });

