// JavaScript Document

$(function()
{

$("#assisted").click(function(event) {
event.preventDefault();
$("#assistedExpanded").slideToggle();
$("#commercialExpanded").slideUp();
$("#residentialExpanded").slideUp();
$("#retailExpanded").slideUp();
$("#industrialExpanded").slideUp();
$("#nursingExpanded").slideUp();
$("#industrialportExpanded").slideUp();

});
});

$(function()
{

$("#commercial").click(function(event) {
event.preventDefault();
$("#commercialExpanded").slideToggle();
$("#assistedExpanded").slideUp();
$("#residentialExpanded").slideUp();
$("#retailExpanded").slideUp();
$("#industrialExpanded").slideUp();
$("#nursingExpanded").slideUp();
$("#industrialportExpanded").slideUp();

});
});

$(function()
{

$("#residential").click(function(event) {
event.preventDefault();
$("#residentialExpanded").slideToggle();
$("#assistedExpanded").slideUp();
$("#commercialExpanded").slideUp();
$("#retailExpanded").slideUp();
$("#industrialExpanded").slideUp();
$("#nursingExpanded").slideUp();
$("#industrialportExpanded").slideUp();

});
});

$(function()
{

$("#retail").click(function(event) {
event.preventDefault();
$("#retailExpanded").slideToggle();
$("#assistedExpanded").slideUp();
$("#commercialExpanded").slideUp();
$("#residentialExpanded").slideUp();
$("#industrialExpanded").slideUp();
$("#nursingExpanded").slideUp();
$("#industrialportExpanded").slideUp();

});
});

$(function()
{

$("#industrial").click(function(event) {
event.preventDefault();
$("#industrialExpanded").slideToggle();
$("#assistedExpanded").slideUp();
$("#commercialExpanded").slideUp();
$("#residentialExpanded").slideUp();
$("#retailExpanded").slideUp();
$("#nursingExpanded").slideUp();
$("#industrialportExpanded").slideUp();

});
});

$(function()
{

$("#nursing").click(function(event) {
event.preventDefault();
$("#nursingExpanded").slideToggle();
$("#assistedExpanded").slideUp();
$("#commercialExpanded").slideUp();
$("#residentialExpanded").slideUp();
$("#retailExpanded").slideUp();
$("#industrialExpanded").slideUp();
$("#industrialportExpanded").slideUp();

});
});

$(function()
{

$("#industrialport").click(function(event) {
event.preventDefault();
$("#industrialportExpanded").slideToggle();
$("#assistedExpanded").slideUp();
$("#commercialExpanded").slideUp();
$("#residentialExpanded").slideUp();
$("#retailExpanded").slideUp();
$("#nursingExpanded").slideUp();
$("#industrialExpanded").slideUp();

});
});

