$(function(){
    $('.slider').liteSlider({
     content : '.content',     // The panel selector. Can be a list also. eg:li
     width : 1024,         // Width of the slider
     height : 490,         // Height of the slider
     autoplay : true,       // Autoplay the slider. Values, true & false
     delay : 10,          // Transition Delay. Default 3s
     buttonsClass : 'buttons',   // Button's class
     activeClass : 'active',     // Active class
     controlBt : '.control',     // Control button selector
     playText : 'Play',      // Play text
     pauseText : 'Stop'      // Stop text
    });
});

