﻿///<reference name="MicrosoftAjax.js"/>

var IndexPage = function(linkListContainer){
    IndexPage.Instance = this;
    this.SetPageWrapper("indexPage");
    this.LinkListContainer = $get(linkListContainer);
    this.SetUp();
}
IndexPage.prototype = new CalculatorPage;

IndexPage.prototype.SetUp = function(){
    $get('calc-calculator-step1').style.display = 'none';
}