$(document).ready(function(){
	$("#content").corner("10px");
	
	$('#bayi').animate( { color: "red" }, 1000);
	
	spectrum();

});

function spectrum(){
	var hue = 'rgb(' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ',' + (Math.floor(Math.random() * 256)) + ')';
	$('#bayi').animate( { color: hue }, 1000);
	setTimeout("spectrum();", 1000);
}
