$(document).ready(function() {
	$('#nav a')
	.css( {backgroundPosition: "0 0"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 -45px)"}, {duration:150})
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 0)"}, {duration:250, complete:function(){
			$(this).css({backgroundPosition: "0 0"})
		}})
	})
	$('#home #nav-home a, #blog #nav-blog a, #shows #nav-shows a, #call #nav-call a, #video #nav-video a, #gallery #nav-gallery a, #store #nav-store a, #bio #nav-bio a')
	.css( {backgroundPosition: "0 -45px"} )
	.mouseover(function(){
		$(this).stop().animate({backgroundPosition:"(0 -45px)"}, {duration:150})
	})
	.mouseout(function(){
		$(this).stop().animate({backgroundPosition:"(0 -45px)"}, {duration:50, complete:function(){
			$(this).css({backgroundPosition: "0 -45px"})
		}})
	})
//	$('#findme a')
//	.mouseover(function(){
//		$(this).stop().animate({width:"250px"}, {duration:150})
//	})
//	.mouseout(function(){
//		$(this).stop().animate({width:"50px"}, {duration:250, complete:function(){
//			$(this).css({backgroundPosition: "0 0"})
//		}})
//	})
});
