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

