$(document).ready(function(){	
	$(".step1").click(function(){
		$("#formJob").slideDown();
	});
	
	$(".step2").click(function(){
		$("#formDetails").slideDown();
		var sel = $('input[name="type_of_cleaning"]:checked').val();
		if(sel == "blinds"){
			$("#specs").html('Please describe in as much detail the number of sets of blinds, the size (eg 1.8m x 1.8m) and the type of blinds they are (eg venetian).');
		} else if (sel == "mould"){
			$("#specs").html('Please describe in as much detail the number of rooms affected by mould and the size of those rooms (eg 3.0m x 3.5m).');
		} else if (sel == "curtains"){
			$("#specs").html('Please describe in as much detail the number of curtains and the size of each (eg 1.8m x 3.0m).');
		} else if (sel == "mattress"){
			$("#specs").html('Please describe in as much detail the number of mattresses to be cleaned and they\'re size (eg queen bed).');
		} else if (sel == "upholstery"){
			$("#specs").html('Please describe in as much detail the number of individual seats to be cleaned and the fabric (ie a lounge set of a 3-seater and 2 recliners would be 5 seats in total).');
		} else if (sel == "car"){
			$("#specs").html('Please list below the make, model and size of the car (eg Toyota Camry Sedan).');
		} 
	});
	
	$(".step3").click(function(){
		$("#formOther").slideDown();
		$(".step3").slideUp();
	});
	
	$(".step4").click(function(){
		$("#formContact").slideDown();
		$(".step4").slideUp();
	});
});
