$(function(){
	
$('.slider').mobilyslider({
    content: '.sliderContent', // class for slides container
    children: 'div', // selector for children elements
    transition: 'horizontal', // transition: horizontal, vertical, fade
    animationSpeed: 500, // slide transition speed (miliseconds)
    autoplay: true, 
    autoplaySpeed: 8000, // time between transitions (miliseconds)
    pauseOnHover: false, // stop animation while hovering
    bullets: false, // generate pagination (true/false, class: sliderBullets)
    arrows: true, // generate next and previous arrow (true/false, class: sliderArrows)
    arrowsHide: true, // show arrows only on hover
    prev: 'prev', // class name for previous button
    next: 'next', // class name for next button
    animationStart: function(){}, // call the function on start transition
    animationComplete: function(){} // call the function when transition completed
});
	
});


