function dossierList_module_item_handler(element_id,mouse_state){
	var el_image_zoom ="";
	el_dossier = document.getElementById(element_id);
	if(document.getElementById(element_id+'_zoomImg')){
		el_image_zoom = document.getElementById(element_id+'_zoomImg');
	}
	if(mouse_state=='over'){
		el_dossier.style.borderStyle='solid';
		el_dossier.style.backgroundColor='#ffa9fa';
		el_dossier.style.borderWidth='1';
		el_dossier.style.zIndex = '10';
		if(el_image_zoom!=''){
			el_image_zoom.style.display = 'block';
		}
	}
	if(mouse_state=='out'){
		el_dossier.style.borderStyle='dotted';
		el_dossier.style.borderWidth='1';
		el_dossier.style.backgroundColor='#fff';
		el_dossier.style.zIndex = '1';
		if(el_image_zoom!=''){
			el_image_zoom.style.display = 'none';
		}
	}
}