function Jslide()
{
	this.SlideCollectionData;
	this.Width;
	this.Height;

	// Databinding for property SlideCollectionData
	this.SetSlideCollectionData = function(data)
	{
		///UserCodeRegionStart:[SetSlideCollectionData] (do not remove this comment.)
		this.SlideCollectionData = data ;
		
		
		
		
		
		///UserCodeRegionEnd: (do not remove this comment.)
	}

	// Databinding for property SlideCollectionData
	this.GetSlideCollectionData = function()
	{
		///UserCodeRegionStart:[GetSlideCollectionData] (do not remove this comment.)

		return this.SlideCollectionData;	
		
		
		
		
		///UserCodeRegionEnd: (do not remove this comment.)
	}

	this.show = function()
	{
		///UserCodeRegionStart:[show] (do not remove this comment.)

	    var i = 0;
		var demoSlide = new Array();
		var title ;
		var url;
		var imageurl;
		var description;
		var buffer;
	    for( i=0; this.SlideCollectionData[i]!=undefined;i++)
		{		
		titulo = this.SlideCollectionData[i].Title;
		imageurl = this.SlideCollectionData[i].Image ;
		description = this.SlideCollectionData[i].Description ;
		url = this.SlideCollectionData[i].Url ;

		if (i==0)
		{
			buffer = '<DIV  id='+this.ControlName+' name='+this.ControlName+'><A href="'+ url +'"><IMG id=imgSlide height='+this.Height+' alt="" src="'+ imageurl +'" width='+this.Width+' border=0 imagen="auto1"></A><DIV ><P><A href="'+ url +'" >'+ titulo +' </A><P>'+ description +'</DIV></DIV>';
		}else{
			buffer = buffer + '<DIV id='+this.ControlName+' name='+this.ControlName+'><A href="'+ url +'"><IMG id=imgSlide height='+this.Height+'  alt="" src="'+ imageurl +'" width='+this.Width+' border=0 imagen="auto1"></A><DIV ><P><A href="'+ url +'" >'+ titulo +' </A><P>'+ description +'</DIV></DIV>';
		}
		
		}
		buffer = buffer + '<DIV id=botoneraSlide  style="Z-INDEX: 9; LEFT: 1px; VISIBILITY: hidden; POSITION: absolute; TOP: 900px"><TABLE height=0 cellSpacing=0 cellPadding=0 width=94 border=0><TBODY><TR><TD vAlign=top width=28><IMG id=btn_atras onmouseover=sgppnov(this) style="CURSOR: pointer" onclick=fnc_prev() onmouseout=sgppnou(this) alt="" src="JSlide/btn_atras.gif" border=0></TD><TD vAlign=top width=35><IMG id=btn_pausa onmouseover=sgppnov(this) style="CURSOR: pointer" onclick=stopstart(this) onmouseout=sgppnou(this) alt="" src="JSlide/btn_pausa.gif" border=0 name=pause></TD><TD vAlign=top width=28><IMG id=btn_siguiente onmouseover=sgppnov(this) style="CURSOR: pointer" onclick=fnc_next() onmouseout=sgppnou(this) alt="" src="JSlide/btn_siguiente.gif" border=0></TD></TR></TBODY></TABLE></DIV>';
		
		this.setHtml(buffer);
		var slideHeight=this.Height;
		numpages=i;
		firsthide(this.ControlName);
		
		
		
		
		
		///UserCodeRegionEnd: (do not remove this comment.)
	}
	///UserCodeRegionStart:[User Functions] (do not remove this comment.)


	
	
	
	
	
	
	
	
	
	
	
	
	
	///UserCodeRegionEnd: (do not remove this comment.):
}
