function stepTwo() {
	$("#yoursite").empty();
	$("#yoursite").animate({
			opacity: 0.0,
			fontSize: "0%",
			width:	"0px",
			borderWidth: "1px",
			marginLeft: "1px"
		}, 800, "swing", function setTimer() {
			window.setTimeout("stepThree()", "250");
		});
	
};
function stepThree() {
	$("#yoursite").append("<p class='heading'>How <em>exactly</em> do you know?</p>");
	$("#yoursite").animate({
		width: "560px",
		opacity: 0.9,
		marginLeft: "25px",
		fontSize:	"125%",
		borderWidth: "3px"
	}, 1500,"swing", function setTimer() {
		window.setTimeout("stepFour()", "1500");
	});
};
function stepFour() {
	var strFullURL = "ajax/content/page2call-step4.html";
	
	$.ajax({
		url: strFullURL,
		type: 'GET',
		dataType: 'html',
		timeout: 10000,
		error: function() {
			$("#page2callhome-content").append("<p class='heading'>page2call turns your website page views into phone calls</p>");
		},
		success: function(html) {
			$("#page2callhome-content").append(html);
		}
	});
};

$(document).ready(function() {
	$("#yoursite").animate({
		width: "560px",
		opacity: 0.9,
		marginLeft: "25px",
		fontSize:	"125%",
		borderWidth: "3px"
	}, 1500,"swing", function setTimer() {
		window.setTimeout("stepTwo()", "3000");
	});	
});

