<!--
// please keep these lines on when you copy the source
// made by: Nicolas - http://www.javascript-page.com

var core = 0
var currentdate = 0

function StringArray (n) {
  this.length = n;
  for (var i =1; i <= n; i++) {
    this[i] = ' '

  }
}

// EDIT SECTION ////////////////////////////////////////////////////
//enter total number of tips inside parentheses
tip = new StringArray(13)

//tip [x] = "text"; x should start with 0; quote marks within the tip should look like this: \" 
//**Make sure tip is all on one line++
tip [0] = "Containerize all those plastic shopping bags! Use an empty kleenex box to hold the bags (a box will hold nearly 50 bags!) and keep in a handy spot. When the box is full, stop collecting the bags..."
tip [1] = "Get rid of old and outdated computer disks and manuals. Toss software disks, CDs, and computer manuals for computer programs you no longer use and never will again."
tip [2] = "Clean out your paper files regularly. Before you go through the expense of purchasing more file cabinets, folders, and bins, take the time to discard all unnecessary paperwork."
tip [3] = "Decorate empty coffee cans, diaper wipe boxes, oatmeal boxes, potato chip cylinders, cookie tins or shoe boxes to make great looking storage containers that can be used in any room in the house."
tip [4] = "Clean out your library. Look through your bookcases and give away books you've had for years and will never look at again. Charities are always looking for donations to their reading programs."
tip [5] = "Altoid tins also make great storage containers. And since the tins are not conventionally recyclable, re-using the tins as mini-containers is a great way to be environmentally sound."
tip [6] = "Time to Organize Charity of the Month is Joseph's Coat in St Paul: Please donate used clothing, backpacks and bags, baby clothes, kid's toys, books, and personal care products at 1107 W 7th Street. Call 651-291-2472."
tip [7] = "If your child has room under his/her bed, consider adding four rolling wheels to a yard sale dresser drawer. Get a bedskirt to hide the underbed storage. Most twin beds can accommodate two or more drawers and make for easy toy cleanup."
tip [8] = "Use a hanging shoe bag for kids to organize Beanie Babies, Barbie dolls, etc."
tip [9] = "Install hooks to the back of children's doors to hang backpacks and coats."
tip [10] = "Hardware stores offer a long, cork and metal running board that can be installed to hang artwork or notes. Instead of saving numerous large pieces of children's artwork, take photos of them and place in a scrapbook. Or display the artwork in beautiful frames, creating a rotating \"gallery\" for your kids' masterpieces!"
tip [11] = "Find your spices when you need them by grouping them into \"sweet\" and \"spicy\" catagories. \"Sweet\" includes things like cinnamon, nutmeg, etc. Throw out any that are more than three years old."
tip [12] = "Time to Organize Charity of the Month is Joseph's Coat in St Paul: Please donate gently used seasonal clothing, backpacks, sleeping bags, tents, baby clothes, kid's toys, games, books, and personal care products at 1107 W 7th Street. Call 651-291-2472."

///////////////////////////////////////////////////////////////////

var ran = 60/tip.length

currentdate = new Date()
core = currentdate.getSeconds()
adcore = Math.floor(core/ran)
core = adcore

var thetip = tip[core]

//-->
