jQuery.noConflict();
(function($) {
	eb.setupLogos = function() {
		$('ul.logos').each(function() {
			if ($(this).find('li').length > 1) {
				$(this).cycle({ 
		    	fx: 'fade',
					pause: true,
					pauseOnPagerHover: true,
					after: function() {
						eb.reflect($(this).find('img'));
					}
				});
			} else {
				eb.reflect($(this).find('img'));
			}
		});
	}

	$(document).ready(
		function() {
			eb.setupLogos();
		}
	);
})(jQuery);

