$(document).ready(function(){

//consumer products
$("a.consumer_products_slidedown").click(function(){ $("div.index_content").find("div.consumer_products:hidden, div.hide_all:hidden").slideToggle("fast"); });

//education
$("a.education_slidedown").click(function(){ $("div.index_content").find("div.education:hidden, div.hide_all:hidden").slideToggle("fast"); });

//entertainment
$("a.entertainment_slidedown").click(function(){ $("div.index_content").find("div.entertainment:hidden, div.hide_all:hidden").slideToggle("fast"); });

//financial services
$("a.financial_services_slidedown").click(function(){ $("div.index_content").find("div.financial_services:hidden, div.hide_all:hidden").slideToggle("fast"); });

//health care
$("a.health_care_slidedown").click(function(){ $("div.index_content").find("div.health_care:hidden, div.hide_all:hidden").slideToggle("fast"); });

//non-profit
$("a.non-profit_slidedown").click(function(){ $("div.index_content").find("div.non-profit:hidden, div.hide_all:hidden").slideToggle("fast"); });

//publishing
$("a.publishing_slidedown").click(function(){ $("div.index_content").find("div.publishing:hidden, div.hide_all:hidden").slideToggle("fast"); });

//services
$("a.services_slidedown").click(function(){ $("div.index_content").find("div.services:hidden, div.hide_all:hidden").slideToggle("fast"); });


//all
$("a.all_slidedown").click(function(){ $("div.index_content").find("div.consumer_products:hidden, div.education:hidden, div.entertainment:hidden, div.financial_services:hidden, div.health_care:hidden, div.non-profit:hidden, div.publishing:hidden, div.services:hidden, div.hide_all:hidden").slideDown("slow"); });
$("a.all_slideup").click(function(){ $("div.index_content").find("div.consumer_products:visible, div.education:visible, div.entertainment:visible, div.financial_services:visible, div.health_care:visible, div.non-profit:visible, div.publishing:visible, div.services:visible, div.hide_all:visible").slideUp("slow"); });





});

