var fDesc=new Array(); fDesc[0] = "Let’s Clean Up! is easy to use. First you enter information into the program about your chores and how often you plan to do them. This New Schedule Setup Wizard makes it simple to create your initial list. You can schedule each chore to repeat in any number of days, weeks, months, or years. If you wish, you can refine your list by entering the name of the person who should do each chore, or you can rotate chores between two or more people.

Each time you’re ready to start cleaning, Let’s Clean Up! prints a list of only the chores you need to do. You can print a single checklist, or print an individual checklist for each family member. As you do your chores, you check them off on your list.

When you’ve finished cleaning, you enter the checkmarks from your printed house cleaning checklist into Let’s Clean Up! − it’s fast and easy. It’s fine to skip one or more chores because Let’s Clean Up! will automatically reschedule them the next time you clean. Taking a vacation? Don’t worry about your cleaning schedule. When you return, Let’s Clean Up! can make adjustments to ease you back into your normal cleaning cycle."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }