$(document).ready(function() {
	$(".color01").mouseenter(function (){
		$("#cont01").animate({"top": "16px"}, 200).css('color','F00000');
	}).mouseleave(function (){
		$("#cont01").animate({"top": "-0"}, 400);
	});

	$(".color02").mouseenter(function (){
		$("#cont02").animate({"top": "16px"}, 200);
	}).mouseleave(function (){
		$("#cont02").animate({"top": "-0"}, 400);
	});
	
	$(".color03").mouseenter(function (){
		$("#cont03").animate({"top": "16px"}, 200);
	}).mouseleave(function (){
		$("#cont03").animate({"top": "-0"}, 400);
	});

	$(".color04").mouseenter(function (){
		$("#cont04").animate({"top": "16px"}, 200);
	}).mouseleave(function (){
		$("#cont04").animate({"top": "-0"}, 400);
	});
	
	$(".color05").mouseenter(function (){
		$("#cont05").animate({"top": "16px"}, 200);
	}).mouseleave(function (){
		$("#cont05").animate({"top": "-0"}, 400);
	});	
	$(".color06").mouseenter(function (){
		$("#cont06").animate({"top": "16px"}, 200);
	}).mouseleave(function (){
		$("#cont06").animate({"top": "-0"}, 400);
	});
});
