$(document).ready(function() {
	$("#left-top").hover(
		function ()
		{
			$("#center-bottom-1").fadeOut(200);
			$("#center-bottom-2").fadeOut(200);

			$("#left-bottom").fadeIn(400);
		},
		function ()
		{
			//$("#left-bottom").fadeOut(200);
		}
	);
	$("#center-top-1").hover(
		function ()
		{
			$("#left-bottom").fadeOut(200);
			$("#center-bottom-2").fadeOut(200);

			$("#center-bottom-1").fadeIn(400);
		},
		function ()
		{
			//$("#center-bottom-1").fadeOut(200);
		}
	);
	$("#center-top-2").hover(
		function ()
		{
			$("#left-bottom").fadeOut(200);
			$("#center-bottom-1").fadeOut(200);

			$("#center-bottom-2").fadeIn(400);
		},
		function ()
		{
			//$("#center-bottom-2").fadeOut(200);
		}
	);
});
