$(function(){

	$("#other_products_area").hide();
	$("#buying_group_details").hide();
	$("#storefront_details").hide();
	
	$('#other').click(function(){
		$('#other_products_area').slideToggle();
	});
	
	$("input[name='buying_group']").click(function(){
		$('#buying_group_details').slideToggle();
	});
	
	$("input[name='storefront']").click(function(){
		$('#storefront_details').slideToggle();
	});
	
});
