// JavaScript Document
$(function(){
	$("#menu3 a").hover(function(){
		$el = $(this);
		$el.stop().animate({ backgroundPosition: "(0px -2px)", color: "#000000" }, 250);
		}, function(){
		$el = $(this);
		$el.stop().animate({ backgroundPosition: "(-100px -2px)", color: "#000000" }, 250);
		});
	});
