var activeDiv;
function doShow(num) {
	info = document.getElementById("intro_" + num);
	info.style.display = "block";
}
function doHide(num) {
	info = document.getElementById("intro_" + num);
	info.style.display = "none";
}
var im = new Array();
function changeImage(who, where) {
	if(!im[where]) {
		im[where] = new Image();
		im[where].src = lim[where][0];
	}

	bestel(lim[where]);
	document.getElementById(who).src = im[where].src;
}
function flip(who, where, what) {
	if(what) {
		where.src = "/gfx/menu/ee20_" + who + ".png";
	} else {
		where.src = "/gfx/menu/b120_" + who + ".png";
	}
}
function bestel(what) {
	basename = what[1];
	imageId = what[2];
	
	document.getElementById("imageName").innerHTML = basename;
	document.forms["bestelForm"].elements["image_id"].value = imageId;
}

function handleBestel(frm) {
	cid = frm.elements["cid"].value;
	project_id = frm.elements["project_id"].value;
	image_id = frm.elements["image_id"].value;
	aantal = frm.elements["aantal"].value;
	jq = 1;
	
	$.get("/index.php", { cid: cid, project_id : project_id, jq: jq, image_id:image_id, aantal:aantal}, function(data){
		document.getElementById("infobestel").innerHTML = data;
	});
}

function showHide(who, what) {
	document.getElementById(who).style.display = what ? "block" : "none";
}
