jQuery(document).ready(function() {

	// Morven landing page jCarousel config.
	jQuery('#featured-photos').jcarousel({
		auto: 7,
		scroll: 6,
		animation: 'slow',
		wrap: 'last'
	});


	// Listings gallery cycle config.
	jQuery("#gallery-container").append('<a id="prev" href="#">Prev</a> <a id="next" href="#">Next</a>');
	jQuery('#gallery-content').cycle({
		fx: 'fade',
		speed: 1000,
		pause: 1,
		timeout: 8000,
		next: '#next',
		prev: '#prev'
	});

});
