window.onload = initAll;

function initAll(){
	document.getElementById("verif").innerHTML = "";
	document.getElementById("celHome").onmouseover = meniuSusMouseOver;
	document.getElementById("celHome").onmouseout = meniuSusMouseOut;
	document.getElementById("celHome").onclick = clickCelHome;
	document.getElementById("celPort").onmouseover = meniuSusMouseOver;
	document.getElementById("celPort").onmouseout = meniuSusMouseOut;
	document.getElementById("celPort").onclick = clickCelPort;
	document.getElementById("celHowIt").onmouseover = meniuSusMouseOver;
	document.getElementById("celHowIt").onmouseout = meniuSusMouseOut;
	document.getElementById("celHowIt").onclick = clickCelHowIt;
	document.getElementById("celPricing").onmouseover = meniuSusMouseOver;
	document.getElementById("celPricing").onmouseout = meniuSusMouseOut;
	document.getElementById("celPricing").onclick = clickCelPric;
	document.getElementById("celContact").onmouseover = meniuSusMouseOver;
	document.getElementById("celContact").onmouseout = meniuSusMouseOut;
	document.getElementById("celContact").onclick = clickCelContact;
	
	initAll2();
	
	var preLoad = new Array("images/baraMeniuSus_3.gif");
}

function meniuSusMouseOver(){
	this.style.backgroundImage = "url(images/baraMeniuSus_3.gif)";	
	document.getElementById("verif").innerHTML = "mouse pe";
}

function meniuSusMouseOut(){
	this.style.backgroundImage = "url(images/baraMeniuSus.gif)";
	document.getElementById("verif").innerHTML = "mouse out";
}

function clickCelPort(){
	window.location = "background_removing.php";
}

function clickCelHome(){
	window.location = "index.php";
}

function clickCelHowIt(){
	window.location = "color_paths.php";
}

function clickCelPric(){
	window.location = "pricing.php";
}

function clickCelContact(){
	window.location = "contact.php";
}