


$(document).ready(function() {

$("#resourceTab1").click(function() {


$("#articlesBox").toggle('slow');
$("#glossaryBox").hide('slow');
$("#newslettersBox").hide('slow');
$("#linksBox").hide('slow');
$("#testimonialsBox").hide('slow');
$("#videosBox").hide('slow');
});

$("#resourceTab2").click(function() {
$("#articlesBox").hide('slow');
$("#glossaryBox").toggle('slow');
$("#newslettersBox").hide('slow');
$("#linksBox").hide('slow');
$("#testimonialsBox").hide('slow');
$("#videosBox").hide('slow');
});

$("#resourceTab3").click(function() {
$("#articlesBox").hide('slow');
$("#glossaryBox").hide('slow');
$("#newslettersBox").toggle('slow');
$("#linksBox").hide('slow');
$("#testimonialsBox").hide('slow');
$("#videosBox").hide('slow');
});

$("#resourceTab4").click(function() {
$("#articlesBox").hide('slow');
$("#glossaryBox").hide('slow');
$("#newslettersBox").hide('slow');
$("#linksBox").toggle('slow');
$("#testimonialsBox").hide('slow');
$("#videosBox").hide('slow');
});

$("#resourceTab5").click(function() {
$("#articlesBox").hide('slow');
$("#glossaryBox").hide('slow');
$("#newslettersBox").hide('slow');
$("#linksBox").hide('slow');
$("#testimonialsBox").toggle('slow');
$("#videosBox").hide('slow');
});

$("#resourceTab6").click(function() {
$("#articlesBox").hide('slow');
$("#glossaryBox").hide('slow');
$("#newslettersBox").hide('slow');
$("#linksBox").hide('slow');
$("#testimonialsBox").hide('slow');
$("#videosBox").toggle('slow');
});


});



