// JavaScript Document
// mini menu fiche livre

function RolloverItem(Delement){
	oElement = document.getElementById(Delement+'-title');
	//oElement2 = oElement.;
	oElement.className = 'item_title_over ar_12';
	oElement = document.getElementById(Delement+'-left');
	//oElement2 = oElement.;
	oElement.className = 'bord_left_over';
	oElement = document.getElementById(Delement+'-right');
	//oElement2 = oElement.;
	oElement.className = 'bord_right_over';	
}

function RolloutItem(Delement){
	oElement = document.getElementById(Delement+'-title');
	//oElement2 = oElement.;
	oElement.className = 'item_title ar_12';
	oElement = document.getElementById(Delement+'-left');
	//oElement2 = oElement.;
	oElement.className = 'bord_left';
	oElement = document.getElementById(Delement+'-right');
	//oElement2 = oElement.;
	oElement.className = 'bord_right';	
}

