// ===============================
// = Nav Bar Hover Effect Script =
// ===============================
//
// Date Created: 15/05/2009
// Thanks to: JQuery & Jonathon Snook
//

$(function(){
	$('#mainNavigation a')
		.css( {backgroundPosition: "0px 0px"} )
		.mouseover(function(){
			$(this).stop().animate(
			{backgroundPosition:"(99px -50px)"}, 
			{duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate(
				{backgroundPosition:"(0px 0px)"}, 
				{duration:500})
			})
})