// my code below

$(document).ready(function() {
	
	//alert($('#navlist li').size());
	
	$('#navlist li').hover(
		  function () {
			$(this).addClass('nav1_hover');
			//alert($(this).attr("background-color"));
		  }, 
		  function () {
			$(this).removeClass('nav1_hover');
		  }
	);

	$('#navlist2 li').hover(
		  function () {
			$(this).addClass('nav2_hover');
			//alert($(this).attr("background-color"));
		  }, 
		  function () {
			$(this).removeClass('nav2_hover');
		  }
	);

});
