﻿function ImagePT (url, title, description, urlDestination) {
    this._url = url;
    this._description = description;
    this._title = title;
    this._urlDestination = urlDestination;
    }

ImagePT.prototype._url;
ImagePT.prototype._title;
ImagePT.prototype._description;
ImagePT.prototype._urlDestination;

ImagePT.prototype.getUrl = function() {
    return this._url;   
}
ImagePT.prototype.getTitle = function() {
    return this._title;   
}
ImagePT.prototype.getDescription = function() {
    return this._description;   
}
ImagePT.prototype.getUrlDestination = function() {
    return this._urlDestination;   
}


var imageList = new Array(3);
imageList[0] = new ImagePT("/Portals/1/Resources/Images/banner%20innovacion.jpg","The passion for innovation makes us move forward ...","","/ServicesSolutions/tabid/101/Default.aspx");
imageList[1] = new ImagePT("/Portals/1/Resources/Images/banner%20tecnologia.jpg","The passion for technology pushes us forward ... ","","/ServicesSolutions/tabid/101/Default.aspx");
imageList[2] = new ImagePT("/Portals/1/Resources/Images/tercer%20banner.jpg","In order to support the competitive development of our customers... ","","/Experiencias/tabid/107/Default.aspx");