
	  
	  
	  
	  $('.teaser').hover(function() {
	  // over
 
	$(this).children('img').stop().animate({
		top : '200px'
	}, 500);
 
}, 
 
function() {
  // out	
 
	$(this).children('img').stop().animate({
		top : '0'
	}, 500);
	
	
});
	  
	  	$('.twodrop').hover(function() {
	  // over
 
	$(this).children('img').stop().animate({
		top : '200px'
	}, 500);
 
}, 
 
function() {
  // out	
 
	$(this).children('img').stop().animate({
		top : '0'
	}, 500);

});

