$(document).ready(function(){
	$('#slider').plusSlider({
		sliderEasing: 'easeInOutExpo', // Anything other than 'linear' and 'swing' requires the easing plugin
		paginationBefore: true,
		paginationTitle: true,
		sliderType: 'slider' // Choose whether the carousel is a 'slider' or a 'fader'
	});
	$('#slider2').plusSlider({
		displayTime: 5000, // The amount of time the slide waits before automatically moving on to the next one. This requires 'autoPlay: true'
		sliderType: 'fader', // Choose whether the carousel is a 'slider' or a 'fader'
		width: 769, // Overide the default CSS width
		height: 445 // Overide the default CSS width
	});
});
