function bindAndLoad() {
	afficherPetitPanier();
}


function afficherPetitPanier() {
	if($('conteneurPetitPanier')) {
		get($H({
			'action': 'afficherPetitPanier'
		}).toQueryString(), 'conteneurPetitPanier', 'html', {'url' : 'ajax_public_panier.html'});
	}
}


Event.observe(window, 'load', bindAndLoad);