function $(id) {
return document.getElementById(id);
}



function status() {
window.defaultStatus=' ';
}



function preload() {
var images = new Array();
for (var i=0; i<arguments.length; i++) {
images[i] = document.createElement('img');
images[i].setAttribute('src',arguments[i]);
}
}



function collapse() { // collapse all ordered lists (ol), so when JavaScript is disabled all are open 
for (var i=0; i<15; i++) {
$('fineprint').getElementsByTagName('h2')[i].className = 'hand';
$('fineprint').getElementsByTagName('ol')[i].className = 'collapse';
$('fineprint').getElementsByTagName('a')[i].firstChild.className = 'more';
$('fineprint').getElementsByTagName('a')[i].firstChild.title = ' meer ';
}
}



function toggle(n) { // toggle expand/collapse 
var h2 = $('fineprint').getElementsByTagName('h2');
var ol = $('fineprint').getElementsByTagName('ol');
var  a = $('fineprint').getElementsByTagName('a');

h2[n].onmouseover = function() {
 a[n].href = '#artikel_'+[n+1];
}

h2[n].onclick = function() {
for (var i=0; i<15; i++) {
if (i != n) {
ol[i].className = 'collapse';
 a[i].firstChild.className = 'more';
 a[i].firstChild.title = ' meer ';
}
}
if (ol[n].className != '') {
ol[n].className = '';
 a[n].firstChild.className = 'less';
 a[n].firstChild.title = ' minder ';
}
else {
ol[n].className = 'collapse';
 a[n].firstChild.className = 'more';
 a[n].firstChild.title = ' meer ';
 a[n].href = 'javascript:void(0)';
}
}
}



function newwindow() { // load external link in new window
if (this.href.indexOf('osconsultancy') == -1) {
window.open(this.href,'');
return false;
}
if (this.href.indexOf('#top') != -1) {
$('top').scrollIntoView();
return false;
}
}



window.onload = function() {
status();
preload('oscPix/oscPaper.png');
for (var i=0; i<document.links.length; ++i) {
document.links[i].onclick = newwindow;
}
if (window.location.href.indexOf('portfolio') != -1) {
preload('oscPix/oscSites_Ben-en-Wil.png','oscPix/oscSites_HCEJobcreator.png','oscPix/oscSites_Interluceo.png','oscPix/oscSites_LogopedieVelp.png','oscPix/oscSites_satontvangst.png','oscPix/oscSites_Schatteboutjes.png','oscPix/oscSites_StichtingSIOMA.png','oscPix/oscSites_Wisdomsat.png');
}
if (window.location.href.indexOf('voorwaarden') != -1) {
collapse();
toggle(0);
toggle(1);
toggle(2);
toggle(3);
toggle(4);
toggle(5);
toggle(6);
toggle(7);
toggle(8);
toggle(9);
toggle(10);
toggle(11);
toggle(12);
toggle(13);
toggle(14);
}
}


