/////////////////////////////////////// BEGIN FAQ DOMAIN REGISTRATION //////////////////////////////////
jQuery(document).ready(function(){
	jQuery("dd").hide();
	jQuery("dt").click(function(){
		jQuery(this).next().toggle();
	});
});		
function showall(){
	jQuery("dd").show();
}		
function hideall(){
	jQuery("dd").hide();
}
function displayFaq(id){
	switch(id){
		case 'domainReg':
			jQuery('#domain-registration').show();
		break;
		case 'domainParking':
			jQuery('#domain-parking').show();
		break;
		case 'siteBuilder':
			jQuery('#site-builder').show();
		break;
	}
	jQuery('#faq-main').hide();
}
function backFaq(){
	jQuery('#site-builder').hide();
	jQuery('#domain-parking').hide();
	jQuery('#domain-registration').hide();
	jQuery('#faq-main').show();
}
		