$(document).ready(function()
{	

	$('#navigation li.level2').hover(
		function() {
			$(this).addClass("hover");
		},
		function() {
			$(this).removeClass("hover");
		}
	);	
	
}
);
