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

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

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

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

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

$(document).ready(function(){
//Hide the tooglebox when page load
$(".footerlinks2").hide();
//slide up and down when click over heading 2
$("#footer_inner h3.drop2").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".footerlinks2").slideToggle("slow");
return true;
});
});
$(document).ready(function(){
//Hide the tooglebox when page load
$(".footerlinks3").hide();
//slide up and down when click over heading 2
$("#footer_inner h3.drop3").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".footerlinks3").slideToggle("slow");
return true;
});
});
$(document).ready(function(){
//Hide the tooglebox when page load
$(".footerlinks4").hide();
//slide up and down when click over heading 2
$("#footer_inner h3.drop4").click(function(){
// slide toggle effect set to slow you can set it to fast too.
$(this).next(".footerlinks4").slideToggle("slow");
return true;
});
});
