$(document).ready(function()
	{
	
		//This adds the click event to your object and tells it where to go
		$('.clickable').click(function(e) {
			window.location=$(this).find("a").attr("href");
		});
		
		
		// call-to-action enquiry forms	
		$("#enquiryform-link").click(function (e) {
			$("#enquiryform").slideToggle();
			$("#enquiryform-link").toggleClass('clicked');
	
			// Prevent page jump on click
			e.preventDefault();
		});
		
		if ($("#enquiryform .error").length > 0) {
			$("#enquiryform").show();
			$("#enquiryform-link").toggleClass('clicked');
		};
	
	
		$('.demo-show h2').click(function(e) {
			$(this).find("+ div").slideToggle();
			
			// Prevent page jump on click
			e.preventDefault();
		})
		// show hide		
		//	$('div.demo-show:eq(0)> div').hide();  
		//	$('div.demo-show:eq(0)> h2').click(function() {
		//  	$(this).next().slideToggle('fast');
		//});
			
	})
	

