 $(document).ready(function() {
	$("article h2 a span").css({"background":"url('/images/bg.gif') repeat -1000px 0"});
	$("aside footer p.mailto a").css({"background":"url('/images/bg.gif') repeat -1000px 0"});

	$("article h2 a").hover(
		function () {
			$(this).children("span").stop().animate({backgroundPosition: '0 0'}, 1000);
		}, function () {
			$(this).children("span").stop().animate({backgroundPosition: '-1000px 0'}, 600);
			});
	$("article h2 a").click(function(){
		$(this).children("span").stop().animate({backgroundPosition: '-1000px 0'}, 600);
	});
	
	$("aside footer p.mailto a").hover(
		function () {
			$(this).stop().animate({backgroundPosition: '0 0'},1000);
		}, function () {
			$(this).stop().animate({backgroundPosition: '-1000px 0'}, 600);
			});

	 $('.top').click(function(){
	      $('html, body').animate({scrollTop:0}, 'slow');
	      return false;
	 });	 
});
