var imgAct;

function show(imageId) {
	bigImage = "image_" + imageId;
	bigText = "text_" + imageId;
	bigThumb = "thumb_" + imageId;
	bigImageP = "image_" + imgAct;
	bigTextP = "text_" + imgAct;
	bigThumbP = "thumb_" + imgAct;
	document.getElementById(bigImageP).style.display = "none";
	document.getElementById(bigTextP).style.display = "none";
	document.getElementById(bigThumbP).className = "inactive";
	document.getElementById(bigImage).style.display = "block";
	document.getElementById(bigText).style.display = "block";
	document.getElementById(bigThumb).className = "active";
	imgAct = imageId;
}
function imgActivate(id) {
	imgAct = id;
}

function addForm(num) {
	
		num++;
		$('#ff').load('/admin.php?form='+num, false, function(){fancySetup();});
}
