$(document).ready(function(){			
				$('.thumb').hover(function(){
					$(".playbutton", this).stop().animate({top:'0px'},{queue:false,duration:200});
				}, function() {
					$(".playbutton", this).stop().animate({top:'-133px'},{queue:false,duration:500});
				});
				
$(document).ready(function(){			
				$('.footeritem').hover(function(){
					$(".footeritemtop", this).stop().animate({left:'0px'},{queue:false,duration:200});
				}, function() {
					$(".footeritemtop", this).stop().animate({left:'-100px'},{queue:false,duration:500});
				});
});
});
