


$(document).ready(function() {

$("#resourceTab1").click(function() {
$("#landscapingBox").toggle('slow');

$("#articlesBox").hide('slow');
$("#projectsBox").hide('slow');
$("#linksBox").hide('slow');
});

$("#resourceTab2").click(function() {
$("#articlesBox").toggle('slow');

$("#landscapingBox").hide('slow');

$("#projectsBox").hide('slow');
$("#linksBox").hide('slow');
});

$("#resourceTab3").click(function() {
$("#projectsBox").toggle('slow');

$("#landscapingBox").hide('slow');
$("#articlesBox").hide('slow');

$("#linksBox").hide('slow');
});

$("#resourceTab4").click(function() {
$("#linksBox").toggle('slow');

$("#landscapingBox").hide('slow');
$("#articlesBox").hide('slow');
$("#projectsBox").hide('slow');

});




});


