$(document).ready(function(){

	$('.menu li:not(.active)').hover(
		function(){
			_color=$(this).attr('_clr');
			$(this).attr('style','background:'+_color);
		},
		function(){
			if( ! $(this).hasClass('curr') ) {
				_color=$(this).attr('_clr');
				$(this).attr('style','background:'+_color);
			}
		}
	);

});

