// JavaScript Document
$(document).ready(function(){
//Hide the tooglebox when page load
$(".sublist").hide();
//slide up and down when click over heading 2
$(".openlink").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".sublist").slideToggle("fast");
return true;
});
});

$(document).ready(function(){
//Hide the tooglebox when page load
$(".subtext").hide();
//slide up and down when click over heading 2
$(".opensub").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".subtext").slideToggle("fast");
return true;
});
});