// JavaScript Document /* jQuery effects for technology page */ $(document).ready(function(){ $("#tech-browser .article").hide() ; $("#member-profiles").fadeIn('normal'); $('ul.categories a').click(function() { $(this).addClass('active'); $(this).parent().siblings().children('a').removeClass('active'); var panel = $(this).attr('href'); $("#tech-browser .article").hide(); $(panel).fadeIn('normal'); }); });