var f = jQuery.noConflict();
    f(function() {
        f('.slider').hover(function() {
            f(this).children('.topImage').stop().animate({ "top" : '160px'}, 500);   
        }, function() {
            f(this).children('.topImage').stop().animate({ "top" : '7px'}, 300);       
        });
    });
