<!--
    var tips = new Array();
    var selectedIndex = 0;
    var c = 0;
    tips[c] = 'Did you ask a question or earn <a href="/faq#reputation">reputation points</a> before you were registered and want to keep your history? It\'s easy to <a href="/faq#convert">convert</a> your anonymous data into a real account!';
    c++;
    tips[c] = 'Earn <a href="/faq#reputation">reputation points</a> when others up-vote your questions and answers. Earn 15 rep and you can vote too!';
    c++;
    tips[c] = 'Want to comment on a post? You can once you earn 50 <a href="/faq#reputation">reputation points</a> when others up-vote your questions and answers.';
    c++;
    tips[c] = 'Did you know that you can accept someones answer by clicking on the checkmark under their answer\'s score? You earn 2 extra <a href="/faq#reputation">reputation points</a> when you accept an answer!';
    c++;
    tips[c] = 'Did you know that when a Question asker accepts your answer as being <em>the most helpful</em> to them, you get an additional 15 <a href="/faq#reputation">reputation points</a>?';
    c++;
    tips[c] = 'When you hit 200 <a href="/faq#reputation">reputation points</a>, these banners go away!';
    c++;
    tips[c] = 'If you are logged in as a registered user, you can see all of the responses to your questions and answers by clicking on the envelope icon next to your name at the top of the screen.';
    c++;
    tips[c] = 'Creating and OPIEWeb account is easy and it allows you to track your <a href="/faq#reputation">reputation points</a>, and history as well. Chances are, <a href="/faq#openid">you already have a login and password already</a>!';
    c++;
    tips[c] = 'Does the icon chosen for you not suit your tastes? Sign in to <a href="http://gravitar.com" target="_blank" title="Gravitar config site">Gravitar.com</a> using the same email address as you used here to change it.';
    c++;
    tips[c] = 'Did you know that OPIEWeb has a blog too? Read it <a href="http://opieblog.opieweb.com">here</a> every Monday, Wednesday and Friday!';
    c++;
    tips[c] = 'Don\'t see a question you want the answer to? <a href="/questions/ask" title="Ask a question">Go ahead and ask it</a>! ';


    function getTip(){
        var x = selectedIndex;
        var startDiv = "" 
        var endDiv = "</div>";
         while (x == selectedIndex)
         {
             x = get_rand(tips.length);
         }
         selectedIndex = x;

         if (x % 2 == 0) {
             startDiv = "<div class=\"opiebanner orange rounded\">";
         }
         else {
             startDiv = "<div class=\"opiebanner blue rounded\">";
         }
         
         return(startDiv + tips[x] + endDiv);
    }

    function get_rand(max)
    {
        return Math.floor(Math.random() * (max - 1))   
    }

   

//-->