//** 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 stepcarouse_2={
	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: {},

	getCSSValue:function(val){ //Returns either 0 (if val contains 'auto') or val as an integer
		return (val=="auto")? 0 : parseInt(val)
	},

	getremotepanel1s:function($, config){ //function to fetch external page containing the panel1 DIVs
		config.$belt1.html(this.ajaxloadingmsg)
		$.ajax({
			url: config.contenttype[1], //path to external content
			async: true,
			error:function(ajaxrequest){
				config.$belt1.html('Error fetching content.<br />Server Response: '+ajaxrequest.responseText)
			},
			success:function(content){
				config.$belt1.html(content)
				config.$panel1s=config.$gallery.find('.'+config.panel1class)
				stepcarousel.alignpanel1s($, config)
			}
		})
	},

	getoffset:function(what, offsettype){
		return (what.offsetParent)? what[offsettype]+this.getoffset(what.offsetParent, offsettype) : what[offsettype]
	},

	getCookie:function(Name){ 
		var re=new RegExp(Name+"=[^;]+", "i"); //construct RE to search for target name/value pair
		if (document.cookie.match(re)) //if cookie found
			return document.cookie.match(re)[0].split("=")[1] //return its value
		return null
	},

	setCookie:function(name, value){
		document.cookie = name+"="+value
	},

	fadebuttons:function(config, currentpanel1){
		config.$leftnavbutton.fadeTo('fast', currentpanel1==0? this.defaultbuttonsfade : 1)
		config.$rightnavbutton.fadeTo('fast', currentpanel1==config.lastvisiblepanel1? this.defaultbuttonsfade : 1)
		if (currentpanel1==config.lastvisiblepanel1){
			stepcarousel.stopautostep(config)
		}

	},

	addnavbuttons:function($, config, currentpanel1){
		config.$leftnavbutton=$('<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+' panel1s'}).appendTo('body')
		config.$rightnavbutton=$('<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+' panel1s'}).appendTo('body')
		config.$leftnavbutton.bind('click', function(){ //assign nav button event handlers
			stepcarousel.stepBy(config.galleryid, -config.defaultbuttons.moveby)
		})
		config.$rightnavbutton.bind('click', function(){ //assign nav button event handlers
			stepcarousel.stepBy(config.galleryid, config.defaultbuttons.moveby)
		})
		if (config.panel1behavior.wraparound==false){ //if carousel viewer should stop at first or last panel1 (instead of wrap back or forth)
			this.fadebuttons(config, currentpanel1)
		}
		return config.$leftnavbutton.add(config.$rightnavbutton)
	},

	alignpanel1s:function($, config){
		var panel1offset=0
		config.panel1offsets=[panel1offset] //array to store upper left offset of each panel1 (1st element=0)
		config.panel1widths=[] //array to store widths of each panel1
		config.$panel1s.each(function(index){ //loop through panel1s
			var $currentpanel1=$(this)
			$currentpanel1.css({float: 'none', position: 'absolute', left: panel1offset+'px'}) //position panel1
			$currentpanel1.bind('click', function(e){return config.onpanel1click(e.target)}) //bind onpanel1click() to onclick event
			panel1offset+=stepcarousel.getCSSValue($currentpanel1.css('marginRight')) + parseInt($currentpanel1.get(0).offsetWidth || $currentpanel1.css('width')) //calculate next panel1 offset
			config.panel1offsets.push(panel1offset) //remember this offset
			config.panel1widths.push(panel1offset-config.panel1offsets[config.panel1offsets.length-2]) //remember panel1 width
		})
		config.panel1offsets.pop() //delete last offset (redundant)
		var addpanel1widths=0
		var lastpanel1index=config.$panel1s.length-1
		config.lastvisiblepanel1=lastpanel1index
		for (var i=config.$panel1s.length-1; i>=0; i--){
			addpanel1widths+=(i==lastpanel1index? config.panel1widths[lastpanel1index] : config.panel1offsets[i+1]-config.panel1offsets[i])
			if (config.gallerywidth>addpanel1widths){
				config.lastvisiblepanel1=i //calculate index of panel1 that when in 1st position reveals the very last panel1 all at once based on gallery width
			}
		}
		config.$belt1.css({width: panel1offset+'px'}) //Set belt1 DIV to total panel1s' widths
		config.currentpanel1=(config.panel1behavior.persist)? parseInt(this.getCookie(config.galleryid+"persist")) : 0 //determine 1st panel1 to show by default
		config.currentpanel1=(typeof config.currentpanel1=="number" && config.currentpanel1<config.$panel1s.length)? config.currentpanel1 : 0
		var endpoint=config.panel1offsets[config.currentpanel1]+(config.currentpanel1==0? 0 : config.belt1offset)
		config.$belt1.css({left: -endpoint+'px'})
		if (config.defaultbuttons.enable==true){ //if enable default back/forth nav buttons
			var $navbuttons=this.addnavbuttons($, config, config.currentpanel1)
			$(window).bind("load resize", function(){ //refresh position of nav buttons when page loads/resizes, in case offsets weren't available document.oncontentload
				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'})
			})
		}
		if (config.autostep && config.autostep.enable){ //enable auto stepping of Carousel?		
			var $carouselparts=config.$gallery.add(typeof $navbuttons!="undefined"? $navbuttons : null)
			$carouselparts.bind('click', function(){
				config.autostep.status="stopped"
				stepcarousel.stopautostep(config)
			})
			$carouselparts.hover(function(){ //onMouseover
				stepcarousel.stopautostep(config)
				config.autostep.hoverstate="over"
			}, function(){ //onMouseout
				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"
				}
			})
			config.steptimer=setInterval(function(){stepcarousel.autorotate(config.galleryid)}, config.autostep.pause) //automatically rotate Carousel Viewer
		} //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.panel1offsets.length-1)
		var endpoint=config.panel1offsets[pindex]+(pindex==0? 0 : config.belt1offset)
		if (config.panel1behavior.wraparound==false && config.defaultbuttons.enable==true){ //if carousel viewer should stop at first or last panel1 (instead of wrap back or forth)
			this.fadebuttons(config, pindex)
		}
		config.$belt1.animate({left: -endpoint+'px'}, config.panel1behavior.speed, function(){config.onslideaction(this)})
		config.currentpanel1=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 (!isauto) //if stepBy() function isn't called by autorotate() function
			stepcarousel.stopautostep(config)
		var direction=(steps>0)? 'forward' : 'back' //If "steps" is negative, that means backwards
		var pindex=config.currentpanel1+steps //index of panel1 to stop at
		if (config.panel1behavior.wraparound==false){ //if carousel viewer should stop at first or last panel1 (instead of wrap back or forth)
			pindex=(direction=="back" && pindex<=0)? 0 : (direction=="forward")? Math.min(pindex, config.lastvisiblepanel1) : pindex
			if (config.defaultbuttons.enable==true){ //if default nav buttons are enabled, fade them in and out depending on if at start or end of carousel
				stepcarousel.fadebuttons(config, pindex)
			}	
		}
		else{ //else, for normal stepBy behavior
			if (pindex>config.lastvisiblepanel1 && direction=="forward"){
				//if destination pindex is greater than last visible panel1, yet we're currently not at the end of the carousel yet
				pindex=(config.currentpanel1<config.lastvisiblepanel1)? config.lastvisiblepanel1 : 0
			}
			else if (pindex<0 && direction=="back"){
				//if destination pindex is less than 0, yet we're currently not at the beginning of the carousel yet
				pindex=(config.currentpanel1>0)? 0 : config.lastvisiblepanel1 /*wrap around left*/
			}
		}
		var endpoint=config.panel1offsets[pindex]+(pindex==0? 0 : config.belt1offset) //left distance for belt1 DIV to travel to
		if (pindex==0 && direction=='forward' || config.currentpanel1==0 && direction=='back' && config.panel1behavior.wraparound==true){ //decide whether to apply "push pull" effect
			config.$belt1.animate({left: -config.panel1offsets[config.currentpanel1]-(direction=='forward'? 100 : -30)+'px'}, 'normal', function(){
				config.$belt1.animate({left: -endpoint+'px'}, config.panel1behavior.speed, function(){config.onslideaction(this)})
			})
		}
		else
			config.$belt1.animate({left: -endpoint+'px'}, config.panel1behavior.speed, function(){config.onslideaction(this)})
		config.currentpanel1=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 (config.statusvars.length==3){ //if 3 status vars defined
			var startpoint=config.currentpanel1 //index of first visible panel1 
			var visiblewidth=0
			for (var endpoint=startpoint; endpoint<config.panel1offsets.length; endpoint++){ //index (endpoint) of last visible panel1
				visiblewidth+=config.panel1widths[endpoint]
				if (visiblewidth>config.gallerywidth){
					break
				}
			}
			startpoint+=1 //format startpoint for user friendiness
			endpoint=(endpoint+1==startpoint)? startpoint : endpoint //If only one image visible on the screen and partially hidden, set endpoint to startpoint
			var valuearray=[startpoint, endpoint, config.panel1widths.length]
			for (var i=0; i<config.statusvars.length; i++){
				window[config.statusvars[i]]=valuearray[i] //Define variable (with user specified name) and set to one of the status values
				config.$statusobjs[i].text(valuearray[i]+" ") //Populate element on page with ID="user specified name" with one of the status values
			}
		}
		stepcarousel.selectpaginate(jQuery, galleryid)
	},

	createpaginate:function($, config){
		if (config.$paginatediv.length==1){
			var $templateimg=config.$paginatediv.find('img["data-over"]:eq(0)') //reference first matching image on page
			var controlpoints=[], controlsrc=[], imgarray=[], moveby=$templateimg.attr("data-moveby") || 1
			var asize=(moveby==1? 0:1) + Math.floor((config.lastvisiblepanel1+1) / moveby) //calculate # of pagination links to create
			var imghtml=$('<div>').append($templateimg.clone()).html() //get HTML of first matching image
			srcs=[$templateimg.attr('src'), $templateimg.attr('data-over'), $templateimg.attr('data-select')] //remember control's over and out, and selected image src
			for (var i=0; i<asize; i++){
				var moveto=Math.min(i*moveby, config.lastvisiblepanel1)
				imgarray.push(imghtml.replace(/>$/, ' data-index="'+i+'" data-moveto="'+moveto+'" title="Move to panel1 '+(moveto+1)+'">') +'\n')
				controlpoints.push(moveto) //store panel1 index each control goes to when clicked on
			}
			var $controls=$('<span></span>').replaceAll($templateimg).append(imgarray.join('')).find('img') //replace template link with links and return them
			$controls.css({cursor:'pointer'})
			config.$paginatediv.bind('click', function(e){
				var $target=$(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=$(e.target)
				if ($target.is('img') && $target.attr('data-over')){
					if (parseInt($target.attr('data-index')) != config.pageinfo.curselected) //if this isn't the selected link
						$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++){
				if (config.pageinfo.controlpoints[i] <= config.currentpanel1) //find largest control point that's less than or equal to current panel1 shown
					config.pageinfo.curselected=i
			}
			if (typeof config.pageinfo.prevselected!=null) //deselect previously selected link (if found)
				config.pageinfo.$controls.eq(config.pageinfo.prevselected).attr('src', config.pageinfo.srcs[0])
			config.pageinfo.$controls.eq(config.pageinfo.curselected).attr('src', config.pageinfo.srcs[2]) //select current paginate link
			config.pageinfo.prevselected=config.pageinfo.curselected //set current selected link to previous
		}
	},


	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")}
		config.$belt1=config.$gallery.find('.'+config.belt1class) //Find belt1 DIV that contains all the panel1s
		config.$panel1s=config.$gallery.find('.'+config.panel1class) //Find panel1 DIVs that each contain a slide
		config.$paginatediv=$('#'+config.galleryid+'-paginate') //get pagination DIV (if defined)
		if (config.autostep)
			config.autostep.pause+=config.panel1behavior.speed
		config.onpanel1click=(typeof config.onpanel1click=="undefined")? function(target){} : config.onpanel1click //attach custom "onpanel1click" event handler
		config.onslideaction=(typeof config.onslide=="undefined")? function(){} : function(belt1obj){$(belt1obj).stop(); config.onslide()} //attach custom "onslide" event handler
		config.oninit=(typeof config.oninit=="undefined")? function(){} : config.oninit //attach custom "oninit" event handler
		config.belt1offset=stepcarousel.getCSSValue(config.$belt1.css('marginLeft')) //Find length of belt1 DIV's left margin
		config.statusvars=config.statusvars || []  //get variable names that will hold "start", "end", and "total" slides info
		config.$statusobjs=[$('#'+config.statusvars[0]), $('#'+config.statusvars[1]), $('#'+config.statusvars[2])]
		config.currentpanel1=0
		stepcarousel.configholder[config.galleryid]=config //store config parameter as a variable
		if (config.contenttype[0]=="ajax" && typeof config.contenttype[1]!="undefined") //fetch ajax content?
			stepcarousel.getremotepanel1s($, config)
		else
			stepcarousel.alignpanel1s($, config) //align panel1s and initialize gallery
	},

	resetsettings:function($, config){
		config.$gallery.unbind()
		config.$belt1.stop()
		config.$panel1s.remove()
		if (config.$leftnavbutton){
			config.$leftnavbutton.remove()
			config.$rightnavbutton.remove()
		}
		if (config.$paginatediv.length==1){
			config.$paginatediv.unbind()
			config.pageinfo.$controls.eq(0).attr('src', config.pageinfo.srcs[0]).removeAttr('data-index').removeAttr('data-moveto').removeAttr('title') //reset first pagination link so it acts as template again
			.end().slice(1).remove() //then remove all but first pagination link
		}
		if (config.autostep)
			config.autostep.status=null
		if (config.panel1behavior.persist){
			stepcarousel.setCookie(window[config.galleryid+"persist"], 0) //set initial panel1 to 0, overridden w/ current panel1 if window.unload is invoked
		}
	},

	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=$('#'+config.galleryid)
			stepcarousel.init($, config)
		}) //end document.ready
		jQuery(window).bind('unload', function(){ //clean up on page unload
			stepcarousel.resetsettings($, config)
			if (config.panelbehavior.persist)
				stepcarousel.setCookie(config.galleryid+"persist", config.currentpanel1)
			jQuery.each(config, function(ai, oi){
				oi=null
			})
			config=null
		})
	}
}



