        // wait for the DOM to be loaded 
        $(document).ready(function() { 
            // bind 'myForm' and provide a simple callback function 
            $('#myForm').ajaxForm(function(r) { 
                if (r != "OK") $("#status-message").html(r);
                else  $("#status-message").html("<p class='thank-you'>Thank you. A member of staff will be in touch shortly</p>");
            }); 
            
			//$("#read-more-body").css('height', $("#read-more-body").height()+100);
			$("#read-more-body").hide();
/*
            $('.readmorelink').click(function(r) 
            { 
		        if($("#read-more-body").is(':visible'))
		        {
		                $("#read-more-body").slideUp(1500);
		                $('html, body').scrollTop(75);
		        } else {	
		                $("#read-more-body").slideDown(1000);             
		        }
            });
*/
            

            
            
        }); 
    
    /**
    * Read more
    */    
	function readMore()
	{		
		if($("#read-more-body").is(':hidden'))
		{

		    $("#read-more-body").slideDown(1000);  
		} else {	
		      		    $("#read-more-body").slideUp(1500);
		    $('html, body').scrollTop(75);         
		}
		
	}
