var $j = jQuery.noConflict();

$j(function(){
	
	$j("#nav li a")
		.hover(function(){
			$j(this).animate({
				backgroundPosition: "0 -100px"
			}, 100)
		}, function() {
			$j(this).animate({
				backgroundPosition: "0 -183px"
			}, 100)
		})
		.mousedown(function(){
			$j(this).css({
				backgroundPosition: "0 -200px"
			})	
		});
	
});