$('#mainCon div a').hover(function(){
  $("img", this).stop().animate({top:"-150px"},{queue:false, duration:250});
},function(){
    $("img", this).stop().animate({top:"0px"},{queue:false, duration:250});
})
