	gfx = new Object();
	gfx[1] = "_over"
	gfx[2] = "_out"

function wissel(id, maak)
	{
        if(document.images) document.images[id].src = eval( "bitmap." + id + gfx[maak] + ".src");
	}
	if (document.images)
	{

	bitmap = new Object();

// knop1
	bitmap.knop1_over = new Image();
	bitmap.knop1_over.src = "gfx/but_pixels_over.gif";

	bitmap.knop1_out = new Image();
	bitmap.knop1_out.src = "gfx/but_pixels.gif";

// knop2
	bitmap.knop2_over = new Image();
	bitmap.knop2_over.src = "gfx/but_bitmaps_over.gif";

	bitmap.knop2_out = new Image();
	bitmap.knop2_out.src = "gfx/but_bitmaps.gif";

// knop3
	bitmap.knop3_over = new Image();
	bitmap.knop3_over.src = "gfx/but_polygons_over.gif";

	bitmap.knop3_out = new Image();
	bitmap.knop3_out.src = "gfx/but_polygons.gif";
	
// knop4
	bitmap.knop4_over = new Image();
	bitmap.knop4_over.src = "gfx/but_concept_over.gif";

	bitmap.knop4_out = new Image();
	bitmap.knop4_out.src = "gfx/but_concept.gif";
	}

