﻿/* START jquery */

jQuery(document).ready(function () {

	jQuery("li.navi").hover(	
		function () 
		{
			jQuery(this).animate({ backgroundColor:"#d2d2d2"}, 200 );

		},
		function () {
			jQuery(this).animate({ backgroundColor: "#e7e7e7"}, 300 );
		}	
	);
	
	

});
/* ENDE jquery */
