$(document).ready(function() {

$("#tab1").click(function() {
$("#testimonialsBox").hide('fast');
$("#projectsBox").hide('fast');
$("#linksBox").hide('fast');
$("#tipsBox").toggle('fast');
});

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

$("#testimonialsBox").hide('fast');
$("#projectsBox").hide('fast');
$("#linksBox").toggle('fast');
$("#tipsBox").hide('fast');
});

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

$("#testimonialsBox").hide('fast');
$("#projectsBox").toggle('fast');
$("#linksBox").hide('fast');
$("#tipsBox").hide('fast');
});


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

$("#testimonialsBox").toggle('fast');
$("#projectsBox").hide('fast');
$("#linksBox").hide('fast');
$("#tipsBox").hide('fast');
});



$("#closeLinks").click(function() {
$("#linksBox").hide('fast');
});

$("#closeLinks1").click(function() {
$("#linksBox").hide('fast');
});


$("#closeProjects1").click(function() {
$("#projectsBox").hide('fast');
});
$("#closeProjects").click(function() {
$("#projectsBox").hide('fast');
});



$("#closeTips").click(function() {
$("#tipsBox").hide('fast');
});

$("#closeTips1").click(function() {
$("#tipsBox").hide('fast');
});

$("#closeTestimonials").click(function() {
$("#testimonialsBox").hide('fast');
});

$("#closeTestimonials1").click(function() {
$("#testimonialsBox").hide('fast');
});


$("#openTips").click(function() {
$("#tipsBox").show('fast');
$("#articlesBox").hide('fast');
$("#pressBox").hide('fast');
});

$("#openPress").click(function() {
$("#pressBox").show('fast');
$("#articlesBox").hide('fast');
$("#tipsBox").hide('fast');
});

$("#openArticles").click(function() {
$("#articlesBox").show('fast');
$("#tipsBox").hide('fast');
$("#pressBox").hide('fast');
});


});


