$(document).ready(function() {
	original = $('a.random-color').css('color');
	$('a').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 256)) + ',256,' + (Math.floor(Math.random() * 256)) + ')';
		$(this).animate({
			'color': col,
		},500);
	},function() { //mouseout
		$(this).animate({
			'color': 'black',
		},1000);
	});
});

