﻿$(function () {

    $('.towerListItem').hover(
        function () {
            $(this).addClass('towerListItemHover');
        },
        function () {
            $(this).removeClass('towerListItemHover');
        }
    );

    $('.towerListItem').click(function () {
        var towerId = $(this).attr('id').replace('tenc_', '');
        $("#mapHeader").slideUp('slow', function () {
            $("#map").slideUp('fast', function () {
                $("#map").load('/home/LoadMap', { id: towerId }, function () {
                    $("#map").slideDown();
                });
            });
        });

    });


});

function SetupAltTowers() {
    $('.alternateTower').hover(
        function () {
            $(this).addClass('alternatetowerListItemHover');
        },
        function () {
            $(this).removeClass('alternatetowerListItemHover');
        }
        );

    $('.alternateTower').click(function () {
        var towerId = $(this).attr('id').replace('tenc_', '');
        $("#map").slideUp('fast', function () {
            $("#map").load('/home/LoadMap', { id: towerId }, function () {
                $("#map").slideDown();
            });
        });

    });
}