/**
 * @author A. SAWAB
 */

window.onload = function(){
	var targ = document.getElementById('clients_sub');
	var elem = document.getElementById('menu_clients');
	
	elem.onmouseover = function(){targ.style.display = 'block';};
	targ.onmouseout = function(){targ.style.display = 'none';};
};
