$(document).ready(function() {

                       

                       $('#search_zip_link').click(function(event) {
                                  
                                    event.preventDefault();
                                    var this_link = $(this);
                                    $('#city_state_search').fadeOut('slow',function() {
                                    $('#zip_search').insertAfter(this_link).fadeIn('slow');});
                       });

                        $('#search_city_state_link').click(function(event) {
                                  
                                    event.preventDefault();
                                    var this_link = $(this);
                                    $('#zip_search').fadeOut('slow', function() {
                                    $('#city_state_search').insertAfter(this_link).fadeIn('slow');});
                       });
                       
                       $('#bookmark').click(function() {
                              
                                             var page = encodeURI(location.href);
                                             $.get('http://truckingtruth.com/php_includes/jobs.php', {'url':page});
                              
                       });
                       
            // This was originally /php_includes/cdl-test/cdl-test.js
                       
                        $('.Test_answer').toggle(function() {
          
                               
                       $(this).html('&#8863; Answer');
                       $(this).siblings('.Answer_explanation').fadeIn('slow'); },
                       
                       function() {
                       
                        $(this).html('&#8862; Answer');
                        $(this).siblings('.Answer_explanation').fadeOut('slow');  });
                       
                       
                       
});