jQuery(document).ready(function() {
    
    /************************************ 
    Features hide/show all bar */
    $("div.FeatShowAll a").toggle(function(event) {
        event.preventDefault();
        $("table.FeatList div.Full").show();
        $("table.FeatList a.Icon").removeClass("Plus").addClass("Minus");
        $(this).text("Hide All").removeClass("Plus").addClass("Minus");
    }, function(event) {
        event.preventDefault();
        $("table.FeatList div.Full").hide();
        $("table.FeatList a.Icon").removeClass("Minus").addClass("Plus");
        $(this).text("Show All").removeClass("Minus").addClass("Plus");
    });

    /************************************ 
    Features hide/show */
    $("table.FeatList div.Full").hide();
    $("table.FeatList a.Icon").click(function(event) {
        event.preventDefault();
        $(this).next().slideToggle("fast");        
    });
    $("table.FeatList a.Icon").toggle(function(event) {
        $(this).removeClass("Plus").addClass("Minus");
    }, function(event) {
        $(this).removeClass("Minus").addClass("Plus");     
    });
    
});