$(document).ready(function(){
	var displayElementNumber = Math.floor(Math.random()*3) + 1;
	$("#randomload-"+displayElementNumber).show();
});

/*
This script will display one of three div's on page load. First, put this in your CSS:

#randomload-1, #randomload-2, #randomload-3 { display: none; }

Also, you'll need to load jquery in the header (do it before loading this file):

<script type="text/javascript" src="/scripts/jquery.js"></script>


Then, in your content, you'll have three div's named something like this:

<div id="randomload-1"></div>
<div id="randomload-2"></div>
<div id="randomload-3"></div>

Don't forget to load this javascript file in your header.
tlhunter march 3rd 2010
*/
