 $(document).ready(function()
 {
	$("#secondarytab3").toggle(function(){$("#secondarytab3-content").slideDown(); 
	                                      $("#secondarytab2-content").hide();
	                                      $("#secondarytab1-content").hide();},
	  function(){$("#secondarytab3-content").slideUp();
	});
	$("#secondarytab2").toggle(function(){$("#secondarytab2-content").slideDown(); 
	                                      $("#secondarytab3-content").hide();
	                                      $("#secondarytab1-content").hide();},
	  function(){$("#secondarytab2-content").slideUp();
	});
	$("#secondarytab1").toggle(function(){$("#secondarytab1-content").slideDown(); 
	                                      $("#secondarytab2-content").hide();
	                                      $("#secondarytab3-content").hide();},
	  function(){$("#secondarytab1-content").slideUp();
	});	
 });

