$(document).ready(function() {
	$("#c0").show();
	$("#logos a").mouseover(function () { 
		// hide all
		$("#ctexts div").hide();
		
		// show clicked one
		var link = $(this).attr("href");
		var id = link.substring(1,link.length);
		$("#c" + id).show();
    });	   
});