var objShow;


function elementFadeOut(id)
{
	$(id).fadeOut(500);
}
function elementFadeIn(id)
{
	$(id).fadeIn(1000);
}
function elementShow(id)
{
	document.getElementById(id).style.display = 'block';
}
function elementHide(id)
{
	document.getElementById(id).style.display = 'none';
}

/////////////////////////////////////////////////////

function menuServicesShow(id, id2, isAnimationEnable)
{
	if(isAnimationEnable)
	{
		elementFadeOut(id);
		elementFadeIn(id2);
	}
	else
	{
		elementHide(id);
		elementShow(id2);
	}
	
	//setTimeout(showServiceSubMenu(id2),5000);
	
}

function menuServicesHide(id, id2)
{
	elementFadeOut(id2);
	elementFadeIn(id);
}

function setHoverIcon(iconId, iconPath)
{
	document.getElementById(iconId).style.backgroundImage = "url(images/PNG/" + iconPath + "Hover.png)";
}
function setStandartIcon(iconId, iconPath)
{
	document.getElementById(iconId).style.backgroundImage = "url(images/PNG/" + iconPath + ".png)";
}




function FrenchInfoShow()
{
	var parent = document.getElementById('contentSub');
	parent.innerHTML = "<div style = 'margin-left: 32px; font-size: 18px;' class = 'pages_heading'>La version française de notre site est en cours de mise à niveau et sera mise en ligne très prochainement. Votre visite nous est précieuse et nous vous en remercions.</div>";
}

