(function($){
	var methods = {
		initIndex : function()
		{
			bannerRotator('#banner', 500, 7000, true);
		}
	}
	$.fn.tzmedical = function(method)
	{
		if (methods[method])
		{
			return methods[ method ].apply( this, Array.prototype.slice.call( arguments, 1 ));
		}
		else if ( typeof method === 'object' || ! method )
		{
			return methods.init.apply( this, arguments );
		}
		else
		{
			$.error( 'Method ' + method + ' does not exist on jQuery.tzmedical' );
		}
	}
})(jQuery);

