// JavaScript Document


jQuery(document).ready(function($) {
	$('#splash').cycle({
		fx: 'fade', // choose your transition type, ex: fade, scrollUp, shuffle, etc...
		random: true,     // true for random, false for sequence (not applicable to shuffle fx) 
		timeout: 4000  // milliseconds between slide transitions (0 to disable auto advance)
	});
});

