
$.fn.MoveSlide = function(vtimer) {
	var $thisObj = $(this);
	var PanelWidth = parseFloat($(this).css("width"));
	var Panels = $("div:first div",this);
	var CanvasWidth = -(parseFloat(PanelWidth,10) * Panels.length);
	var curLeft = $("div:first",this).css("left");
	
	if(curLeft == "auto") { curLeft = "0px"}; // IE FIX
	
	$("#status",document).html("left = "+curLeft);
	curLeft = parseFloat(curLeft);
	var movement = parseFloat(curLeft) - parseFloat(PanelWidth);
	var endcheck = CanvasWidth + PanelWidth;
	
	
	
	if(curLeft <= endcheck) { movement = 0};
	
	if(Panels.length <= 1) { 
		return false; // NO NEED TO ANIMATE LONELY SLIDES.
		};
	
	var $Canvas = $("div:first",this);
	var $canvasImages = $("img",$Canvas);
	
	$canvasImages.animate({"top":50,"left":150},'fast',
							  function() {
								  $Canvas.animate({"left":movement},'slow',
												  function() {
													  $canvasImages.animate({"top":5,"left":175},'fast',
																			function() {
																				$thisObj.stopTime($thisObj.attr("id"));
																				$thisObj.oneTime(vtimer,$thisObj.attr("id"),function() { $thisObj.MoveSlide(vtimer)});
																				
																			});
												  });
								});
};



	


