$(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});
                              
                       });
                       
                       
                       
});