function initMerchantDetailsAccordions () {
	// we define two arrays, containing our toggles and divs.
	var oMerchantDetailsLinks 	= $$('div.bf_c_detail a');
	var oMerchantDetailsDivs 	= $$('div.bf_details');

	// then we create the effect.
	var oMerchantDetailsAccordionOptions = {
		fps: 24,
		duration: 400,
		opacity: false,
		alwaysHide: true,
		show: false,
		display: false,
		onActive: function (tog) {
				tog.removeClass ('bf_details_toggle_plus');
				tog.addClass ('bf_details_toggle_minus');
				//tog.bgEffect.custom ('#eceeea');
				tog.setHTML ('hide details');
			},
		onBackground: function (tog) {
				tog.removeClass ('bf_details_toggle_minus');
				tog.addClass ('bf_details_toggle_plus');
				//tog.bgEffect.custom ('#ffffff');
				tog.setHTML ('view details');
			},
		start: false
		}
		
	var oMerchantDetailsAccordion = new Accordion(oMerchantDetailsLinks, oMerchantDetailsDivs, oMerchantDetailsAccordionOptions);

	oMerchantDetailsLinks.each (function (tog) {
			tog.addClass ('bf_details_toggle_plus');
			//tog.bgEffect = new Fx.Style (tog.parentNode, 'background-color', {duration: 400});
			//tog.onClick = function () {return false;};
			//tog.onclick = returnFalse.bindAsEventListener(tog);
		});
};