/*
// Project: De Nieuwe Band
// Redesign web site 2005/2006/2007

// JavaScript functions for product browser. Loaded on demand.

// Metalusions - Arjan Haringa
// De Nieuwe Band - Andre Bosma
// De Nieuwe Band - Theo Kerkhof
*/

var productinfosections = Array('s1', 's2', 's3', 's4');

function productinfo(){
	var l = productinfosections;
	for(var i = 0; i < l.length; i++){
		if(document.getElementById(l[i])){
			t = document.getElementById(l[i]);
			t.className = 'cur';
			t.onclick = function(str_id) { return function() { productinfotoggle(str_id); } } (l[i] + 'sub');
			t.onmouseover = function() { this.style.color = '#555'; }
			t.onmouseout = function() { this.style.color = '#f63'; }
			document.getElementById(l[i] + 'sub').style.display = 'none';
			}
		}
	}

function productinfotoggle(str_id){
	var t = document.getElementById(str_id);
	if(t.style.display == 'none'){
		t.style.display = 'block';
		}
	else {
		t.style.display = 'none';
		}
	}

setOnload(productinfo);

