//----- Start of data area...
//----- 07-21-03, 07-26-03
//----- 08-08-03
//----- picsurls.js
//----- Using for hamradio web site page. Each "panel" can be rotated 
//----- in place

//----- Image dimensions
var myWidth  = 250;
var myHeight = 200;

//----- NOTE: Need to change for actual ISP site!
//-----  will be http://ka1fsb.home.att.net/
// var myPath  = "file://C:/ka1fsb/";

//----- Inits...
// var myData     = "";

//----- To add more, clone a line and edit with new data...
//----- NOTE: Each line ends in a comma, the record separator.
//----- Panel 1, 4 entries
var theItems = new Array("1305mdm.jpg",
			"pcfront.jpg",
			"pcboard.jpg",
			"pclayout.jpg",
//----- Panel 2, 6 entries
			"station.jpg",
			"jpole1.jpg",
			"bambi.jpg",
			"ar270.jpg",
			"desktop.jpg",
			"lynksys.jpg",
//----- Panel 3, 4 entries
			"vhfbeam.jpg",
			"antclup.jpg",
			"pedestal.jpg",
			"quadside.jpg");


//----- Remove the last record separator... housekeeping...
// myData = myData.substr(0, (myData.length - 1) );

//----- The "descriptions or captions" must be in parallel with above data 
//----- string.
//----- Panel 1, 4 entries
var theDesc = new Array("The TCM3105 Thru-Modem",
			"Front Panel of Modem",
			"Closup of the Board",
			"View of the Board",
//----- Panel 2, 6 entries
			"The Packet Radio Station",
			"Experimental J-Pole",
			"bambi.ampr.org",
			"ar270 Vertical",
			"The Desktop Machine",
			"Lynksys 5-port Hub",
//----- Panel 3, 4 entries
			"The VHF Quad (beam)",
			"The Joists and Blocks",
			"The Pedestal Mount",
			"The Full Side View");

//----- Number in each panel group
var p1count = 4;
var p2count = 6;
var p3count = 4;

//----- End of data area...
