/* init */

$(document).ready(function()
{
	$('.cmcinfo').hide();
	$("#intro").show();
	$('#clicker').hide();
	
	$(".cmc").hover(
		function () {
			$(this).find("img").hide();
			$(".cmcinfo").hide();
			$("#info" + $(this).attr("id")).show();
			$('#clicker').show();
		}, 
		function () {
			$(this).find("img").show();
			$(".cmcinfo").hide();
			$("#intro").show();
			$('#clicker').hide();
		}
	);
});

