imageArray = new Array();
  current = "";
  function load_img(name_src)
  {
    if(document.images) {
      var temp = imageArray[name_src];
      if(! temp) {
        temp = new Image();
        temp.src = name_src;
        imageArray[name_src] = temp;
      }

      return temp;
    }
  }
  function replace_img(name, name_src)
  {    
    if(document.images) {
      if(name != current) {
        document[name].src = load_img(name_src).src;
      }
    }
  }

    load_img("/images/archives_over.gif");
	load_img("/images/photos_over.gif");
	load_img("/images/audio_over.gif");
	load_img("/images/about_over.gif");
	load_img("/images/contact_over.gif");
	load_img("/images/links_over.gif");
	
	
	
var theImages = new Array() 
theImages[0] = '/images/strip_1.jpg'
theImages[1] = '/images/strip_2.jpg'
theImages[2] = '/images/strip_3.jpg'


var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'">');
}


function openWindow (targetURL) {

popWin = window.open(targetURL,'window','width=450,height=370,status,toolbar,scrollbars=yes')
}


function addTocart(productName)
{ 
prodURL= 'https://www.paypal.com/cart/add=1&amp;business=nick%40schillace.com&amp;item_name=' + productName + 
&amp;amount=17.00&amp;return=http%3A//www.nickschillace.com&amp;cancel_return=http%3A//www.nickschillace.com';

window.open(prodURL, 'cartwin',
'width=600,
height=400,
scrollbars,location,resizable,status');
}
