var arrTips = new Array();
arrTips[1] = "To save money, pack and disassemble as much as you can before the mover arrives.";
arrTips[2] = "Always take valubales with you.";
arrTips[3] = "Cheap is not necessarily less expensive.";
arrTips[4] = "Understand the basis of the moving charges. Don`t accept a “price” as is, but question whether it is based on hours, weight, or cubic ft. Always ask for a list of what is and isn`t included.";
arrTips[5] = "Get it in writing."
arrTips[6] = "Be clear about the services you require. Will you pack fully? Will you pack partially? Do you want the mover to provide complete packing? An estimated price will do you no good if doesn`t reflect the services you want.";
arrTips[7] = "Check the moving company out. A personal reference is always best. If you don`t know anyone then check out several sources including, but not limited to: Better Business Bureu, Department of Consumer Affairs, Department of Transportation, ePinions.com, etc";
arrTips[8] = "Trust your instincts. If a mover is attentive and informative before the move, it is often an indicator that there is an overall commitment to service in that company. If the response to your questions and concerns are slow and incomplete, it is likely they will be more so during and after the move.";

//Random tip generator
function setTips() {
    var iTip = Math.floor(Math.random() * 7) +1;
    window.document.getElementById('tipNumber').innerHTML = iTip;
    window.document.getElementById('tipText').innerHTML = arrTips[iTip];
}