// JavaScript Document

$(function() {
	// can use options, the values listed are by default
	// 'index' is what item to start from (zero based)
	// 'showTime' is how long to show an item,
	// 'transitionTime' is how long the fade takes,
	// 'doHoverPause' is to turn on/off (true/false) the hover pause behavior
	// 'maxZIndex' is the z-index of the element being faded into view. The faded out is maxZIndex - 1.
	var options = { 'index':0, 'showTime':4000, 'transitionTime':500, 'doHoverPause':true, 'maxZIndex':100 };
	$('.dumbCrossFade .dumbItem').dumbCrossFade(options);
});
