$(document).ready(

	function(){
		
		$('#enquiry_product_box').click(function(){
		
			$('#natureOfEnquiry:input').val("General");
			$('#enquiry_product_box').slideUp("slow");
			
		});	
		
		if(window.location.hash) {
			var hash = window.location.hash.substring(1); //Puts hash in variable, and removes the # character
			if (hash=='enquiry_0'){
				$('.slide-out-div .handle').click();
			}
			
		}
		
				
	}
	
		
)	

function productEnquiry(){

	var prod = $('#product_title').html();
	$('#enquiry_product_box').show();
	$('#natureOfEnquiry:input').val( prod  );
	$('#enquiry_product_label').html( prod );	

	$('.slide-out-div .handle').click();
	
	

}

