// JavaScript Document



function mouseOverMenu(id) {
	
pause(30);
function pause(ms)
{
var date = new Date();
var curDate = null;
do { curDate = new Date(); }
while(curDate-date < ms);
}
	
	document.getElementById(id).style.display = "block";
	document.getElementById(id+"_td").style.background = "#c5c3b6";
	
	if (id == "sud"){
		document.getElementById("service_list").style.display = "none";
	}
}

function mouseOutMenu(id) {
	document.getElementById(id).style.display = "none";
	document.getElementById(id+"_td").style.background = "#f7f4e6";

	if (id == "sud"){
		document.getElementById("service_list").style.display = "inline";
	}
}


function show_big_photo(phName) {
window.open(phName,'_blank', 'scrollbars=yes,toolbar=no,location=no,directories=no,status=no,width=800,height=600');
}

