$(function() {
	$('#menu').children('li').each(function(){
		$(this).mouseover(function(){
			$(this).addClass('over');
			}).mouseout(function(){
			$(this).removeClass('over');	
			})
	})
})
