function jecDivAnimator()
{
/*	var self = this;
	this.time; 
	this.myElement; 
	this.myHeight; 
	this.maxHeight; 
	this.timeToScroll1px; 
	this.scroller; 
	this.scrollEnable;*/
	
	this.initElement = function(id, timer)
	{
	/*	this.time                     = timer;
		this.myElement	 				      = document.getElementById(id);
		this.myElement.style.overflow = 'hidden';
		this.border						        = new Array(this.myElement.style.border.split(' ').sort()[0].split('px')[0])*2;
		this.myHeight 					      = this.myElement.offsetHeight-this.border;
		this.maxHeight 					      = this.myElement.offsetHeight-this.border;
		this.timeToScroll1px 			    = Math.floor((this.maxHeight / (this.time/5)) * 5);
		this.timeToScroll1px 			   *= -1;
		this.scroller					        = this.timeToScroll1px;
		this.scrollEnable				      = true;*/
	};
	
	this.toggle = function(elem)
	{
	/*	elem = document.getElementById(elem);
		if(this.scrollEnable)
		{
			if(elem)
			{
				if(this.timeToScroll1px > 0)
				{
					elem.className = "slideOpen";
				}
				else
				{
					elem.className = "slideClose";
				}
			}
			this.myElement.style.display  = '';
			this.scrollEnable 	          = false;
			this.scrollElement          	= window.setInterval(function(){setNewHeight(self);}, 5);
		}*/
	};
	
	this.hide = function()
	{/*
		this.timeToScroll1px        *= -1;
		this.scroller                = this.timeToScroll1px;
		this.myElement.style.height  = 2 + "px";
		this.myHeight                = 0;
		this.myElement.style.display = 'none';
	*/};
	
	setNewHeight = function(_self)
	{/*
		if(Math.abs(_self.scroller)*3 > Math.abs(_self.myHeight) && _self.timeToScroll1px<0)
		{
			_self.scroller = _self.scroller/2;
		}
		if(Math.abs(_self.maxHeight - (_self.scroller*3)) < Math.abs(_self.myHeight) && _self.timeToScroll1px>0)
		{
			_self.scroller = _self.scroller/2;
		}
		_self.myHeight += _self.scroller;
		_self.myElement.style.height = _self.myHeight + "px";
		if(_self.myHeight <= 2 || _self.myHeight >= _self.maxHeight-1)
		{
			clearInterval(_self.scrollElement);
			_self.scrollEnable 		 = true;
			_self.timeToScroll1px	*= -1;
			_self.scroller			   = _self.timeToScroll1px
			if(_self.myHeight <= 2)
			{
				_self.myElement.style.height = 4 + "px";
				_self.myElement.style.display = 'none';
			}
		}
	*/};
}
