
$(document).ready(function(){

// ******************************************************************** //

	//hide the all of the toggle elements
	$("#balancing-toggle").hide();
	$("#commpac-toggle").hide();
	$("#dominator-toggle").hide();
	$("#dpcv-toggle").hide();
	$("#thermal-toggle").hide();
	
// ******************************************************************** //	







// ******************************************************************** //
	
	//toggle the componenets within the Valve Family
	$(".toggle-balancing").click(function(){
		$(this).next(".#balancing-toggle").slideToggle(600);
		$("#commpac-toggle").slideUp(500);
		$("#dominator-toggle").slideUp(500);
		$("#dpcv-toggle").slideUp(500);
		$("#thermal-toggle").slideUp(500);
	});
	
// ******************************************************************** //	

	//toggle the componenets within the Valve Family
	$(".toggle-commpac").click(function(){
		$(this).next(".#commpac-toggle").slideToggle(600);
		$("#balancing-toggle").slideUp(500);
		$("#dominator-toggle").slideUp(500);
		$("#dpcv-toggle").slideUp(500);
		$("#thermal-toggle").slideUp(500);
	});
	
// ******************************************************************** //	

	//toggle the componenets within the Valve Family
	$(".toggle-dominator").click(function(){
		$(this).next(".#dominator-toggle").slideToggle(600);
		$("#balancing-toggle").slideUp(500);
		$("#commpac-toggle").slideUp(500);
		$("#dpcv-toggle").slideUp(500);
		$("#thermal-toggle").slideUp(500);
	});
	
// ******************************************************************** //	

	//toggle the componenets within the Valve Family
	$(".toggle-dpcv").click(function(){
		$(this).next(".#dpcv-toggle").slideToggle(600);
		$("#balancing-toggle").slideUp(500);
		$("#commpac-toggle").slideUp(500);
		$("#dominator-toggle").slideUp(500);
		$("#thermal-toggle").slideUp(500);
	});
	
// ******************************************************************** //	

	//toggle the componenets within the Valve Family
	$(".toggle-thermal").click(function(){
		$(this).next(".#thermal-toggle").slideToggle(600);
		$("#balancing-toggle").slideUp(500);
		$("#commpac-toggle").slideUp(500);
		$("#dominator-toggle").slideUp(500);
		$("#dpcv-toggle").slideUp(500);
	});
	
// ******************************************************************** //	

});
