/* Detection du fureteur pour corriger bug CSS en Safari et Opera */
function adjustPageBorders () {

	var agt = navigator.userAgent.toLowerCase();

	if ( agt.indexOf("safari") != -1 || agt.indexOf("opera") != -1 ) {
		containerHeight = document.getElementById('container').offsetHeight;
		imgBordersHeight = containerHeight+3;
		document.getElementById('imgBorderLeft').style.height = imgBordersHeight+'px';
		document.getElementById('imgBorderRight').style.height = imgBordersHeight+'px';
	}
	
}