// JavaScript Document

$(function(){
				$("#register div a").hover(function(){
					$("img", this).stop().animate({top:"-40px"},{queue:false,duration:100});
			}, function() {
				$("img", this).stop().animate({top:"0px"},{queue:false,duration:100});
			});
});


$(function(){
				$("#register-inner div a").hover(function(){
					$("img", this).stop().animate({top:"-40px"},{queue:false,duration:100});
			}, function() {
				$("img", this).stop().animate({top:"0px"},{queue:false,duration:100});
			});
});

