// JavaScript Document - Random Image Generator
/* Copyright (c) 2006 TOLIS Group, Inc. All rights reserved.
 Use of this script without express written consent of TOLIS Group, Inc.
 is a violation of copyright laws. Contact the TOLIS Group Webmaster at
	bruwebmaster@tolisgroup.com for permission to use this script.
 Any use other than its intended method violates any prior consent by TOLIS Group, Inc.
*/
//Start Script
function RandomNumber()
{ var today = new Date();
	var num = Math.abs(Math.sin(today.getTime()/10000));
	return num;
}
function RandomGraphics() 
{ var x = RandomNumber();
	if (x > .999)
		{ document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Quiet Bay Production Desktop</H4><IMG SRC='http://images.productionbackup.com/bundles/QuietBayProdDesktop.png' HEIGHT='175' WIDTH='175' ALT='Quiet Bay Production Desktop Bundle' BORDER='0'></A>"); return; }
	if (x > .555)
		{ document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Edit Bay Production Desktop</H4><IMG SRC='http://images.productionbackup.com/bundles/EditBayProdDesktop.png' HEIGHT='175' WIDTH='175' ALT='Edit Bay Production Desktop Bundle' BORDER='0'></A>"); return; }
	else { document.write("<A HREF='/info/bundles.html' TITLE='View BRU PE Hardware Bundles' CLASS='bundle_link'><H4>Edit Bay Doubler Station</H4><IMG SRC='http://images.productionbackup.com/bundles/EditBayDoublerStation.png' HEIGHT='175' WIDTH='175' ALT='Edit Bay Doubler Station Bundle' BORDER='0'></A>"); return; }
}
RandomGraphics();
//End Script