var twomen_currentmessage;


var twomen_messages = [
    'Make your reservations for movers two to four weeks before your move day.',
    'Avoid mixing items from different rooms in the same box.',
    'Use wardrobe boxes to make closets easier to pack. Clothes in drawers can be placed in suitcases.',
    'Use only small boxes for books. They get very heavy, very fast.',
    'For large appliances be sure to check your owner\'s manuals to see if there are special instructions for moving.',
    'Never use printed newsprint to wrap fine china.',
    'Always stack dishes upwards when packing.',
    'Pack important and sentimental documents separately to be easily accessible including: children\'s health records, passports, family records, insurance information and photo albums.',
    'Remember: the heavier the item, the smaller the box.',
    'Don\'t pack with food or supermarket boxes. You never know what little critter is hiding - or if the box will be strong enough to support your possessions.'
]


function twomen_rotatemsg()
{
    var container = document.getElementById('twomencontainer');
    if (!container)
    {
        return;
    }
    
    container.innerHTML = twomen_messages[twomen_currentmessage];
    twomen_currentmessage = twomen_currentmessage + 1;
    if (twomen_currentmessage == twomen_messages.length)
    {
        twomen_currentmessage = 0;
    }
}


function twomen_main()
{
    if (!is_main())
    {
        return;
    }
    
    twomen_currentmessage = Math.floor(Math.random() * twomen_messages.length) - 1;
    twomen_rotatemsg();
}
