/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 11;
var tip='';
quotes = Math.floor (num_of_quotes * Math.random());

switch(quotes){
	case 0: tip='Make up an inventory of your stored items and keep in a safe place at home or in a safe deposit box.'; break;
	case 1: tip='Plan your storage space - place the items you will need to access most frequently in the front.';break;
	case 2: tip='Allow for walkways in your storage space.';break;
	case 3: tip='Label boxes for easy identification.';break;
	case 4: tip='All-Safe does not allow COMBUSTIBLE items to be stored (paint, paint thinner, gasoline, solvents, explosives, etc.)';break;
	case 5: tip='Tables and other furniture pieces with removable legs can be broken down to maximize space.';break;
	case 6: tip='Dishes, glasses and other breakable items should be wrapped in paper or bubble wrap and packed in sturdy boxes.';break;
	case 7: tip='Stored furniture with drawers can be utilized as storage places for pictures, china, silverware, clothes, etc.';break;
	case 8: tip='Larger appliances such as washers and dryers can be utilized as storage places for blankets, towels, clothes, etc.';break;
	case 9: tip='Cover upholstered furniture with sheets or blankets to protect from dust.';break;
	case 10: tip='Sofas and loveseats can be stored on end to maximize space.';break;
	case 11: tip='Tape electrical cords to the back of machines to prevent plug damage.';break;
}

document.write('<div class="tip"><p>');
document.write(tip);
document.write('</p></div>');