var base= "images/navigatie/"
var nrm = new Array();
var omo = new Array();
var stuff = new Array('winkel','broodjes','horeca','geschenken','feestdagen','contact');

// Pre-load part.

if (document.images)
{
	for (i=0;i<stuff.length;i++)
	{
		nrm[i] = new Image;
		nrm[i].src = base + stuff[i] + ".gif"
		omo[i] = new Image;
		omo[i].src = base + stuff[i] + "_B.gif";
	}
}


// The functions: first mouseover, then mouseout

function over(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = omo[no].src
	}
}

function out(no)
{
	if (document.images)
	{
		document.images[stuff[no]].src = nrm[no].src
	}
}

function removeFocus(button){
if (window.opera){ return;}
else if (document.all || document.getElementById)
{ button.blur(); }
}

var base3= "images/sm_";
var nrm3 = new Array();
var omo3 = new Array();
var stuff3 = new Array('facebook','twitter','youtube','myspace');

// Pre-load part.

if (document.images)
{
	for (i=0;i<stuff3.length;i++)
	{
		nrm3[i] = new Image;
		nrm3[i].src = base3 + stuff3[i] + ".gif";
		omo3[i] = new Image;
		omo3[i].src = base3 + stuff3[i] + "_mo.gif";
	}
}


// The functions: first mouseover, then mouseout

function over3(no)
{
	if (document.images)
	{
		document.images[stuff3[no]].src = omo3[no].src;
	}
}

function out3(no)
{
	if (document.images)
	{
		document.images[stuff3[no]].src = nrm3[no].src;
	}
}


