// random image function

var hhtipimg;
var hhtipnext;

//	the array function
function makeArray(len) {
	for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	}

//	random number generator
function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}

var now = new Date()
var seed = now.getTime() % 0xffffffff

//	random photos
//	all Nav Photos
sb_ph01t = new Array("01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34");

//	all copy photos
sb_ph02t = new Array("01","02","03","04","05","06","07","08","09","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32");

//	all home page heart health tips images
homehhtip = new Array("01","02","03","04","05","06","07","08","09","10");

//	all home page heart health tips images
imohome = new Array("1","2","3","4");


	
	
//	sub page, Nav photo (All Photos)
function sb_photo01t() {
	document.write('<img src="/images/stjoseph/random/navphoto' + (sb_ph01t[rand(sb_ph01t.length)]) + '.jpg" width="71" height="158" border="0" alt="" />');
	}
	
//	rotating imodium images on home page
function imorotate() {
	document.write('<img src="/images/imodium/home/homerotation' + (imohome[rand(imohome.length)]) + '.gif" width="149" height="149" border="0" alt="Welcome to Imodium.com" />');
	}	
	
//	sub page, Copy photo (All Photos)
function sb_photo02t() {
	document.write('<img src="/images/stjoseph/random/sidephoto' + (sb_ph02t[rand(sb_ph02t.length)]) + '.jpg" width="92" height="278" border="0" alt="" />');
	}

//	stores the value for hhtipimg
function genNumber() {
	hhtipimg = (homehhtip[rand(homehhtip.length)]);
	}

//	home page, rotating images for health tips
function hhtip() {
	document.write('<img src="/images/stjoseph/home/homehhtip' + hhtipimg + '.jpg" width="248" height="80" alt="" border="0"  usemap="#hhtip" />');
	}

//	home page, dynamically generate the href link for the corresponding heart health tip
function hhtiphref() {
	document.write('<area alt="Heart Health Tip" coords="142,56,225,71" href="/hhtips/index.jhtml/?id=stjoseph/hhtips/tip' + hhtipimg + '.inc">');
	}

//	tips page, read another tip
function genNext() {
	hhtipnext = (homehhtip[rand((homehhtip.length % 10) + 1)]);
	}
	
//	tips page, dynamically generate the href link for the next tip link
function hhnextTip() {
	document.write('<a href="/hhtips/index.jhtml/?id=stjoseph/hhtips/tip' + hhtipimg + '.inc">read another tip >></a>');
	}