function Event ( ) {
	this.id = 0;
	this.name = "";
	this.description = "";
	this.circuit = "";
	this.year = 0;
	this.month = 0;
	this.day = 0;
	
	this.images = new Array ( );
	this.articles = new Array ( );
	
	this.getId = function ( ) {
		return this.id;
	}
	
	this.getName = function ( ) {
		return this.name;
	}
	
	this.getDescription = function ( ) {
		return this.description;
	}
	
	this.getCircuit = function ( ) {
		return this.circuit;
	}
	
	this.getYear = function ( ) {
		return this.year;
	}
	
	this.getMonth = function ( ) {
		return this.month;
	}
	
	this.getDay = function ( ) {
		return this.day;
	}
	
	this.getImages = function ( ) {
		return this.images;
	}
	
	this.getArticles = function ( ) {
		return this.articles;
	}
	
	this.setId = function ( id ) {
		this.id = id;
	}
	
	this.setName = function ( name ) {
		this.name = name;
	}
	
	this.setDescription = function ( description ) {
		this.description = description;
	}
	
	this.setCircuit = function ( circuit ) {
		this.circuit = circuit;
	}
	
	this.setYear = function ( year ) {
		this.year = year;
	}
	
	this.setMonth = function ( month ) {
		this.month = month;
	}
	
	this.setDay = function ( day ) {
		this.day = day;
	}
	
	this.addArticle = function ( name , url ) {
		this.articles[this.articles.length] = new Array ( name , url );
	}
	
	this.addImage = function ( name , urlSmall , urlMedium , urlBig ) {
		this.images[this.images.length] = new Array ( name , urlSmall , urlMedium , urlBig );
	}
}
