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