$(document).ready(function() {
	
	// alert('TEST OK');

	// Hide the specified div on load of the page
	// $('#contact_form .bottom').hide(); // Add: element.style {	display:none;}
	$('#contact_form .centre').hide(); // Add: element.style {display:x;} where x is the original display
	$('#less_contact').hide(); // Add: element.style {display:x;} where x is the original display
	// $('#contact_form .bottom').css('border-width','0px'); // Add: element.style {display:x;} where x is the original display
	
	$('#contact_form .bottom').click(function () {
	
		if( $('#contact_form .centre').css('display') == 'none' ) {
	
			$('#more_contact').hide();
			$('#less_contact').show();
			$('#contact_form .centre').slideDown(250); // Add: element.style {display:x;} where x is the original display
			// $('#contact_form .bottom').css('border-width','1px'); // Add: element.style {display:x;} where x is the original display
		}
		
		else{
			// $('#contact_form .bottom').css('border-width','0px'); // Add: element.style {display:x;} where x is the original display
			$('#less_contact').hide();
			$('#contact_form .centre').slideUp(250); // Add: element.style {display:x;} where x is the original display
			$('#more_contact').show();
		}
	});
});
