// JavaScript Document
$(document).ready(function(){
				$('#updatesTable .slideWrap').hover(function(){
					$(".cover", this).stop().animate({top:'407px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'479px'},{queue:false,duration:160});
				});
				// just in case you want to activate it  on videos//
				/*
				$('#videosTable .slideWrap').hover(function(){
					$(".cover", this).stop().animate({top:'185px'},{queue:false,duration:160});
				}, function() {
					$(".cover", this).stop().animate({top:'221px'},{queue:false,duration:160});
				});*/
			});