function bindAndLoad() {
	getCommentaires();
}


function getCommentaires() {
	if($('conteneurCommentaires')) {
		get($H({
			'action': 'getCommentaires',
			'numFiche': $F('numElement')
		}).toQueryString(), 'conteneurCommentaires', 'html');
	}
}


Event.observe(window, 'load', bindAndLoad);