$(document).ready(function() {
	$('#step2, #step3, #step4, #step5').hide();
	$('#step2, #step3, #step4, #step5').css("border-top","1px solid #E4E4E4");
	$('#step5 #submit').wrap('<ul><li class="next"></li></ul>');
	$('#step5 #submit').mouseover(function() {
		$(this).css("text-decoration","underline");
	});
	$('#step5 #submit').mouseout(function() {
		$(this).css("text-decoration","none");
	});
	$('#step1').append('<ul><li class="next"><a id="continue-step2" href="#step2" title="Continue to Step 2">Next Step</a></li></ul>');
	$('#step2').append('<ul><li class="back"><a id="backto-step1" href="#step1" title="Return to Step 1">Previous Step</a></li><li class="next"><a id="continue-step3" href="#step3" title="Continue to Step 3">Next Step</a></li></ul>');
	$('#step3').append('<ul><li class="back"><a id="backto-step2" href="#step2" title="Return to Step 2">Previous Step</a></li><li class="next"><a id="continue-step4" href="#step4" title="Continue to Step 4">Next Step</a></li></ul>');
	$('#step4').append('<ul><li class="back"><a id="backto-step3" href="#step3" title="Return to Step 3">Previous Step</a></li><li class="next"><a id="continue-step5" href="#step5" title="Continue to Step 5">Next Step</a></li></ul>');
	$('#step5 ul').prepend('<li class="back"><a id="backto-step4" href="#step4" title="Return to Step 4">Previous Step</a></li>');
	$('#backto-step1').click(function() {
		$('#step2').hide();
		$('#step1').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#backto-step2').click(function() {
		$('#step3').hide();
		$('#step2').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#backto-step3').click(function() {
		$('#step4').hide();
		$('#step3').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#backto-step4').click(function() {
		$('#step5').hide();
		$('#step4').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#continue-step2').click(function() {
		$('#step1').hide();
		$('#step2').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#continue-step3').click(function() {
		$('#step2').hide();
		$('#step3').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#continue-step4').click(function() {
		$('#step3').hide();
		$('#step4').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
	$('#continue-step5').click(function() {
		$('#step4').hide();
		$('#step5').show();
		$('html, body').animate({scrollTop: "0px"}, 0);
		return false;
	});
});
