$(document).ready(function() {

    //get the current page name
    var currPage = location.pathname.substring(location.pathname.lastIndexOf("/") + 1, location.pathname.length).toLowerCase();
    //if the current page name is investor-login.aspx slide the login panel down
    if (currPage == "investor-login.aspx") {
        $("div#panel").slideDown("slow");
        $("#toggle a").toggle();
    }
	
	// Expand Panel
	$("#open").click(function(){
		$("div#panel").slideDown("slow");
	
	});	
	
	// Collapse Panel
	$("#close").click(function(){
		$("div#panel").slideUp("slow");	
	});		
	
	// Switch buttons from "Log In | Register" to "Close Panel" on click
	$("#toggle a").click(function () {
		$("#toggle a").toggle();
	});		
		
});