$(document).ready(function() {	
	$(".adbox").hover(function(){
	  $(this).children(".adlink").stop(true, true).animate({ 
		bottom: "-1px"
	  }, 200 );
	},
	function(){
	  $(this).children(".adlink").stop(true, true).animate({ 
		bottom: "-"+$(this).children(".adlink").height()+"px"
	  }, 200, 'linear' );
	});
						   });
