//** Step Carousel Viewer- (c) Dynamic Drive DHTML code library: http://www.dynamicdrive.com
//** Script Download/ http://www.dynamicdrive.com/dynamicindex4/stepcarousel.htm
//** Usage Terms: http://www.dynamicdrive.com/notice.htm
//** Current version (Sept 29th, 09'): 1.8 See http://www.dynamicdrive.com/dynamicindex4/stepcarouselchangelog.txt for details


jQuery.noConflict();

var stepcarousel =
{
	ajaxloadingmsg: '<div style="margin: 1em; font-weight: bold"><img src="ajaxloadr.gif" style="vertical-align: middle" /> Fetching Content. Please wait...</div>', //customize HTML to show while fetching Ajax content
	defaultbuttonsfade: 0.4, //Fade degree for disabled nav buttons (0=completely transparent, 1=completely opaque)
	configholder: {},

	// Returns either 0 (if val contains 'auto') or val as an integer
	getCSSValue:function(val)
	{ 
		return (val == "auto") ? 0 : parseInt(val)
	},

	// function to fetch external page containing the panel DIVs
	getremotepanels:function($, config)
	{ 
		config.$belt.html(this.ajaxloadingmsg);
		
		$.ajax(
		{
			url: config.contenttype[1], //path to external content
			async: true,
			error:function(ajaxrequest)
			{
				config.$belt.html('Error fetching content.<br />Server Response: ' + ajaxrequest.responseText)
			},
			success:function(content)
			{
				config.$belt.html(content)
				config.$panels = config.$gallery.find('.' + config.panelclass)
				stepcarousel.alignpanels($, config)
			}
		})
	},

	getoffset:function(what, offsettype)
	{
		return (what.offsetParent) ? what[offsettype] + this.getoffset(what.offsetParent, offsettype) : what[offsettype];
	},

	getCookie:function(Name)
	{ 
		//14:56 10.05.2010 - GR
		return null;
		// construct RE to search for target name/value pair
		var re = new RegExp(Name + "=[^;]+", "i"); 
		// if cookie found
		if(document.cookie.match(re))
		{
			// return its value
			return document.cookie.match(re)[0].split("=")[1];
		}
		return null;
	},

	setCookie:function(name, value)
	{
		document.cookie = name + "=" + value
	},

	fadebuttons:function(config, currentpanel)
	{
		config.$leftnavbutton.fadeTo('fast', currentpanel == 0 ? this.defaultbuttonsfade : 1);
		config.$rightnavbutton.fadeTo('fast', currentpanel == config.lastvisiblepanel ? this.defaultbuttonsfade : 1);
		if(currentpanel == config.lastvisiblepanel)
		{
			stepcarousel.stopautostep(config);
		}
	},

	addnavbuttons:function($, config, currentpanel)
	{
		config.$leftnavbutton = jQuery('<img src="' + config.defaultbuttons.leftnav[0] + '">').css({zIndex:50, position:'absolute', left:config.offsets.left + config.defaultbuttons.leftnav[1] + 'px', top:config.offsets.top + config.defaultbuttons.leftnav[2] + 'px', cursor:'hand', cursor:'pointer'}).attr({title:'Back ' + config.defaultbuttons.moveby + ' panels'}).appendTo('body');
		config.$rightnavbutton = jQuery('<img src="' + config.defaultbuttons.rightnav[0] + '">').css({zIndex:50, position:'absolute', left:config.offsets.left + config.$gallery.get(0).offsetWidth + config.defaultbuttons.rightnav[1] + 'px', top:config.offsets.top + config.defaultbuttons.rightnav[2] + 'px', cursor:'hand', cursor:'pointer'}).attr({title:'Forward ' + config.defaultbuttons.moveby + ' panels'}).appendTo('body');
		config.$leftnavbutton.bind('click', 
			// assign nav button event handlers
			function()
			{ 
				stepcarousel.stepBy(config.galleryid, -config.defaultbuttons.moveby);
			});
		
		config.$rightnavbutton.bind('click', 
			// assign nav button event handlers
			function()
			{ 
				stepcarousel.stepBy(config.galleryid, config.defaultbuttons.moveby);
			});
			
		// if carousel viewer should stop at first or last panel (instead of wrap back or forth)
		if(config.panelbehavior.wraparound == false)
		{ 
			this.fadebuttons(config, currentpanel);
		}
		return config.$leftnavbutton.add(config.$rightnavbutton);
	},

	alignpanels:function($, config)
	{
		var paneloffset = 0;
		// array to store upper left offset of each panel (1st element=0)
		config.paneloffsets = [paneloffset];
		// array to store widths of each panel
		config.panelwidths = []; 
		// loop through panels
		config.$panels.each(function(index)
		{ 
			var $currentpanel = jQuery(this);
			// position panel
			$currentpanel.css({float: 'none', position: 'absolute', left: paneloffset+'px'});
			// bind onpanelclick() to onclick event
			$currentpanel.bind('click', function(e){return config.onpanelclick(e.target)});
			// calculate next panel offset
			paneloffset += stepcarousel.getCSSValue($currentpanel.css('marginRight')) + parseInt($currentpanel.get(0).offsetWidth || $currentpanel.css('width'));
			// remember this offset
			config.paneloffsets.push(paneloffset);
			// remember panel width
			config.panelwidths.push(paneloffset - config.paneloffsets[config.paneloffsets.length - 2]);
		});
		
		// delete last offset (redundant)
		config.paneloffsets.pop(); 
		var addpanelwidths = 0;
		var lastpanelindex = config.$panels.length - 1;
		config.lastvisiblepanel = lastpanelindex;
		
		for(var i = config.$panels.length - 1; i >= 0; i--)
		{
			addpanelwidths += (i == lastpanelindex ? config.panelwidths[lastpanelindex] : config.paneloffsets[i+1] - config.paneloffsets[i]);
			if(config.gallerywidth > addpanelwidths)
			{
				// calculate index of panel that when in 1st position reveals the very last panel all at once based on gallery width
				config.lastvisiblepanel = i;
			}
		}
		
		// Set Belt DIV to total panels' widths
		config.$belt.css({width: paneloffset+'px'});
		// determine 1st panel to show by default
		config.currentpanel = (config.panelbehavior.persist) ? parseInt(this.getCookie(config.galleryid + "persist")) : 0;
		config.currentpanel = (typeof config.currentpanel == "number" && config.currentpanel < config.$panels.length) ? config.currentpanel : 0;
		var endpoint = config.paneloffsets[config.currentpanel] + (config.currentpanel == 0 ? 0 : config.beltoffset);
		config.$belt.css({left: -endpoint + 'px'});
		
		// if enable default back/forth nav buttons
		if(config.defaultbuttons.enable == true)
		{ 
			var $navbuttons = this.addnavbuttons($, config, config.currentpanel);
			jQuery(window).bind("load resize", 
				// refresh position of nav buttons when page loads/resizes, in case offsets weren't available document.oncontentload
				function()
				{
					config.offsets = {left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")}
					config.$leftnavbutton.css({left:config.offsets.left+config.defaultbuttons.leftnav[1]+'px', top:config.offsets.top+config.defaultbuttons.leftnav[2]+'px'});
					config.$rightnavbutton.css({left:config.offsets.left+config.$gallery.get(0).offsetWidth+config.defaultbuttons.rightnav[1]+'px', top:config.offsets.top+config.defaultbuttons.rightnav[2]+'px'});
				})
		}
		
		// enable auto stepping of Carousel?
		if(config.autostep && config.autostep.enable)
		{
			var $carouselparts = config.$gallery.add(typeof $navbuttons!="undefined" ? $navbuttons : null);
			$carouselparts.bind('click', function()
			{
				config.autostep.status = "stopped";
				stepcarousel.stopautostep(config);
			});
			
			$carouselparts.hover(
				// onMouseover
				function()
				{
					stepcarousel.stopautostep(config);
					config.autostep.hoverstate = "over";
				},
				// onMouseout
				function()
				{
					if(config.steptimer && config.autostep.hoverstate == "over" && config.autostep.status != "stopped")
					{
						config.steptimer = setInterval(function(){stepcarousel.autorotate(config.galleryid)}, config.autostep.pause);
						config.autostep.hoverstate = "out";
					}
				}
			)
			// automatically rotate Carousel Viewer
			config.steptimer = setInterval(function(){stepcarousel.autorotate(config.galleryid)}, config.autostep.pause);
		} 
		// end enable auto stepping check
		
		this.createpaginate($, config);
		this.statusreport(config.galleryid);
		config.oninit();
		config.onslideaction(this);
	},

	stepTo:function(galleryid, pindex)
	{
		// User entered pindex starts at 1 for intuitiveness. Internally pindex still starts at 0
		var config = stepcarousel.configholder[galleryid];
		if(typeof config == "undefined")
		{
			// alert("There's an error with your set up of Carousel Viewer \""+galleryid+ "\"!")
			return;
		}
		stepcarousel.stopautostep(config);
		var pindex = Math.min(pindex - 1, config.paneloffsets.length - 1);
		var endpoint = config.paneloffsets[pindex] + (pindex == 0 ? 0 : config.beltoffset);
		
		// if carousel viewer should stop at first or last panel (instead of wrap back or forth)
		if(config.panelbehavior.wraparound == false && config.defaultbuttons.enable == true)
		{
			this.fadebuttons(config, pindex);
		}
		
		config.$belt.animate({left: -endpoint + 'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)});
		config.currentpanel = pindex;
		this.statusreport(galleryid);
	},

	stepBy:function(galleryid, steps, isauto)
	{
		var config = stepcarousel.configholder[galleryid];
		if(typeof config == "undefined")
		{
			// alert("There's an error with your set up of Carousel Viewer \""+galleryid+ "\"!")
			return;
		}
		
		// if stepBy() function isn't called by autorotate() function
		if(!isauto)
		{
			stepcarousel.stopautostep(config);
		}
		// if "steps" is negative, that means backwards
		var direction = (steps > 0)? 'forward' : 'back'
		// index of panel to stop at
		var pindex = config.currentpanel + steps;
		// if carousel viewer should stop at first or last panel (instead of wrap back or forth)
		if(config.panelbehavior.wraparound == false)
		{
			pindex = (direction == "back" && pindex <= 0)? 0 : (direction == "forward") ? Math.min(pindex, config.lastvisiblepanel) : pindex;
			// if default nav buttons are enabled, fade them in and out depending on if at start or end of carousel
			if(config.defaultbuttons.enable == true)
			{
				stepcarousel.fadebuttons(config, pindex);
			}
		}
		// else, for normal stepBy behavior
		else
		{ 
			// if destination pindex is greater than last visible panel, yet we're currently not at the end of the carousel yet
			if(pindex > config.lastvisiblepanel && direction == "forward")
			{
				pindex = (config.currentpanel < config.lastvisiblepanel)? config.lastvisiblepanel : 0
			}
			// if destination pindex is less than 0, yet we're currently not at the beginning of the carousel yet
			else if (pindex < 0 && direction == "back")
			{
				// wrap around left
				pindex = (config.currentpanel > 0) ? 0 : config.lastvisiblepanel;
			}
		}
		// left distance for Belt DIV to travel to
		var endpoint = config.paneloffsets[pindex] + (pindex == 0 ? 0 : config.beltoffset);
		// decide whether to apply "push pull" effect
		if(pindex == 0 && direction == 'forward' || config.currentpanel == 0 && direction == 'back' && config.panelbehavior.wraparound == true)
		{
			config.$belt.animate({left: -config.paneloffsets[config.currentpanel] - (direction == 'forward'? 100 : -30) + 'px'}, 'normal', 
				function()
				{
					config.$belt.animate({left: -endpoint + 'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)});
				}
			)
		}
		else
		{
			config.$belt.animate({left: -endpoint + 'px'}, config.panelbehavior.speed, function(){config.onslideaction(this)});
		}
		config.currentpanel = pindex;
		this.statusreport(galleryid);
	},

	autorotate:function(galleryid)
	{
		var config = stepcarousel.configholder[galleryid];
		this.stepBy(galleryid, config.autostep.moveby, true);
	},

	stopautostep:function(config)
	{
		clearTimeout(config.steptimer);
	},

	statusreport:function(galleryid)
	{
		var config = stepcarousel.configholder[galleryid];
		// if 3 status vars defined
		if(config.statusvars.length == 3)
		{
			// index of first visible panel
			var startpoint = config.currentpanel;
			var visiblewidth = 0;
			// index (endpoint) of last visible panel
			for(var endpoint = startpoint; endpoint < config.paneloffsets.length; endpoint++)
			{
				visiblewidth += config.panelwidths[endpoint];
				if(visiblewidth > config.gallerywidth)
				{
					break;
				}
			}
			// format startpoint for user friendiness
			startpoint += 1;
			
			// if only one image visible on the screen and partially hidden, set endpoint to startpoint
			endpoint = (endpoint + 1 == startpoint)? startpoint : endpoint;
			var valuearray = [startpoint, endpoint, config.panelwidths.length];
			for(var i=0; i < config.statusvars.length; i++)
			{
				// Define variable (with user specified name) and set to one of the status values
				window[config.statusvars[i]] = valuearray[i];
				// Populate element on page with ID="user specified name" with one of the status values
				config.$statusobjs[i].text(valuearray[i] + " ");
			}
		}
		stepcarousel.selectpaginate(jQuery, galleryid);
	},

	createpaginate:function($, config)
	{
		if(config.$paginatediv.length == 1)
		{
			// reference first matching image on page
			var $templateimg = config.$paginatediv.find('img["data-over"]:eq(0)');
			var controlpoints=[], controlsrc=[], imgarray=[], moveby=$templateimg.attr("data-moveby") || 1;
			// calculate # of pagination links to create
			var asize = (moveby == 1 ? 0 : 1) + Math.floor((config.lastvisiblepanel + 1) / moveby);
			// get HTML of first matching image
			var imghtml = jQuery('<div>').append($templateimg.clone()).html();
			// remember control's over and out, and selected image src
			srcs = [$templateimg.attr('src'), $templateimg.attr('data-over'), $templateimg.attr('data-select')];
			for(var i=0; i<asize; i++)
			{
				var moveto = Math.min(i * moveby, config.lastvisiblepanel);
				imgarray.push(imghtml.replace(/>$/, ' data-index="' + i + '" data-moveto="' + moveto + '" title="Move to Panel ' + (moveto + 1) + '">') + '\n');
				// store panel index each control goes to when clicked on
				controlpoints.push(moveto);
			}
			// replace template link with links and return them
			var $controls = jQuery('<span></span>').replaceAll($templateimg).append(imgarray.join('')).find('img');
			
			$controls.css({cursor:'pointer'});
			
			config.$paginatediv.bind('click', 
				function(e)
				{
					var $target=jQuery(e.target)
					if($target.is('img') && $target.attr('data-over'))
					{
						stepcarousel.stepTo(config.galleryid, parseInt($target.attr('data-moveto')) + 1);
					}
				}
			)
			
			config.$paginatediv.bind('mouseover mouseout', 
				function(e)
				{
					var $target = jQuery(e.target);
					if($target.is('img') && $target.attr('data-over'))
					{
						// if this isn't the selected link
						if(parseInt($target.attr('data-index')) != config.pageinfo.curselected)
						{
							$target.attr('src', srcs[(e.type=="mouseover")? 1 : 0]);
						}
					}
				}
			)
			
			config.pageinfo = {controlpoints:controlpoints, $controls:$controls,  srcs:srcs, prevselected:null, curselected:null};
		}
	},
	
	selectpaginate:function($, galleryid)
	{
		var config = stepcarousel.configholder[galleryid];
		if(config.$paginatediv.length == 1)
		{
			for(var i=0; i < config.pageinfo.controlpoints.length; i++)
			{
				// find largest control point that's less than or equal to current panel shown
				if(config.pageinfo.controlpoints[i] <= config.currentpanel)
				{
					config.pageinfo.curselected = i;
				}
			}
			
			// deselect previously selected link (if found)
			if(typeof config.pageinfo.prevselected != null)
			{
				config.pageinfo.$controls.eq(config.pageinfo.prevselected).attr('src', config.pageinfo.srcs[0]);
			}
			// select current paginate link
			config.pageinfo.$controls.eq(config.pageinfo.curselected).attr('src', config.pageinfo.srcs[2]);
			// set current selected link to previous
			config.pageinfo.prevselected=config.pageinfo.curselected;
		}
	},


	loadcontent:function(galleryid, url)
	{
		var config = stepcarousel.configholder[galleryid];
		config.contenttype = ['ajax', url];
		stepcarousel.stopautostep(config);
		stepcarousel.resetsettings($, config);
		stepcarousel.init(jQuery, config);
	},

	init:function($, config)
	{
		config.gallerywidth = config.$gallery.width();
		config.offsets = {left:stepcarousel.getoffset(config.$gallery.get(0), "offsetLeft"), top:stepcarousel.getoffset(config.$gallery.get(0), "offsetTop")};
		// Find Belt DIV that contains all the panels
		config.$belt = config.$gallery.find('.' + config.beltclass);
		// Find Panel DIVs that each contain a slide
		config.$panels = config.$gallery.find('.' + config.panelclass);
		// get pagination DIV (if defined)
		config.$paginatediv = jQuery('#' + config.galleryid + '-paginate');
		if(config.autostep)
		{
			config.autostep.pause += config.panelbehavior.speed;
		}
		// attach custom "onpanelclick" event handler
		config.onpanelclick = (typeof config.onpanelclick == "undefined") ? function(target){} : config.onpanelclick;
		// attach custom "onslide" event handler
		config.onslideaction = (typeof config.onslide == "undefined") ? function(){} : function(beltobj){jQuery(beltobj).stop(); config.onslide()};
		// attach custom "oninit" event handler
		config.oninit = (typeof config.oninit == "undefined") ? function(){} : config.oninit;
		// Find length of Belt DIV's left margin
		config.beltoffset = stepcarousel.getCSSValue(config.$belt.css('marginLeft'));
		// get variable names that will hold "start", "end", and "total" slides info
		config.statusvars = config.statusvars || [];
		config.$statusobjs = [jQuery('#' + config.statusvars[0]), jQuery('#' + config.statusvars[1]), jQuery('#' + config.statusvars[2])];
		config.currentpanel = 0;
		// store config parameter as a variable
		stepcarousel.configholder[config.galleryid] = config;
		// fetch ajax content?
		if(config.contenttype[0] == "ajax" && typeof config.contenttype[1] != "undefined")
		{
			stepcarousel.getremotepanels($, config);
		}
		// align panels and initialize gallery
		else
		{
			stepcarousel.alignpanels($, config);
		}
	},

	resetsettings:function($, config)
	{
		config.$gallery.unbind();
		config.$belt.stop();
		config.$panels.remove();
		if(config.$leftnavbutton)
		{
			config.$leftnavbutton.remove();
			config.$rightnavbutton.remove();
		}
		
		if(config.$paginatediv.length == 1)
		{
			config.$paginatediv.unbind();
			// reset first pagination link so it acts as template again
			config.pageinfo.$controls.eq(0).attr('src', config.pageinfo.srcs[0]).removeAttr('data-index').removeAttr('data-moveto').removeAttr('title')
			// then remove all but first pagination link
			.end().slice(1).remove(); 
		}
		
		if(config.autostep)
		{
			config.autostep.status = null;
		}
		
		if(config.panelbehavior.persist)
		{
			// set initial panel to 0, overridden w/ current panel if window.unload is invoked
			stepcarousel.setCookie(window[config.galleryid + "persist"], 0);
		}
	},

	setup:function(config)
	{
		// Disable Step Gallery scrollbars ASAP dynamically (enabled for sake of users with JS disabled)
		document.write('<style type="text/css">\n#' + config.galleryid + '{overflow: hidden;}\n</style>')
		jQuery(document).ready(function($)
		{
			config.$gallery = jQuery('#' + config.galleryid);
			stepcarousel.init($, config);
		});
		// end document.ready
		
		jQuery(window).bind('unload', 
			// clean up on page unload
			function()
			{
				stepcarousel.resetsettings($, config);
				if(config.panelbehavior.persist)
				{
					stepcarousel.setCookie(config.galleryid + "persist", config.currentpanel);
				}
				
				jQuery.each(config, 
					function(ai, oi)
					{
						oi = null;
					}
				)
				config = null;
			}
		)
	},
	
	galleryOver:function(galleryid, func)
	{
		var config = stepcarousel.configholder[galleryid];
		
		config.$gallery.bind('mouseover', func);
		
		if(config.defaultbuttons.enable == true && config.$leftnavbutton)
		{
			config.$leftnavbutton.bind('mouseover', func);
			
			config.$rightnavbutton.bind('mouseover', func);
		}
		
		// config.$paginatediv.bind('mouseover', func);
	},
	
	galleryOut:function(galleryid, func)
	{
		var config = stepcarousel.configholder[galleryid];
		
		config.$gallery.bind('mouseout', func);
		
		if(config.defaultbuttons.enable == true && config.$leftnavbutton)
		{
			config.$leftnavbutton.bind('mouseout', func);
			
			config.$rightnavbutton.bind('mouseout', func);
		}
		
		// config.$paginatediv.bind('mouseover', func);
	}
}



