$(document).ready(function(){
	$(".menu-link").livequery('mouseover', function() {
		var hover = $(this).attr('rel');
		$(this).css({'background':'#'+hover})
	});
	$(".menu-link").livequery('mouseout', function() {
		$(this).css({'background':''})
	});
});