<!--
function nextTip()
{
	var _Container = document.getElementById("tipContainer");
	if (_Container==null) return;
	_currentTip++;
	if (_currentTip>_maxTips) _currentTip=0;
	_Container.innerHTML = _Tips[_currentTip];
}


var _maxTips = new Number(6);
var _Tips = new Array();
_Tips[0] = "Do not deal with anyone who asks you to sign any type of \"authorization\" at the scene for them to: review your policy; board up your house; speak to your insurance agent, etc. If you look closely you will notice so-called authorizations are really contracts in disguise.";
_Tips[1] = "Keep insurance policies and other important documents in water tight containers and store them in a safe and secure area of the home.  Consider storing them in a safe at home or a safety deposit bank at your local bank.";
_Tips[2] = "Each year before your policy renews, sit down with your insurance Agent to thoroughly review your coverage and consider any needs that may have changed.";
_Tips[3] = "Keep up to date on current events in the insurance industry by visiting Florida Department of Financial Services’ website at <a href=\"www.fldfs.gov\">www.fldfs.gov</a>";
_Tips[4] = "Before a hurricane, take a video of your home and personal property items in case you have damage and can better document your claim.";
_Tips[5] = "If you suffer a loss, take video and photographs to document your damages.  This way, if you need to make emergency repairs, you will be able to show proof of the damages to your insurance company.";
_Tips[6] = "Keep receipts for electronics, jewelry, artwork, and other expensive personal property items.";
var _currentTip = new Number(0);
//-->
