$(document).ready(function(){ 
	promoSlide();			
});

function promoSlide() {
	$('.promo-background-small').hover(function(){  
        $(".scheduled-promo-caption", this).stop().animate({top:'153px'},{queue:false,duration:160});  
    }, function() {  
        $(".scheduled-promo-caption", this).stop().animate({top:'223px'},{queue:false,duration:160});  
    });
    $('.promo-background-medium').hover(function(){  
        $(".scheduled-promo-caption", this).stop().animate({top:'153px'},{queue:false,duration:160});  
    }, function() {  
        $(".scheduled-promo-caption", this).stop().animate({top:'223px'},{queue:false,duration:160});  
    });    
}
