/*
* Bioinfobase Technologies jQuery Carousel 1.0.0
* Copyright (c) 2008 Hanny Kwesi Nuhu, Bioinfobase Technologies (www.bioinfobase.com)
* Dual license under MIT and GPL licenses
* 
*
*/

(function($) {
	$.fn.bioinfobaseCarousel = function(options) {
	var defaults = jQuery.extend({
			transitionSpeed: 1600,
			displayTime: 900
			
	}, options);
	
	var slides = $(".slides li");
	var controls = $(".controls li");
	var numOfSlides = slides.length;
	var numOfContrls = controls.length;
	
	// initialize animation of slides automatically when DOM elements load
	function myInit() {
		$(".slides li").each(function() {
				
				
				
				
		});
	}
	
	// buttons to show the slides
	function clickButtonToShow() {
		$(".controls li").click(function() {
			
		});
	}
	
	options = jQuery.extend(defaults, options);
	var foo = myInit();
	};
})(jQuery);
