Trying to do a bit of jquery for a landing page I'm putting up. I'm absolutely horrible at JS so bear with me.Here's the page where I'm developing it:http://kickstartyourbiz.info/For the rotating numbers under the placeholder pic, I'm using the following code:\[code\]<script>setInterval(function() { var min = 1000; var max = 100000; var number = 1 + Math.floor(Math.random() * (max - min + 1)) + min; $('#random_number').fadeIn(500).text(number).delay(4000).fadeOut(450); var newnumber = Math.round(number / .6); $('#wtf').fadeIn(500).text(newnumber).delay(4000).fadeOut(450);},5000);</script><div id="random_number"></div><div id="wtf"></div>\[/code\]Few problems with this:1) the numbers don't load until five seconds, which I'm assuming is due to the interval. But how do I get the numbers to start showing/rotating as soon as the page loads?2) when the numbers fade out, the lower "logo" section is brought up, then back down. I'm guessing this is because the \[code\]<div>\[/code\] disappears when the fade out occurs, then comes back when it fades in again. What can I do to prevent this?Lastly, I would also like to add a dollar sign to the beginning of the numbers, and, if it's simple enough, put commas in every three numbers. So it would look something like this:$93,029