/**
 * Prototype constructor
 * @param {String} title1 First title line
 * @param {String} title2 Second title line
 * @param {String} desc
 * @param {String} img
 * @param {String} thumbTitle1
 * @param {String} thumbTitle2
 * @param {String} linkLabel 
 * @param {String} linkUrl 
 * @param {String} linkTarget "_self" or "_blank" 
 * @param {Integer} order 
 */
function SliderItemVO(title1, title2, desc, img, thumb, thumbTitle1, thumbTitle2, linkLabel, linkUrl, linkTarget, order){
	this.title1      = title1;
	this.title2      = title2;
	this.desc	     = desc;
	this.img	     = img;
	this.thumb	     = thumb;
	this.thumbTitle1 = thumbTitle1;
	this.thumbTitle2 = thumbTitle2;
	this.linkLabel	 = linkLabel;
	this.linkUrl	 = linkUrl;	
	this.linkTarget	 = linkTarget;
	this.order	     = order;
}

SliderItemVO.prototype.getTitle1 = function() {
	return this.title1;
}

SliderItemVO.prototype.setTitle1 = function(title1) {
	this.title1 = title1;
}

SliderItemVO.prototype.getTitle2 = function() {
	return this.title2;
}

SliderItemVO.prototype.setTitle2 = function(title2) {
	this.title2 = title2;
}

SliderItemVO.prototype.getDesc = function() {
	return this.desc;
}

SliderItemVO.prototype.setDesc = function(desc) {
	this.desc = desc;
}

SliderItemVO.prototype.getImg = function() {
	return this.img;
}

SliderItemVO.prototype.setImg = function(img) {
	this.img = img;
}

SliderItemVO.prototype.getThumb = function() {
	return this.thumb;
}

SliderItemVO.prototype.setThumb = function(thumb) {
	this.thumb = thumb;
}

SliderItemVO.prototype.getThumbTitle1 = function() {
	return this.thumbTitle1;
}

SliderItemVO.prototype.setThumbTitle1 = function(thumbTitle1) {
	this.thumbTitle1 = thumbTitle1;
}

SliderItemVO.prototype.getThumbTitle2 = function() {
	return this.thumbTitle2;
}

SliderItemVO.prototype.setThumbTitle2 = function(thumbTitle2) {
	this.thumbTitle2 = thumbTitle2;
}

SliderItemVO.prototype.getLinkLabel = function() {
	return this.linkLabel;
}

SliderItemVO.prototype.setLinkLabel = function(linkLabel) {
	this.linkLabel = linkLabel;
}

SliderItemVO.prototype.getLinkUrl = function() {
	return this.linkUrl;
}

SliderItemVO.prototype.setLinkUrl = function(linkUrl) {
	this.linkUrl = linkUrl;
}

SliderItemVO.prototype.getLinkTarget = function() {
	return this.linkTarget;
}

SliderItemVO.prototype.setLinkTarget = function(linkTarget) {
	this.linkTarget = linkTarget;
}

SliderItemVO.prototype.getOrder = function() {
	return this.order;
}

SliderItemVO.prototype.setOrder = function(order) {
	this.order = order;
}
