window.addEventListener?window.addEventListener("load",init,false):window.attachEvent("onload",init);

function init()
{
	/*var strClassName = ".hide";
	strClassName = document.getElementById('connect_widget_button_count_count').className;
	if(strClassName.indexOf('ctools-toggle-collapsed', 0) != -1)
		document.getElementById('advanced-search').childNodes[1].textContent = 'Recherche Simple';
	else;
		document.getElementById('advanced-search').childNodes[1].textContent = 'Recherche Avancée';*/

}

function setCurentMenu(object)
{
	alert(object.className);
	//object.style.backgroundColor="#efe3ce";
	
	//object.text="test";
}

function avmenuMouseover(object)
{
	/*alert(object.firstChild.nodeName);*/
	object.style.backgroundImage="url(/resources/img/menu/front-avmenu-left-hover.png)";
	object.style.backgroundRepeat = "no-repeat";
	object.style.backgroundPosition = "top left";

	object.firstChild.style.backgroundImage="url(/resources/img/menu/front-avmenu-right-hover.png)";
	object.firstChild.style.backgroundRepeat = "no-repeat";
	object.firstChild.style.backgroundPosition = "top right";
	//object.style.backgroundColor="#efe3ce";
	
	//object.text="test";
}

function avmenuMouseout(object)
{
	/*alert(object.firstChild.nodeName);*/
	object.style.backgroundImage="url(/resources/img/menu/front-avmenu-left.png)";
	object.style.backgroundRepeat = "no-repeat";
	object.style.backgroundPosition = "top left";

	object.firstChild.style.backgroundImage="url(/resources/img/menu/front-avmenu-right.png)";
	object.firstChild.style.backgroundRepeat = "no-repeat";
	object.firstChild.style.backgroundPosition = "top right";
	//object.style.backgroundColor="#efe3ce";
	
	//object.text="test";
}

function slidesArrowMouseover(object)
{
	if(object.className == "prev"){
		object.firstChild.src="/resources/img/slideshow/arrow-prev-hover.png";
	}
	else if(object.className == "next"){
		object.firstChild.src="/resources/img/slideshow/arrow-next-hover.png";		
	}
}

function slidesArrowMouseout(object)
{
	if(object.className == "prev"){
		object.firstChild.src="/resources/img/slideshow/arrow-prev.png";
	}
	else if(object.className == "next"){
		object.firstChild.src="/resources/img/slideshow/arrow-next.png";		
	}
}

//.hide

