$(document).ready(function() {

	// Droppy Settings
	$('#navigation ul').droppy({
		speed: 250,
		hideSpeed: 150
	});

	// Cycle Settings
	if ($('#testimonials').length) {
		$('#testimonials').cycle({
			fx: 'fade',
			timeout: 30000,
			random: 1,
			pause: 1
		});
	};

	// Expander Settings
	if ($('.expander').length) {
		$('.expander').expander({
		  slicePoint: 100,
		  widow: 2,
		  expandText: 'Read More',
		  expandEffect: 'slideDown',
		  userCollapseText: 'Close'
		});
	};
	
});
