var quotes = new Array();

quotes[0] = "<div><a href='javascript:gotoUrl(\"/portfolio/best_friend.jsp\")'>Girl's Best Friend</a></div><i>Joni G. from Iowa City, IA, July 16, 2004</i><br/>'After moving from Palm OS to PocketPC, I needed something to track such things. This program is more than adequate for my needs - and customer service is terrific! I contacted them to ask about a feature I didn't see and they quickly added the feature into a new release! Great program!'";
quotes[1] = "<div><a href='javascript:gotoUrl(\"/portfolio/best_friend.jsp\")'>Girl's Best Friend</a></div>Before choosing the program with functions of a female calendar for my" +
    "Pocket PC, I have tried some similar programs. And I have seen that program Girl's Best Friends is realy the best for me. It contains all necessary functions and does not contain anything superfluous. It seems to me convenient that the calendar is not loaded by set of badges as in other programs, and necessary data I can write in a note. It is very" +
    "convenient that the length of a cycle pays off automatically. Well also have certainly liked skins, they cheer up, and it just that is necessary for the woman in 'favourite' days of month. <br/>Alena Korobova, Russia";
quotes[2] = "<div><a href='javascript:gotoUrl(\"/portfolio/money_expert.jsp\")'>Money Expert</a></div><i>Ahjian from Singapore, March 15, 2004</i><br/>'This is an efficient expense tracker at a low price. It is good for personal use. Loads resonably fast. Overall a good buy.'";
quotes[3] = "<div><a href='javascript:gotoUrl(\"/portfolio/organize_it.jsp\")'>Organize It - Contacts</a></div><a target='_blank' href='http://pdasoft.cz/modules.php?name=News&file=article&sid=987'>http://pdasoft.cz</a>. OrganizeIt - Contacts - Lepsi kontakty pro Pocket PC (OrganizeIt - Contacts - Best Contacts for Pocket PC).";
quotes[4] = "<div><a href='javascript:gotoUrl(\"/portfolio/best_friend.jsp\")'>Girl's Best Friend</a></div><i>A reviewer from Brisbane, Australia, September, 26, 2005</i><br/>'This program is exactly what I was looking for - I didn''t need a program to generate complicated fertility data, just something to keep track of the basics. I use the text note feature to track any medication I''ve taken - the notes table allows you to easily review it when needed. Considering that a desktop companion is included, this product is excellent value for money.'";
quotes[5] = "<div><a href='javascript:gotoUrl(\"/portfolio/smart_tools.jsp\")'>Smart Tools</a></div><i>Daniel Williams using iPAQ h5550, June, 2, 2006</i><br/>'Excellent program! Smart Tools is highly functional, reliable, inexpensive, and easy to use. I recently tried and then purchased SmartTools 1.0. for my iPAQ 5550. I love having the buttons for turning my iPAQ off, doing a soft reset, checking the power and storage all on my Today Screen, while keeping the today screen uncluttered. Also the informational screens are very clear and easy to understand. Some people want to have buttons for dozens of apps and features on their Today Screen. Not me. I choose attractive photos for my Today Screen wallpaper and want to be able to see them. I like having it uncluttered, other than my upcoming appointments and notes that I add...'";


var categories = new Array();
categories[0] = new Array();
categories[0][0] = 0;
categories[0][1] = 1;
categories[0][2] = 4;

categories[1] = new Array();
categories[1][0] = 2;

categories[2] = new Array();
categories[2][0] = 3;

categories[3] = new Array();
categories[3][0] = 5;

function setQuote(num) {
    document.getElementById("quote").innerHTML = quotes[num];
}

function setRandomQuote() {
    var num = Math.round(Math.random() * (quotes.length - 1));
    setQuote(num);
}

function setFromCategory(category) {
    var num = Math.round(Math.random() * (categories[category].length - 1));
    setQuote(categories[category][num]);
}

function setEmptyQuote() {
    document.getElementById("quote").innerHTML = "";
}