$(document).ready(function(){
        $("h1,a").hover(function() {
                $(this).stop().animate({color: "#1040F0"}, 800);
                },function() {
                $(this).stop().animate({color: "#000000" }, 800);
                });
     });
$(document).ready(function(){
	   $("h2").hover(function() {
	           $(this).stop().animate({Color: "#ffffff"}, 800);
	           },function() {
	           $(this).stop().animate({Color: "#000000" }, 800);
	           });
	});
$(document).ready(function(){
	   $("#cl").hover(function() {
	           $(this).stop().animate({ backgroundColor: "#1040F0"}, 800);
	           },function() {
	           $(this).stop().animate({ backgroundColor: "#ffffff" }, 800);
	           });
	});

