/****************************************
 * Homepage JavaScript
 ****************************************/

// set up toggling of form details
function setupToggles() {
	// get radio buttons
	var creditCardRadio = $("product-creditCard");
	var homeLoanRadio = $("product-homeLoan");
	
	if(creditCardRadio && homeLoanRadio) {
		// get details <div>'s
		var homeLoanDetails = $("homeLoan-details");

		// create effects
		var toggleHomeLoanDetails = new fx.Height(homeLoanDetails, { duration: effectDuration });

		// attach toggle effects to radio buttons
		creditCardRadio.onchange = creditCardRadio.onclick = function() {
			if(this.checked == true) {
				toggleHomeLoanDetails.collapse();
			}
		};
		homeLoanRadio.onchange = homeLoanRadio.onclick = function() {
			if(this.checked == true) {
				toggleHomeLoanDetails.expand();
			}
		};

		// hide details
		if(homeLoanRadio.checked != true) toggleHomeLoanDetails.hide();
	}
}

/* Set everything up when the page lods */

if(document.getElementById) {
	addEvent(window, 'load', function() {
		setupToggles();
	});
}

