// fix menu z-index
$(document).ready( function(){
	var z = 100; $(".steps > .step").each( function(){ $(this).css('z-index', z ).css('position', 'relative' ); z--; });
	if($("#submenuFiller ul").text() > ''){
		$(".secondary").html($(".secondary").html()+$("#submenuFiller ul").html());
	}
	//$('input[name="formid"]').attr('value', 'contact us');
	//$('input[name="formid"]').attr('name', 'act');
	$('#submitForm').submit(function() {
		if ($("#fullname").val().length<3) {
			alert('Please Enter Your Name');
			$("#fullname").focus();
			return false;
		}
		if ($("#phone").val().length<3) {
			alert('Please Enter Your Phone Number');
			$("#phone").focus();
			return false;
		}
	  //fullname
	  //email
	  //phone
	  
	});
	
	// rolover JS
	$('.steps .step').hover(function() {
		$(this).addClass("selected");
	}, function() {
		$(this).removeClass("selected");
	});
	
	$('.steps .step').click( function () {
		   window.location = $(this).attr('href');
	} );
	
	$('input[type="submit"]').click( function () {
			$('.addmargin p').hide('slow');
			$('.addmargin h1').text('Survey request submission').css('text-align','center');
			//$('form').css('background','transparent');
			//$('.submitText').text('Your details will be passed to your local Window Advice Centre Consultant who will contact you shortly to confirm arrangements.');
	});

});
