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