/* Author: 
Lee Allison
Limelight Digital. Sept 2011

To get the title of this page and apply it to the inquiry form
input:pwebcontact_field_1
*/
jQuery(document).ready(function($) {
	$('#accordion').accordion({
		autoheight: false
	});
	
	if ($('#pwebcontact_field_1').length){
		var coursetitle = $('h1.pos-title').text();
		$('.pwebcontact_buttons .button').val('Send Booking Enquiry');
		$('#pwebcontact_field_1').val(coursetitle);
		
	}
});


























