$(document).ready(function() {

   original = $('.sidebar a').css('color');
   $('.sidebar a').hover(function() {
       var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
       $(this).stop(true,true).animate({
           'color': col
       },100);
   },function() {
       $(this).stop(true,true).animate({
           'color': original
       },500);
   });
	$('.current a').animate({'color': original},500)
	$(".home .main a h1").hide();

	$(".home .main a").mouseenter(function(){
		$(this).find("h1").stop(true,true).fadeIn();
	})
	.mouseleave(function(){
		$(this).find("h1").stop(true,true).fadeOut();
	});


});
