// JavaScript Document

$(function() {
	
	$("#csMainContent1").css("display","none");
	$("#csMainContent2").css("display","none");
	$("#csMainContent3").css("display","none");
	$("#csMainContent4").css("display","none");	
	$("#csMainContent5").css("display","none");	
	$("#csMainContent6").css("display","none");	
	
	$("#cs1Title").click(function(){		
		$("#csMainContent1").fadeIn("slow"); 
		return false;
	});	

	$("#cs1Thumb").click(function(){		
		$("#csMainContent1").fadeIn("slow"); 
		return false;
	});	
	
	$("#csClose1").click(function(){		
		$("#csMainContent1").fadeOut("slow"); 
		return false;
	});	
	
	$("#cs2Title").click(function(){		
		$("#csMainContent2").fadeIn("slow"); 
		return false;
	});	

	$("#cs2Thumb").click(function(){		
		$("#csMainContent2").fadeIn("slow"); 
		return false;
	});	
	
	$("#csClose2").click(function(){		
		$("#csMainContent2").fadeOut("slow"); 
		return false;
	});	
	
	$("#cs3Title").click(function(){		
		$("#csMainContent3").fadeIn("slow"); 
		return false;
	});	

	$("#cs3Thumb").click(function(){		
		$("#csMainContent3").fadeIn("slow"); 
		return false;
	});	
	
	$("#csClose3").click(function(){		
		$("#csMainContent3").fadeOut("slow"); 
		return false;
	});		
	
	$("#cs4Title").click(function(){		
		$("#csMainContent4").fadeIn("slow"); 
		return false;
	});	

	$("#cs4Thumb").click(function(){		
		$("#csMainContent4").fadeIn("slow"); 
		return false;
	});	
	
	$("#csClose4").click(function(){		
		$("#csMainContent4").fadeOut("slow"); 
		return false;
	});	
	
	$("#cs5Title").click(function(){		
		$("#csMainContent5").fadeIn("slow"); 
		return false;
	});	

	$("#cs5Thumb").click(function(){		
		$("#csMainContent5").fadeIn("slow"); 
		return false;
	});	
	
	$("#csClose5").click(function(){		
		$("#csMainContent5").fadeOut("slow"); 
		return false;
	});	
	
	$("#cs6Title").click(function(){		
		$("#csMainContent6").fadeIn("slow"); 
		return false;
	});	

	$("#cs6Thumb").click(function(){		
		$("#csMainContent6").fadeIn("slow"); 
		return false;
	});	
	
	$("#csClose6").click(function(){		
		$("#csMainContent6").fadeOut("slow"); 
		return false;
	});							
	
});