var j = 0;

jQuery.fn.slideView = function(settings) {
	settings = jQuery.extend({
		easeFunc: "easeinout",
		easeTime: 500,
		toolTip: false
	}, settings);
	return this.each(function() {
		var container = jQuery(this);
		// Self-explanatory...
		container.addClass("stripViewer");
		// Get the width of a panel, set from CSS...
		var panelWidth = container.find("div.panel").width();
		// panelCount gives us a count of the panels in the container...
		var panelCount = container.find("div.panel").size();
		// Calculate the width of all the panels when lined up end-to-end...
		var stripViewerWidth = panelWidth*panelCount;
		// Use the above width to specify the CSS width for the panelContainer element...
		container.find("div.panelContainer").css("width" , stripViewerWidth);
		// Set variable to keep track of what panel we're on;
		var cPanel = 1;
		// Set the navWidth as a multiple of panelCount to account for margin-right on each li
		var navWidth = panelCount*2;
		
		this.moveLeft = function (callback) {
			if (cPanel == 1) {
				var cnt = - (panelWidth*(panelCount - 1));
				cPanel = panelCount;
			} else {
				cPanel -= 1;
				var cnt = - (panelWidth*(cPanel - 1));
			};
			if (typeof(callback) == "function") {
				container.find(".panelContainer").animate({ left: cnt }, settings.easeTime, settings.easeFunc, callback);
			}
			else {
				container.find(".panelContainer").animate({ left: cnt }, settings.easeTime, settings.easeFunc);			
			}
			return false;
		}
		this.moveRight = function (callback) {
			if (cPanel == panelCount) {
				var cnt = 0;
				cPanel = 1;
			} else {
				var cnt = - (panelWidth*cPanel);
				cPanel += 1;
			};
			if (typeof(callback) == "function") {
				container.find(".panelContainer").animate({ left: cnt }, settings.easeTime, settings.easeFunc, callback);
			}
			else {
				container.find(".panelContainer").animate({ left: cnt }, settings.easeTime, settings.easeFunc);			
			}
			return false;
		}

		this.moveToPos = function(z, snap) {
			var cnt = - (panelWidth*z);
			cPanel = z + 1;
			if (snap == true) {
				container.find("div.panelContainer").css({ left: cnt });
			}
			else {
				container.find("div.panelContainer").animate({ left: cnt }, settings.easeTime, settings.easeFunc);
			}
			if (typeof(setPage) == "function") { setPage(cPanel); }
			return false;
		}
		
		j++;
	});	
};

