
$(document).ready(function() {
	original = $('a').css('color');
	$('a').hover(function() { //mouseover
		var col = 'rgb(' + (Math.floor(Math.random() * 200)) + ',' + (Math.floor(Math.random() * 200)) + ',' + (Math.floor(Math.random() * 200)) + ')';
		$(this).animate({
			'color': col,
		},100);
	});
});

