$(document).ready(function(){
	$("#btn_01").hover(
		function(){
			$("#btn_01 h3 a").stop().animate({color:"#000000;"}, 200);
			$("#btn_01 img").stop().animate({"width": 122,
            "height": 119,
			"left": 0,
            "top":  0}, 150);
			$(this).css({backgroundPosition: '0px 0px'});
		},
		function(){
			$("#btn_01 h3 a").stop().animate({color:"#625139;"}, 200);
			$("#btn_01 img").stop().animate({"width": 93,
            "height": 91,
			"left": 15,
            "top":  15}, 150);
			$(this).css({backgroundPosition: '0px 153px'});
		}
	);
	$("#btn_02").hover(
		function(){
			$("#btn_02 h3 a").stop().animate({color:"#000000;"}, 200);
			$("#btn_02 img").stop().animate({"width": 122,
            "height": 119,
			"left": 0,
            "top":  0}, 150);
			$(this).css({backgroundPosition: '0px 0px'});
		},
		function(){
			$("#btn_02 h3 a").stop().animate({color:"#625139;"}, 200);
			$("#btn_02 img").stop().animate({"width": 93,
            "height": 91,
			"left": 15,
            "top":  15}, 150);
			$(this).css({backgroundPosition: '0px 153px'});
		}
	);
	$("#btn_03").hover(
		function(){
			$("#btn_03 h3 a").stop().animate({color:"#000000;"}, 200);
			$("#btn_03 img").stop().animate({"width": 122,
            "height": 119,
			"left": 0,
            "top":  0}, 150);
			$(this).css({backgroundPosition: '0px 0px'});
		},
		function(){
			$("#btn_03 h3 a").stop().animate({color:"#625139;"}, 200);
			$("#btn_03 img").stop().animate({"width": 93,
            "height": 91,
			"left": 15,
            "top":  15}, 150);
			$(this).css({backgroundPosition: '0px 153px'});
		}
	);
}); 
