// JavaScript Document

$(document).ready(function() {
var showText='Quote form - click here to extend to quote form';
var hideText='For a short contact form, click here';
$('.readmore').prev().append(' (<a href="#" class="readmore">'+showText+'</a>)');
$('.hide').hide();
$('a.readmore').click(function() {
$(this).html ($(this).html()==hideText ? showText : hideText);
$('.hide').slideToggle('slow');
return false;
});

});
