$(function() {

	$("#top > .nav li[class!=spliter]").hover(
		function() {
			$(this).attr("class", "focus");
			$(this).find("a").attr("class", "focus");	
		},
		function() {
			$(this).removeAttr("class");
			$(this).find("a").removeAttr("class");
		}
	);
	
});
