    $(document).ready(function(){  
      $("#slider").easySlider({
        auto: false,
        continuous: true,
        nextId: "slider1next",
        prevId: "slider1prev"
      });
    });  

    $(function() {
        $('.temphol').hover(function() {
            $(this).children('.front').stop().animate({ "top" : '160px'}, 500);   
        }, function() {
            $(this).children('.front').stop().animate({ "top" : '7px'}, 300);       
        });
    });