$(document).ready(function() {

$("#boxNavDesign").click(function() {
$("#tabbedText1").hide('fast');
$("#tabbedText2").hide('fast');
$("#tabbedText").fadeIn('slow');

$("#boxNavDesign").css('backgroundColor','#ffffff')
$("#boxNavDesign").css('color','#000000')
$("#boxNavDevelopment").css('backgroundColor','#cccccc')
$("#boxNavDevelopment").css('color','#666666')
$("#boxNavMarketing").css('backgroundColor','#cccccc')
$("#boxNavMarketing").css('color','#666666')
});

$("#boxNavDevelopment").click(function() {
$("#tabbedText").hide('fast');
$("#tabbedText2").hide('fast');
$("#tabbedText1").fadeIn('slow');

$("#boxNavDevelopment").css('backgroundColor','#ffffff')
$("#boxNavDevelopment").css('color','#000000')
$("#boxNavDesign").css('backgroundColor','#cccccc')
$("#boxNavDesign").css('color','#666666')
$("#boxNavMarketing").css('backgroundColor','#cccccc')
$("#boxNavMarketing").css('color','#666666')
});

$("#boxNavMarketing").click(function() {
$("#tabbedText").hide('fast');
$("#tabbedText1").hide('fast');
$("#tabbedText2").fadeIn('slow');

$("#boxNavMarketing").css('backgroundColor','#ffffff')
$("#boxNavMarketing").css('color','#000000')
$("#boxNavDevelopment").css('backgroundColor','#cccccc')
$("#boxNavDevelopment").css('color','#666666')
$("#boxNavDesign").css('backgroundColor','#cccccc')
$("#boxNavDesign").css('color','#666666')
});


$("#tab1").click(function() {
$("#testimonialsBox").hide('fast');
$("#videosBox").hide('fast');
$("#articlesBox").hide('fast');
$("#tipsBox").toggle('fast');
$("#linksBox").hide('fast');
});

$("#tab2").click(function() {
$("#testimonialsBox").hide('fast');
$("#videosBox").hide('fast');
$("#articlesBox").toggle('fast');
$("#tipsBox").hide('fast');
$("#linksBox").hide('fast');
});

$("#tab3").click(function() {
$("#testimonialsBox").hide('fast');
$("#videosBox").toggle('fast');
$("#articlesBox").hide('fast');
$("#tipsBox").hide('fast');
$("#linksBox").hide('fast');
});

$("#tab4").click(function() {
$("#testimonialsBox").hide('fast');
$("#linksBox").toggle('fast');
$("#videosBox").hide('fast');
$("#articlesBox").hide('fast');
$("#tipsBox").hide('fast');
});

$("#tab5").click(function() {

$("#testimonialsBox").toggle('fast');
$("#linksBox").hide('fast');
$("#videosBox").hide('fast');
$("#articlesBox").hide('fast');
$("#tipsBox").hide('fast');
});

$("#closeArticles").click(function() {
$("#articlesBox").hide('fast');
});

$("#closeArticles1").click(function() {
$("#articlesBox").hide('fast');
});

$("#closeLinks").click(function() {
$("#linksBox").hide('fast');
});

$("#closeLinks1").click(function() {
$("#linksBox").hide('fast');
});

$("#closeTips").click(function() {
$("#tipsBox").hide('fast');
});

$("#closeTips1").click(function() {
$("#tipsBox").hide('fast');
});

$("#closeVideos").click(function() {
$("#videosBox").hide('fast');
});

$("#closeVideos1").click(function() {
$("#videosBox").hide('fast');
});



$("#closeTestimonials").click(function() {
$("#testimonialsBox").hide('fast');
});

$("#closeTestimonials1").click(function() {
$("#testimonialsBox").hide('fast');
});


$("#openTips").click(function() {
$("#tipsBox").show('fast');
$("#articlesBox").hide('fast');
$("#videosBox").hide('fast');
});

$("#openPress").click(function() {
$("#videosBox").show('fast');
$("#articlesBox").hide('fast');
$("#tipsBox").hide('fast');
});

$("#openArticles").click(function() {
$("#articlesBox").show('fast');
$("#tipsBox").hide('fast');
$("#videosBox").hide('fast');
});


});



