﻿// Expand-collapse toggle panel (div).
$(document).ready(function () {
    $(".title-icon-left").click(function () {
        //$(this).css("background-image", "url(/Styles/images/icons/arrow_down.png)");
        $(this).toggleClass("title-icon-left-active").next(".content-homepage").slideToggle("slow");
    });
});

