﻿
function hideSections(){
    $(".jquery_tips_cont").css('display', 'none'); //reset
}

function showOnClick(section_id, link_id) {
    $('#' + link_id).unbind();
    $("#" + link_id).click(
        function(e) { 
            e.stopPropagation(); 
            e.preventDefault(); 
            $(this).parent().parent().children().children().each(function() {
                $(this).removeClass("text_current");
                $(this).addClass("text"); //reset the class to the default
            });
            hideSections();  //hide all floating divs on right hand side
            
            $('#content_pane').css({background: "url('/images/water_damage_yellow_burst_bottom_bg.jpg') no-repeat"});            
            $(this).removeClass("text");            
            $(this).addClass("text_current"); //set the class of the current link to be highlighted
            $("#" + section_id).css('display', ''); //display the current one.
        }
    );
}

