// JavaScript Document

// INITIALIZE JAVASCRIPT ON PAGE LOAD
$(document).ready(function() {
	// Applying the jQuery cycle plugin
	$('#spotlight-cycle').cycle({
			fx: 'fade',
			timeout: 2000
	});
	$('.memorandum').cycle({
			fx: 'fade',
			timeout: 2000
	});
});
