// ***************************************************************************
//                          wmTipOfTheDay.js  -  description
//                             -------------------
//    begin                : Fri Dec 11 2005
//    copyright            : (C) 2005 by Andrei Gavrila
//    email                : andrei.gavrila@gmail.com
// ***************************************************************************
//
// ***************************************************************************
// *                                                                         *
// *   This program is free software; you can redistribute it and/or modify  *
// *   it under the terms of the GNU General Public License as published by  *
// *   the Free Software Foundation; either version 2 of the License, or     *
// *   (at your option) any later version.                                   *
// *                                                                         *
// ***************************************************************************

wmTipsSpeed = 1000 * 10 * 6;

wmTipsIndex = wmTips.length;

function wmTipOfTheDay()
{
	var tip = parseInt((Math.random()*100000000))%wmTipsIndex;

	wmGetElementById(wmTipOfTheDayId).innerHTML = wmTips[tip];

	setTimeout('wmTipOfTheDay()', wmTipsSpeed);
}

