$(document).ready(function() {


  /* slider configration */
$(function() {
    $("div.slider").scrollable({
        size: 1,
        items: 'div.items',
        hoverClass: 'hover',
        next :	"#next",
        prev : "#prev",
        clickable:'false',
        activeClass:'active',
        disabledClass:'disabled',
        interval:0,
        speed:500,
        easing :'swing'
    });
});




    $('.slider').hover(function(){
         $(".hover_slider", this).stop().animate({left:'0px'},{queue:false,duration:160});
     }, function() {
        $(".hover_slider", this).stop().animate({left:'-400px'},{queue:false,duration:160});
   });





});



