// JavaScript Document

$(document).ready(function(){
	$('div.button a')
		.css({ 'backgroundPosition': '0 0' })
		.hover(
			   function(){$(this).stop() .animate({'opacity':0},450);},
			   function(){$(this).stop() .animate({'opacity':1}, 450);}
				);		  

  });
