// JavaScript Document
$(function(){
	$('#nav a.ready')
		.css( {backgroundPosition: "-1px 35px"} )
		.mouseover(function(){
			$('#nav a.current').stop().animate({backgroundPosition:"(-1px 35px)"}, {duration:500})
			$(this).stop().animate({backgroundPosition:"(-1px 69px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop().animate({backgroundPosition:"(-1px 35px)"}, {duration:200, complete:function(){
				$(this).css({backgroundPosition: "-1px 35px"})
				
			}})
			$('#nav a.current').stop().animate({backgroundPosition:"(-1px 69px)"}, {duration:500, complete:function(){
				$('#nav a.current').css({backgroundPosition: "-1px 69px"})
				
			}})
		})})
$(document).ready(function() {
						    $('#nav a.current').css( {backgroundPosition: "-1px 35px"} )
						   $('#nav a.current').stop().animate({backgroundPosition:"(-1px 69px)"}, {duration:500, complete:function(){
				$('#nav a.current').css({backgroundPosition: "-1px 69px"})}})
																				   })