var mess = [];
mess.push('Always have your camera with you.');
mess.push('Always check your camera settings.');
mess.push('Check the composition.');
mess.push('Use the "<i>rule of thirds</i>."');
mess.push('Try to keep yourself between the sun and your subject.');
mess.push('Keep the horizon level.');
mess.push('Best outdoor lighting is early am or late pm.');
mess.push('Change your shooting angle. Move around.');
mess.push('Photographing children or animals, get down on their level.');
mess.push('Using editing software (not camera setting), try converting images to black and white.');
mess.push('Always carry extra batteries and memory cards.');
mess.push('Photograph animals at eye level.');
mess.push('Take lots and lots of photos. Delete the bad ones');
mess.push('Give wildlife their "space."');
mess.push('Move in close');
mess.push('Do not use digital zoom');
mess.push('Use fill flash to reduce shadows');
mess.push('Use the "continuous" mode for fast-action pictures.');
mess.push('Remember to check your backgrounds');
mess.push('Look for unusual angles and shadows');
mess.push('Learn to use the LCD monitor and histogram');
mess.push('Place your subject off-center');
var num = Math.floor((Math.random() * mess.length));
document.writeln(mess[num]);