﻿$(document).ready(function() {
    
    $("div.mainViewExtended").hide();

    $("div.mainView").ready(function() {

        $("div.mainView").click(function() {
            
            $(this).children("div.mainViewInside").slideToggle("slow", function() {
                //alert('Top: ' + $(this).offset().top + ' Left: ' + $(this).offset().left);
                var top = $(this).parent().offset().top - 10;
                var left = $(this).parent().offset().left;
                window.scrollTo(0, top);

                if ($(this).is(":visible")) {
                    $(this).parent().css("border", "solid 1px black");
                    $(this).parent().children(".MoreInfoLink").text("Click For Short Bio...");
                }
                else {
                    $(this).parent().css("border", "none");
                    $(this).parent().children(".MoreInfoLink").text("Click For More Info...");
                }
            });
        });

    });

});