
$(document).ready(function() {
//Hide all board member panels
$("#member-name").hide();
$(".tabLink").click(function() {
if($(this).parent().parent().hasClass("heading_on"))
{
//Close the panel
$(this).parent().parent().addClass("heading").removeClass("heading_on");
//Reveal the Image and associated text
$(this).parent().parent().parent().find("#member-name").slideUp(150);
$(this).find(".panelBtn").attr("src","/portals/0/skins/CFSLWebsite/images/search-btn.gif");
}
else
{
//Show the panel
$(this).parent().parent().removeClass("heading").addClass("heading_on");
//Reveal the Image and associated text
$(this).parent().parent().parent().find("#member-name").slideDown(150);		
$(this).find(".panelBtn").attr("src","/portals/0/skins/CFSLWebsite/images/search-btn-orange.gif");
}
return false;
});
});
