$(document).ready(function () {
    HandleHomeBoxes();
    ShowTipForm();
    HandleLayerClicks();
    HideStuff();
});

function HandleHomeBoxes() {
    $('.homeBox').hover(
        function () {
            $('h3', this).hide();
            $('p, a', this).show();
        },
        function () {
            $('h3', this).show();
            $('p, a', this).hide();
        }
    );

        $('.homeQuizz').click(function () {
            location.href = '/HEATQuiz.aspx';
        });
}

function ShowTipForm() {
    $('#tipAppear').click(function () {
        $('.vinForm').fadeIn(500);
    });
}

function HandleLayerClicks() {
    $('.layer1, .layer1_flip').click(function () { location.href = '/HEAT/Prevention/Layer1TheCommonSenseApproach.aspx'; });
    $('.layer2, .layer2_flip').click(function () { location.href = '/HEAT/Prevention/Layer2VisibleorAudibleDeterrent.aspx'; });
    $('.layer3, .layer3_flip').click(function () { location.href = '/HEAT/Prevention/Layer3VehicleImmobilizers.aspx'; });
    $('.layer4, .layer4_flip').click(function () { location.href = '/HEAT/Prevention/Layer4TrackingSystems.aspx'; });
}

function HideStuff() {
    $("div.heatzzer tr:contains('Recurring Event'), div.heatzzer tr:contains('Importance'), div.heatzzer tr:contains('Location'), div.heatzzer tr:contains('Owned by')").hide();
}
