// JavaScript Document
function onglet(index) {
	array = ['accueil','devis','vehicules','agences']; 
	frame = window.parent.parent.frames["topFrame"];
	for(i=0; i<array.length; i++) {
		o = array[i];
		page = frame.document.getElementById(o);
		if (index == o)
			page.style.backgroundImage = 'url(styles/onglets/images/m2_out.png)';
		else
			page.style.backgroundImage = 'url(styles/onglets/images/m5_out.png)';
	}
}