// ROLL OVER
function _roll(e, img, full, html) {
	
	e.src=img;
	
	html=html.replace(/\\'/g,'\'');
	html=html.replace(/\\"/g,'"');
	html=html.replace(/\\\\/g,'\\');
	html=html.replace(/\\0/g,'\0');

	
	document.getElementById('full-img').src = full;
	document.getElementById('legende').innerHTML = html;
	
}//-- _roll

function _init() {
	for (var i=1; i<_TAB_IMAGE_FULL.length;i++) {
		_image = new Image();
		_image.src = _TAB_IMAGE_FULL[i];
	}	
}
