﻿
$(document).ready(function() {
	$("#sub1").hide('');	
	$("#sub2").hide('');	
	$("#sub3").hide('');	
	$("#sub4").hide('');	
	$("#sub5").hide('');	
	$("#sub6").hide('');	
	$("#sub7").hide('');	
	$("#sub8").hide('');	
	$("#sub9").hide('');	
	$("#sub10").hide('');	

	$("#aba1").toggle(function() {
		$("#sub1").show('slow');
	}, function() {
		$("#sub1").hide('slow');
	});
	
	$("#aba2").toggle(function() {
		$("#sub2").show('slow');
	}, function() {
		$("#sub2").hide('slow');
	});
	
	$("#aba3").toggle(function() {
		$("#sub3").show('slow');
	}, function() {
		$("#sub3").hide('slow');
	});
	
	$("#aba4").toggle(function() {
		$("#sub4").show('slow');
	}, function() {
		$("#sub4").hide('slow');
	});

	$("#aba5").toggle(function() {
		$("#sub5").show('slow');
	}, function() {
		$("#sub5").hide('slow');
	});
	
	$("#aba6").toggle(function() {
		$("#sub6").show('slow');
	}, function() {
		$("#sub6").hide('slow');
	});

	$("#aba7").toggle(function() {
		$("#sub7").show('slow');
	}, function() {
		$("#sub7").hide('slow');
	});
	
	$("#aba8").toggle(function() {
		$("#sub8").show('slow');
	}, function() {
		$("#sub8").hide('slow');
	});

	$("#aba9").toggle(function() {
		$("#sub9").show('slow');
	}, function() {
		$("#sub9").hide('slow');
	});
	
	$("#aba10").toggle(function() {
		$("#sub10").show('slow');
	}, function() {
		$("#sub10").hide('slow');
	});
});
