$(document).ready(function(){
	renkler = ["#fff","#77f","#5f5","#f55","#FBF806","#D463F5"];
	$("#menu a").mouseover(function(){
		buton = "#"+this.id;
		$(buton).animate({
			"backgroundColor":renkler[this.id]
		},500);
	}).mouseleave(function(){
		$(buton).animate({
			"backgroundColor":renkler[0]
		},"slow");
	});
});
