// vim:cindent:cino=\:0:fenc=utf-8:ff=unix:sw=4:ts=4:

/*jslint vars: true, indent: 4 */

var counterorbit = (function (module, $) {
	'use strict';

	module.ready = function () {
		$('.co-slideshow').css('display', 'block');
		$('.co-slideshow').slides(
			{ autoHeight: true
			, autoHeightSpeed: 0
			, bigTarget: true
			, container: 'co-slideshow-container'
			, crossfade: true
			, currentClass: 'co-slideshow-current'
			, effect: 'fade'
			, next: 'co-slideshow-next'
			, paginationClass: 'co-slideshow-pagination'
			, prev: 'co-slideshow-prev'
			});

		/*
		$('.co-table').dataTable(
			{ bFilter: false
			, bInfo: false
			, bJQueryUI: true
			, bPaginate: false
			, bSort: false
			, sDom: '<t>'
			});
		*/
	};

	return module;
}(counterorbit || {}, jQuery));

