/*  JS Menu  */


function menu_over(t)
{
	t.setAttribute('onmouseout', "menu_out(this)");
	t.setAttribute('onmouseover', '');
	//t.firstChild.innerHTML = ">>";
	//t.style.fontWeight = "bold";
	var a = t.getElementsByTagName('a');
	a[0].style.color = "#663445";
	t.style.backgroundImage = "url('images/oiseau-mort.png')"
	//t.style.backgroundPosition = '5px 0px';
	t.style.paddingLeft = '35px';
}
function menu_out(t)
{
	t.setAttribute('onmouseout', '');
	t.setAttribute('onmouseover', 'menu_over(this)');
	t.firstChild.innerHTML = ">";
	//t.style.fontWeight = "normal";
	var a = t.getElementsByTagName('a');
	a[0].style.color = "black";
	//t.style.color = "black";
	t.style.backgroundImage = "url('images/oiseau-volant.png')"
	//t.style.backgroundPosition = '0% 0%';
	t.style.paddingLeft = '30px'
}
function video_over(id,url,w,h)
{
	var e = document.getElementById(id);
	e.setAttribute('onmouseover','');
	e.setAttribute('onmouseout','');

	
	e.innerHTML = QT_WriteOBJECT_XHTML('"images/oiseau-volant.png"', '"+ w +"', '"+ h +"', '',
    'autoplay', 'true',
    'href','+ url +',
    'emb#bgcolor', 'white',
    'align', 'middle'); 
}