onload = function() { stripe ('imageinformation') };

 function stripe(id) 
  {
    var table = document.getElementById(id);
    if (! table) { return; }
    
    var trs = table.getElementsByTagName("tr");

    for (var i = 1; i < trs.length; i += 2) 
    {
      trs[i].className += " even";
    }
  }

/*
	stripetable.js
	Version 1.0
	Created 2004/07/20 by Aaron Walker
	Code downloaded from:
		http://davious.org/onepagers/anewstripe.html
		http://www.alistapart.com/articles/zebratables/

*/

