
window.addEvent('domready', function(){// Dom open
// Striped Tables
	var stripe_colours = new Array() ;
	stripe_colours[0] = 'transparent' ;
	stripe_colours[1] = '#DDDDDD' ;
	var head_bg = '#666666' ;
	var head_txt = '#FFFFFF' ;
	var head_weight = 'bold' ;
	var row_string = '' ;
	var striped_tables = $$('.stripe') ;
	striped_tables.each(function(striped_table){
		table_rows = striped_table.getElements('tr') ;
		tr_keeper = 0 ;
		table_rows.each(function(table_row){
			if(table_row.getAttribute('class')=='head'){
				table_row.setStyles({'background-color':head_bg,'color':head_txt,'font-weight':head_weight}) ;
			} else {
				table_row.setStyle('background-color',stripe_colours[tr_keeper]) ;
				row_string = row_string + stripe_colours[tr_keeper] + ' - ' ;
				tr_keeper++ ;
				if(tr_keeper==stripe_colours.length){
					tr_keeper = 0 ;
				}
			}
		});
	});
});

