$(document).ready(function(){
	$(".ContenedorCol .CL1").mouseover(function(){
		$(this).addClass("CL1Hover");											
		$(this).children(".Colleft").children(".title").css("color","#111");					
	});
	$(".ContenedorCol .CL1").mouseout(function(){
		$(this).children(".Colleft").children(".title").css("color","#9B9EA2");
		$(this).removeClass("CL1Hover");
	});
	$(".SUM").click(function(){
		$(".bottom").addClass("bottom2");					 
	});
});	
