﻿




var quoteArr = new Array(9);


quoteArr[0] = "It was a real time saver, I like <b>not</b> wasting paper.";

quoteArr[1] = "It worked great! I put my birthday paper in it [after Christmas] in January and it worked great for that too!";
quoteArr[2] = "Absolutely loved it; I could wrap presents in a snap!";
quoteArr[3] = "It was very helpful. My 18 year old does most of the wrapping and she really liked it.";
quoteArr[4] = "I had 5 of them. I had one for each different role of paper - so the wrapping went fast!";
quoteArr[5] = "I loved it. Very pleased, it was really handy. I didn't have to run and find scissors!";
quoteArr[6] = "It worked fast, I really want the smaller sizes. I have kids and their toys come in all sizes.";
quoteArr[7] = "I absolutely loved it! I'm just waiting for the smaller ones too! It was great to be able to just tear paper off";
quoteArr[8] = "It was just so easy to use, it made my wrapping go so much faster, didin't have to get out my scissors, I think it's great!";




var i = Math.round((quoteArr.length - 1) * Math.random());
document.write(quoteArr[i]);
//document.getElementById("quotediv").innerHTML = "<I>" + quoteArr[i] + "</I>";
//document.getElementById("quotediv").style.color = "white";

function getQuote() {
    //	alert("yay");
    //var i = Math.round(quoteArr.length*Math.random());


    //document.getElementById("quotediv").innerHTML = "<I>" + quoteArr[i] + "</I>";
}