		function jumpToTop()
		{
			window.scrollTo(0, 0);
		}
	
		function changeArrow(img, state) //state: 0 = out; 1 = over;
		{
			if (state == 1)
			{
				tmp = img.src;
				tmp1 = tmp.split(".gif");
				img.src = tmp1[0] + "1.gif"
			}
			else
				img.src = tmp;	
		}

		function _date()
		{
			this.months = new Array("Januar", "Februar", "Mart", "April", "Maj", "Jun", "Jul", "Avgust", "Septembar", "Oktobar", "Novembar", "decembar");
			this.weekDays = new Array("Nedelja", "Ponedeljak", "Utorak", "Sreda", "Četrvrtak", "Petak", "Subota");
			this._currYear = -1;
			this._currMonth = "";
			this._currDay = -1;
			this._currDayName = "";
	}
	
		_date.prototype._getDate = function()
		{
			var _dateTmp = new Date();
		
			this._currYear = _dateTmp.getFullYear();
			var monthTmp = _dateTmp.getMonth();
			this._currMonth = this.months[monthTmp];
			this._currDay = _dateTmp.getDate();
			var _DNTmp = _dateTmp.getDay();
			this._currDayName = this.weekDays[_DNTmp];
		}
	
		_date.prototype._writeDate	= function()
		{
			this._getDate();
		
			document.open();
			document.write(this._currDayName + ", " + this._currDay + ". " + this._currMonth + " " + this._currYear + ".");
			document.close();
		}
	
		var _putDate = new _date();
