$(document).ready(function() {

    // for HomeBuyers
    $("#homeBuying101").click(function() {
        $('#info-content').load('Info/HomeBuyers/HomeBuying101.htm');
    });
    
    $("#rentOrBuy").click(function() {
        $('#info-content').load('Info/HomeBuyers/RentOrBuy.htm');
    });
    
    $("#homeBuyingSteps").click(function() {
        $('#info-content').load('Info/HomeBuyers/HomeBuyingSteps.htm');
    });
    
    $("#theMortgateProcess").click(function() {
        $('#info-content').load('Info/HomeBuyers/TheMortgageProcess.htm');
    });

    $("#theClosingProcess").click(function() {
        $('#info-content').load('Info/HomeBuyers/TheClosingProcess.htm');
    });
    
    // for Tenants    
    $("#questionsForRenting").click(function() {
        $('#info-content').load('Info/Tenants/QuestionsForRenting.htm');
    });    
    
    $("#questionsBeforeSigning").click(function() {
        $('#info-content').load('Info/Tenants/QuestionsBeforeSigning.htm');
    });
    
    $("#renterRights").click(function() {
        $('#info-content').load('Info/Tenants/RenterRights.htm');
    });
    
    $("#rentalTerminology").click(function() {
        $('#info-content').load('Info/Tenants/RentalTerminology.htm');
    });

     $("#securityDeposits").click(function() {
        $('#info-content').load('Info/Tenants/SecurityDeposits.htm');
    });
    
    // for landlords
     $("#gettingStarted").click(function() {
        $('#info-content').load('Info/LandLords/GettingStarted.htm');
    });
    
     $("#landlordsHeadaches").click(function() {
        $('#info-content').load('Info/LandLords/LandlordHeadaches.htm');
    });
    
     $("#contractsAndLeases").click(function() {
        $('#info-content').load('Info/LandLords/ContractsAndLeases.htm');
    });
    
     $("#screeningTenants").click(function() {
        $('#info-content').load('Info/LandLords/ScreeningTenants.htm');
    });
    
     $("#maintenanceAndContractors").click(function() {
        $('#info-content').load('Info/LandLords/MaintenanceAndContractors.htm');
    });
    
     $("#planningForTaxes").click(function() {
        $('#info-content').load('Info/LandLords/PlanningForTaxes.htm');
    });
    
    // for Selling Home
     $("#interviewingBrokers").click(function() {
        $('#info-content').load('Info/SellingHome/InterviewingBrokers.htm');
    });
    
     $("#gettingYourHouseReady").click(function() {
        $('#info-content').load('Info/SellingHome/GettingYourHouseReady.htm');
    });
    
     $("#showingYourHouse").click(function() {
        $('#info-content').load('Info/SellingHome/ShowingYourHouse.htm');
    });
})