$(function(){
	$('.primaryLinks > li')
	.hover(function(){
		$(this).addClass('over');
	},function(){
		$(this).removeClass('over');
	});
});