$(document).ready(function() {
	/* ---------------------------------------
	Show and Hide for the FAQ's Page (Management of three part of FAQ)
	--------------------------------------- */
	$('#faq').find('dd').hide().end().find('dt').click(function() {
		var answer = $(this).next();
		if (answer.is(':visible')) {
		answer.hide();
		} 
		else {
		answer.show('fast');
		}
	});
	$('#faq2').find('dd').hide().end().find('dt').click(function() {
		var answer = $(this).next();
		if (answer.is(':visible')) {
		answer.hide();
		} 
		else {
		answer.show('fast');
		}
	});
	$('#faq3').find('dd').hide().end().find('dt').click(function() {
		var answer = $(this).next();
		if (answer.is(':visible')) {
		answer.hide();
		} 
		else {
		answer.show('fast');
		}
	});
	
	/* ---------------------------------------
	Show / Hide for radio buttons on payment page
	--------------------------------------- */	
	// Hide the instructions
	$('.invoice').hide();
	$('.google-checkout').hide();
	$('.cheque').hide();
		
	// Show Credit Card details when radio is selected	
	$('#invoice').focus(function() {
		$('.invoice').show('fast');
		$('.google-checkout').hide();
		$('.cheque').hide();
	});
	
	// Show Google Checkout details when radio is selected		
	$('#google-checkout').focus(function() {
		$('.invoice').hide();
		$('.google-checkout').show('fast');
		$('.cheque').hide();
	});

	// Show Cheque details when radio is selected		
	$('#cheque').focus(function() {
		$('.invoice').hide();
		$('.google-checkout').hide();
		$('.cheque').show('fast');
	});
	
});