$(function(){
	$("a.open1").click(function(){
		$("#floatWindow").fadeIn("fast");
		$("#floatWindow2").fadeOut("fast");
		$("#floatWindow3").fadeOut("fast");
		$("#floatWindow4").fadeOut("fast");
		return false;
	})
	$("a.open2").click(function(){
		$("#floatWindow2").fadeIn("fast");
		$("#floatWindow").fadeOut("fast");
		$("#floatWindow3").fadeOut("fast");
		$("#floatWindow4").fadeOut("fast");
		return false;
	})
	$("a.open3").click(function(){
		$("#floatWindow3").fadeIn("fast");
		$("#floatWindow").fadeOut("fast");
		$("#floatWindow2").fadeOut("fast");
		$("#floatWindow4").fadeOut("fast");
		return false;
	})
	$("a.open4").click(function(){
		$("#floatWindow4").fadeIn("fast");
		$("#floatWindow").fadeOut("fast");
		$("#floatWindow3").fadeOut("fast");
		$("#floatWindow2").fadeOut("fast");
		return false;
	})	
	$("a.close1").click(function(){
		$("#floatWindow").fadeOut("fast");
		return false;
	})
	
	$("a.close2").click(function(){
		$("#floatWindow2").fadeOut("fast");
		return false;
	})
	$("a.close3").click(function(){
		$("#floatWindow3").fadeOut("fast");
		return false;
	})
	$("a.close4").click(function(){
		$("#floatWindow4").fadeOut("fast");
		return false;
	})
});

