$(document).ready(function() {

  $(".wrap1").hover(function() {
    $(".over1").stop().animate({ "top" : "0" }, 800)}
  , function() {
    $(".over1").stop().animate({ "top" : "-180" }, 800)}
  );
      
  $(".wrap2").hover(function() {
    $(".over2").stop().animate({ "top" : "0" }, 800)}
  , function() {
    $(".over2").stop().animate({ "top" : "-180" }, 800)}
  );
	
  $(".wrap3").hover(function() {
    $(".over3").stop().animate({ "top" : "0" }, 800)}
  , function() {
    $(".over3").stop().animate({ "top" : "-180" }, 800)}
  );
	  
  $(".wrap4").hover(function() {
    $(".over4").stop().animate({ "top" : "0" }, 800)}
  , function() {
    $(".over4").stop().animate({ "top" : "-180" }, 800)}
  );
  
  $(".wrap5").hover(function() {
    $(".over5").stop().animate({ "top" : "0" }, 800)}
  , function() {
    $(".over5").stop().animate({ "top" : "-180" }, 800)}
  );
	
  $(".wrap6").hover(function() {
    $(".over6").stop().animate({ "top" : "0" }, 800)}
  , function() {
    $(".over6").stop().animate({ "top" : "-180" }, 800)}
  );

});