$(document).ready(function(){
	$(function(){
	$('#nav a')
		.css({backgroundPosition: "0px -80px"})
		.mouseover(function(){
			$(this).stop()
				.animate({backgroundPosition:"(-20px 0px)"}, {duration:500})
		})
		.mouseout(function(){
			$(this).stop()
				.animate({backgroundPosition:"(0px -80px)"}, {duration:350, 
				complete:function(){
					$(this)
						.css({backgroundPosition: "0px -80px"})
					}})
		}) 
		
	
	$('#current a').css({backgroundPosition: "0px 0px"}).mouseout(function(){$(this).stop()})

	}); 
	
	$("a.cbox").colorbox({opacity:0.3, maxWidth:"80%"});
	
	$.smoothAnchors("slow");
});
