(function($){

   $(document).ready(function(){
   
      $('a.read_more').click(function(e){
         e.preventDefault();
         var id = $(this).attr('href');
         
         if($(this).text() == "Read More"){
            $(this).text('Close');
         } else {
            $(this).text('Read More');
         }
         
         $(this).toggleClass('expanded');
         $(id).slideToggle('slow');
         $('img.hide', id).fadeIn('slow');
      });
      
      $('footer .location').hover(function(){
         $('h4',this).css({'color':'#8F2833'});
         $('p',this).css({'color':'#8F2833'});
      },function(){
         $('h4',this).css({'color':'#745948'});
         $('p',this).css({'color':'#745948'});
      });
      
      $('footer .location').click(function(){
         window.location = "/contact/";
      });
   
   });

})(jQuery);
