﻿$(function() {
    $('div.promodiv .promoslide').each(
               
        function() {            
            var slider = $(this).find('div');                 
            $(this).hover(
                // enter              
                function() {                   
                   $(slider).stop().animate({height:'60px'}, 300);
                },
                // out
                function() {
                    $(slider).stop().animate({ height: '16px' }, 300);
                }
            )
        }
    )
});

