function restoreStartPage ()
{
	$("#contactBox").animate ({
		"height": "22px"
	}, 2000, null, function () {
		$("#contactBox").css ("height", "25px");
		$("#contactBox .boxContent").css ("display", "none");
		$("#contactBox").css ("height", "25px");		
		$("#contactBox .boxContent img").css ("display", "none");
		$("#contactBox p").css ("display", "none");
		$("#contactBox .boxHead").css ("cursor", "pointer");
		$("#contactBox .boxHead").unbind ("click");
		$("#contactBox .boxHead").bind ("click", function ()
		{
			$("#contactBox .boxContent img").css ("display", "block");
			$("#contactBox p").css ("display", "block");
			$("#contactBox .boxContent").css ("display", "block");
			$("#welcomeImage").animate ({
				"left": "65px"
			}, 2000, null, function () {				
			});
			$("#contactBox").animate ({
				"height": "355px"
			}, 2000, null, function (){
				$("#contactBox .boxHead").unbind ("click");
				$("#contactBox .boxHead").bind ("click", restoreStartPage);
				$("#contactBox .boxHead img").attr ("src", "/view/gfx/btn_up.png");
				$("#telcontact").css ("display", "none");
			});
		});
	});
	$("#welcomeImage").animate ({
		"left": "200px"
	}, 2000, null, function () {
		$("#telcontact").css ("display", "block");
		$("#contactBox .boxHead img").attr ("src", "/view/gfx/btn_down.png");
	});
}

function carAnimation () {
	$("#contactBox").animate ({
		"height": "22px"
	}, 2000, null, function () {
		$("#contactBox").css ("height", "25px");
		$("#contactBox .boxContent").css ("display", "none");
		$("#contactBox").css ("height", "25px");		
		$("#contactBox .boxContent img").css ("display", "none");
		$("#contactBox p").css ("display", "none");
		$("#contactBox .boxHead").css ("cursor", "pointer");
		$("#contactBox .boxHead").bind ("click", function ()
		{
			$("#contactBox .boxContent img").css ("display", "block");
			$("#contactBox p").css ("display", "block");
			$("#contactBox .boxContent").css ("display", "block");
			$("#welcomeImage").animate ({
				"left": "65px"
			}, 2000, null, function () {
				$("#telcontact").css ("display", "block");
			});
			$("#contactBox").animate ({
				"height": "355px"
			}, 2000, null, function () {
				$("#contactBox .boxHead").unbind ("click");
				$("#contactBox .boxHead").bind ("click", restoreStartPage);
				$("#contactBox .boxHead img").attr ("src", "/view/gfx/btn_up.png");
				$("#telcontact").css ("display", "none");				
			});
		});
	});
	$("#welcomeImage").animate ({
		"left": "200px"
	}, 2000, null, function () {
		$("#contactBox .boxHead img").attr ("src", "/view/gfx/btn_down.png");
	});
}

window.setTimeout("carAnimation()", 2000);
