//	Randomly set up image, image title, and bottom box.
function setup() {
	var r = Math.random()
	var r = r * 5;
	var imgSrc;
	var imgTitle;
	var imgBox;
	if (r > 0 && r <= 1) {
		var imgSrc = 'Images/Front/Front1.png'
		var imgTitle = 'out today...'
		var imgBox = "Out now, a widget to make sure you're always on time. Pertick allows you to not only tell the time, but to drag your own image into the back of the widget, adding the personal twist. You can view the time in analog, combination, or digital views for easyer viewing. Pertick makes the time personal."
		var boxTop = '60px';
		var linkit = 'http://novisdesign.net/Widgets?pertick';
	}
	if (r > 1 && r <= 2) {
		var imgSrc = 'Images/Front/Front2.png'
		var imgTitle = 'out now...'
		var imgBox = 'A new step in personalization. Percount allows you to set a countdown from any date. Then supply an image that relates to the date. Next choose a color, gloss amount, fades, and everything else. Completely re-done.'
		var boxTop = '70px';
		var linkit = 'http://novisdesign.net/Widgets?percount';
	}
	if (r > 2 && r <= 3) {
		var imgSrc = 'Images/Front/Front3.png'
		var imgTitle = 'back in blue...'
		var imgBox = 'The site is new and blue. Updated with cool features like recent updates, news, a slick widgets page, and an in-depth about us with custom icons and favorite links. Mike did a great job on the new design and if you like it drop a comment.'
		var boxTop = '70px';
		var linkit = '';
	}
	if (r > 3 && r <= 4) {
		var imgSrc = 'Images/Front/Front4.png'
		var imgTitle = 'featured widget at wwdc'
		var imgBox = "Chi Pet 1.1 out today. This is a must have and adds a ton of new and great features!"
		var boxTop = '100px';
		var linkit = 'http://novisdesign.net/Widgets?chipet';
	}
	if (r > 4 && r <= 5) {
		var imgSrc = 'Images/Front/Front5.png'
		var imgTitle = 'out now!'
		var imgBox = 'Control, change, and view your iTunes all while discovering great new music on the iTunes Music Store. We collaberated with our buddies over at <a href="http://vanillasoap.com">Vanilla Soap</a> to come up with this great package. Its able to see the Top 10 Songs, Albums, New Releases, and many more from every country iTunes is in.'
		var boxTop = '60px';
		var linkit = 'http://novisdesign.net/?listen';
	}
	var x = document.createElement('img');
	x.setAttribute('src', imgSrc);
	x.setAttribute('id', 'frontImage');
	document.getElementById('homeImage').appendChild(x);
	
	document.getElementById('homelink').href = linkit;
	
	var t = document.createElement('span');
	t.setAttribute('id', 'frontTitle');
	t.innerHTML = imgTitle;
	document.getElementById('homeImage').appendChild(t);
	
	var b = document.createElement('div');
	b.setAttribute('id', 'frontBox');
	b.style.top = boxTop;
	b.innerHTML = imgBox;
	document.getElementById('home').appendChild(b);
}
