/**
 * Hírkonténer osztálya
 * 
 * @param vID
 * @return
 */
function News(vID) {
	this.object		= document.getElementById(vID);
	this.border	= 50;
	this.interval	= 40;
	this.pause		= 4000;
	this.step		= 2;
	
	this.isBorder			= isBorder;
	this.getCoord		= getY;
	this.setCoord		= setY;
	this.getSize			= getHeight;
	this.isEnd				= isEnd;
	this.reset				= reset;
	this.scroll				= scroll;
	this.isScrollable	= true;
	this.isPaused		= false;
	this.lastTouch		= null;
	this.touch				= touch;
}

/**
 * Bannerkonténer osztálya
 * 
 * @param vID
 * @return
 */
function Banner(vID) {
	this.object		= document.getElementById(vID);
	this.border	= 284;
	this.interval	= 10;
	this.pause		= 2500;
	this.step		= 2;
	
	this.isBorder			= isBorder;
	this.getCoord		= getX;
	this.setCoord		= setX;
	this.getSize			= getWidth;
	this.isEnd				= isEnd;
	this.reset				= reset;
	this.scroll				= scroll;
	this.isScrollable	= true;
	this.isPaused		= false;
	this.lastTouch		= null;
	this.touch				= touch;
}

/**
 * Referenciakonténer osztálya
 * 
 * @param vID
 * @return
 */
function Reference(vID) {
	this.object		= document.getElementById(vID);
	this.border	= 50;
	this.interval	= 40;
	this.pause		= 4000;
	this.step		= 2;
	
	this.isBorder			= isBorder;
	this.getCoord		= getY;
	this.setCoord		= setY;
	this.getSize			= getHeight;
	this.isEnd				= isEnd;
	this.reset				= reset;
	this.scroll				= scroll;
	this.isScrollable	= true;
	this.isPaused		= false;
	this.lastTouch		= null;
	this.touch				= touch;
}
