$(function(){
	// zen button hover
	$(".bottom-banners div a").hover(function(){
		$(this).find("img").stop().animate({ top:'10px'}, "slow", 'easeOutBack') 
	}, function(){
		$(this).find("img").stop().animate({ top:'0px'}, "slow", '')
	});
});

