var preworkstream = new Array("http://boxworthy.net/tpt");

var workstream = new Array("http://boxworthy.net/demo-2009","http://boxworthy.net/onunon-2009","http://boxworthy.net/landscape-recovery-2008","http://boxworthy.net/afterhours-2008","http://boxworthy.net/momaaudio-2005","http://boxworthy.net/noise-2005","http://boxworthy.net/motion-2005","http://boxworthy.net/info-2010");

var subworkstream = new Array("http://boxworthy.net/digital-snow","http://boxworthy.net/digital-car-bomb","http://boxworthy.net/chatsworthfire","http://www.boxworthy.net/cream-melt","http://boxworthy.net/ozawa-burn");

var imgstream = new Array("http://farm3.static.flickr.com/2632/4166100593_0de64e488a_b.jpg",
"http://farm3.static.flickr.com/2596/4166862786_159e068b1a_b.jpg",
"http://farm3.static.flickr.com/2690/4235530506_19a3d9b0ee_b.jpg",
"http://farm3.static.flickr.com/2786/4235615888_af235265db_b.jpg",
"http://farm3.static.flickr.com/2534/4235534432_957fd5bd8b_b.jpg",
"http://farm5.static.flickr.com/4034/4235614060_dd925a7ac9_b.jpg",
"http://farm5.static.flickr.com/4042/4235618222_46521b3094_b.jpg",
"http://farm3.static.flickr.com/2634/4235562148_f18f5624b8_b.jpg",
"http://farm5.static.flickr.com/4020/4234764463_976ef5a4e6_b.jpg",
"http://farm3.static.flickr.com/2746/4178407764_9f93ddb282_o.jpg",
"http://farm3.static.flickr.com/2609/4066930434_60c6356670_b.jpg",
"http://farm4.static.flickr.com/3492/4066184089_7d12113ed8_b.jpg",
"http://farm3.static.flickr.com/2770/4066927144_7f822ef559_b.jpg",
"http://farm3.static.flickr.com/2452/4066115221_cea7118d31_b.jpg",
"http://farm4.static.flickr.com/3535/4066201491_b7eb4c2688_b.jpg",
"http://farm3.static.flickr.com/2679/4066054711_aa417ece27_b.jpg",
"http://farm3.static.flickr.com/2693/4066095503_6844fc95e4_b.jpg",
"http://farm3.static.flickr.com/2668/4066852960_cfb5c3638f_b.jpg",
"http://farm4.static.flickr.com/3536/4067050877_49e7531c4d_b.jpg",
"http://farm5.static.flickr.com/4034/4270104152_723bc1899b_b.jpg",
"http://farm3.static.flickr.com/2486/4141567109_b6dacabf3f_b.jpg",
"http://farm3.static.flickr.com/2539/4166091947_940cf81d7f_b.jpg",
"http://farm5.static.flickr.com/4047/4361379214_03da8118d9_o.png",
"http://farm5.static.flickr.com/4063/4378897435_34c2e0a247_o.png",
"http://farm5.static.flickr.com/4070/4321466326_6bfa273634_o.png",

"http://farm3.static.flickr.com/2708/4388052242_b7e0376c49_o.jpg",
"http://farm3.static.flickr.com/2743/4386166281_d1dc9634b2_o.jpg",

"http://farm5.static.flickr.com/4017/4377094063_b106e90bcf_o.jpg",
"http://farm5.static.flickr.com/4047/4377844754_fd0eae1d45_o.jpg",
"http://farm5.static.flickr.com/4069/4377094523_711c1ef90a_o.jpg",
"http://farm3.static.flickr.com/2694/4377094459_d70f50ee9d_o.jpg",
"http://farm5.static.flickr.com/4048/4377094413_3a01755c44_o.jpg",
"http://farm5.static.flickr.com/4059/4377094295_0ddb86c71e_o.jpg",
"http://farm5.static.flickr.com/4034/4377094221_ec0f030759_o.jpg",
"http://farm5.static.flickr.com/4034/4377844440_4ba86dd45c_o.jpg",

"http://farm5.static.flickr.com/4047/4420559501_dc4e19c084_o.jpg",

"http://farm5.static.flickr.com/4024/4400676078_fefcb9306f_o.jpg",
"http://farm5.static.flickr.com/4043/4400674142_b6bf86c2b9_o.jpg",
"http://farm5.static.flickr.com/4065/4400674134_d95fffced9_o.jpg",
"http://farm5.static.flickr.com/4043/4400674132_69ddd1ee1d_o.jpg",
"http://farm5.static.flickr.com/4036/4400674124_5c45597bed_o.jpg",
"http://farm5.static.flickr.com/4006/4400674120_3e8c2ab28d_o.jpg",
"http://farm3.static.flickr.com/2764/4400674118_3bf236cc05_o.jpg");

imgstreamcount=0;
	
if (document.images) {
  var buttonOff = new Image();  // Inactive image ...
  buttonOff.src = "http://farm5.static.flickr.com/4034/4235614060_dd925a7ac9_b.jpg";  // .. here's its image file
  var buttonOn  = new Image();  // Active (mouseover) image
  buttonOn.src  = "http://farm3.static.flickr.com/2634/4235562148_f18f5624b8_b.jpg"; // .. and _its_ image file
}

function imgstreamloop(direction){
if (direction==1){
	imgstreamcount++;
	if (imgstreamcount==imgstream.length){
		imgstreamcount=0;
	}
}else{
	imgstreamcount--;
	if (imgstreamcount==-1){
		imgstreamcount=imgstream.length-1;
	}
}
}

function inact() {      
  if (document.images){  
	imgstreamloop(0);
    document.images.bgimg.src = imgstream[imgstreamcount];
   }                     
}

function act() {        
  if (document.images)  {
imgstreamloop(1);
    document.images.bgimg.src = imgstream[imgstreamcount];
  }                      
}

function set_bg(bgsrc) {        
  if (document.images)  {
    document.images.bgimg.src = bgsrc;
  }                      
}

function workstreamer(currentpage){
	var totalstream = workstream;
	var i=0;
	for(i=0;i<totalstream.length;i++){
		if(totalstream[i]==currentpage){
				if(i>0 && i<totalstream.length-1){
					document.getElementById('workforward').href=totalstream[i-1];
					document.getElementById('workback').href=totalstream[i+1];
				}else if (i==0){
					document.getElementById('workforward').href=totalstream[totalstream.length-1];
					document.getElementById('workback').href=totalstream[i+1];
				}else if (i==totalstream.length-1){
					document.getElementById('workforward').href=totalstream[totalstream.length-2];
					document.getElementById('workback').href=totalstream[0];
			}
		}
	}
}

