// JavaScript Document
function newImage(arg) {
	if (document.images) {
		rslt = new Image();
		rslt.src = arg;
		return rslt;
	}
}

function changeImages() {
	if (document.images && (preloadFlag == true)) {
		for (var i=0; i<changeImages.arguments.length; i+=2) {
			document[changeImages.arguments[i]].src = changeImages.arguments[i+1];
		}
	}
}

var preloadFlag = false;
function preloadImages() {
	if (document.images) {
		home_over = newImage("images/home-over.gif");
		despre_noi_over = newImage("images/despre_noi-over.gif");
		m_invitatii_nunta_over = newImage("images/m_invitatii_nunta-over.gif");
		m_invitatii_botez_over = newImage("images/m_invitatii_botez-over.gif");
		m_felicitari_craciun_over = newImage("images/m_felicitari_craciun-over.gif");
		m_distrib_over = newImage("images/m_distrib-over.gif");
		m_contact_over = newImage("images/m_contact-over.gif");
		preloadFlag = true;
	}
}

function showComanda() {
				document.getElementById("butcomanda").style.display="none";
				document.getElementById("formularComanda").style.display="inline";
}
function showContact() {
				document.getElementById("formularComanda").style.display="inline";
}
function hideComanda() {
				document.getElementById("formularComanda").style.display="none";
				document.getElementById("butcomanda").style.display="inline";
//				document.getElementById("subsubmenu"+i).style.display="none";
}
