﻿<!--
var counter = 0;
function hpanimatie()
{
    //Start an timer to create animation steps of 1 second
     setTimeout(function(){
                        
        //FOR DEVELOPMENT: show animation step
        //alert("doe iets:" + counter);
                        
        //PlusOne the counter value
        counter++;
											
		if(counter == 1){document.getElementById("uniquename").style.backgroundPosition  = "0 0"}
		if(counter == 2){document.getElementById("uniquename").style.backgroundPosition  = "-866px 0"}
		if(counter == 3){document.getElementById("uniquename").style.backgroundPosition  = "-1732px 0"}
		if(counter == 4){document.getElementById("uniquename").style.backgroundPosition  = "-2598px 0"}
		if(counter == 5){document.getElementById("uniquename").style.backgroundPosition  = "-3464px 0"}
		if(counter == 6){document.getElementById("uniquename").style.backgroundPosition  = "0 -652px"}
		if(counter == 7){document.getElementById("uniquename").style.backgroundPosition  = "-866px -652px"}
		if(counter == 8){document.getElementById("uniquename").style.backgroundPosition  = "-1732px -652px"}
		if(counter == 9){document.getElementById("uniquename").style.backgroundPosition  = "-2598px -652px"}
		if(counter == 10){document.getElementById("uniquename").style.backgroundPosition  = "-3464px -652px"}
						
                        
        //If the counter hasn't made ten steps yet, then restart the animation and sent the counter value
        if (counter < 10)
        {
            hpanimatie(counter);
            return false;
        }
    },400)
}

function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}

function ShowContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-1732px -1956px";
}

function HideContent2(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}

function ShowContent2(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-2598px -1956px";
}

function HideContent3(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}

function ShowContent3(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "0px -1956px";
}

function HideContent4(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}

function ShowContent4(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-866px -1956px";
}

function HideContent5(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}

function ShowContent5(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -1304px";
}

function HideContent6(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}

function ShowContent6(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "0px -1304px";
}

function HideContent7(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}
function ShowContent7(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-866px -1304px";
}

function HideContent8(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}
function ShowContent8(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-1732px -1304px";
}

function HideContent9(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}
function ShowContent9(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-2598px -1304px";
}

function HideContent10(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -652px";
}
function ShowContent10(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.backgroundPosition  = "-3464px -1956px";
}
//-->
