﻿$(document).ready(function() {
    // listens for any navigation keypress activity
    $(document).keypress(function(e) {
        switch (e.which) {
            // user presses the "1"   
            case 49: window.location.href = '#propertyNumOnPage1';
                break;
            // user presses the "2"   
            case 50: window.location.href = '#propertyNumOnPage2';
                break;
            // user presses the "3"   
            case 51: window.location.href = '#propertyNumOnPage3';
                break;
            // user presses the "4"   
            case 52: window.location.href = '#propertyNumOnPage4';
                break;
            // user presses the "5"   
            case 53: window.location.href = '#propertyNumOnPage5';
                break;
            // user presses the "6"   
            case 54: window.location.href = '#propertyNumOnPage6';
                break;
            // user presses the "7"   
            case 55: window.location.href = '#propertyNumOnPage7';
                break;
            // user presses the "8"   
            case 56: window.location.href = '#propertyNumOnPage8';
                break;
            // user presses the "9"   
            case 57: window.location.href = '#propertyNumOnPage9';
                break;
            // user presses the "0"   
            case 48: window.location.href = '#propertyNumOnPage10';
                break;
        }
    });
});

