$(document).ready(function() {
	$(".CRow").hover(
		function(){
			$(this).find(".CName").css("zIndex", "9999").slideDown();
		}, 
		function(){
			$(this).find(".CName").css("zIndex", "1").slideUp();
		}
	);
});
