$('#mainNav li:not(.currentNav) a').hover(function()
{
	$(this).parent().css('backgroundImage', 'url(images/navArrowDown.gif)');
},function()
{
	$(this).parent().css('backgroundImage', 'url(images/navArrowUp.gif)');
});
