// Last update 02.03.2009

$(document).ready(function() {
	
	$("#menu ul li").each(function(){
	
		&(this).hover(function(){
			$('.bodytext').animate({ 
				background-color: "#FFFFFF",
				line-height: "21px"
			}, 1500 );
		});
		
	});
	
});

