$(document).ready(function() {
	
	$("#nav > li").mouseover(function() {
		$(this).addClass("over");
	});
	$("#nav > li").mouseout(function() {
		$(this).removeClass("over");
	});
					   
});
