$(window).load(function() {
	var total = $('#slider img').length;
	var rand = Math.floor(Math.random()*total);
    $('.news-slider').liteSlider({
        content: '.news-story', 	// The panel selector. Can be a list also. eg:li
        width: 785, 		// Width of the slider
        height: 100, 		// Height of the slider
        autoplay: true, 	// Autoplay the slider. Values, true & false
        delay: 5, 		// 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
    });
    $('#slider').nivoSlider({
		effect: 'fade',
		animSpeed: 500,
		pauseTime: 4000,
		directionNav: false,
		controlNav: false,
	    startSlide:rand
    });

});
