var ifsc_index = 2;
$(document).ready(Load1);

function Load1()
 {
        $("#ifsc1,#ifsc3").hide();
        $("#menu-tab-3").css("border-left-color", "#cccccc");

        $("#Search-Form :text").click(
         function()
          {
                 //$("#Search-Form :text").css("background-color", "#ffffff")
                 //this.style.backgroundColor = "#e6faf0";
          }
         );

        $("#Search-Results .tab-menu > a").click(
        function()
         {
                var new_ifsc_index = this.href.substr(this.href.indexOf('#') + 5);

                $("#ifsc" + ifsc_index).hide();
                $("#ifsc" + new_ifsc_index).show();
                $("#Search-Results .tab-menu a").attr("class", "unselected");
                $("#Search-Results .tab-menu a").css("border-left-color", "blue");
                $("#menu-tab-" + (parseInt(new_ifsc_index) + 1)).css("border-left-color", "#cccccc");
                this.className = "selected";
                this.blur(); // Just to get rid of the dotted border when clicking on an anchor

                ifsc_index = new_ifsc_index;
         }
        );
 }