﻿function ieHoverFix(menuId, adminMode) {
}

function goToByScroll(id) {
    $('html,body').animate({ scrollTop: $("#" + id).offset().top }, 'slow');
}

$(document).ready(function () {
    //menu
    $(".toggle_container").hide();

    $("h2.trigger").click(function () {
        $(this).toggleClass("active").next().slideToggle("slow");
    });

    //    if ((location.href.indexOf('.aspx') == -1) || (location.href.indexOf('home.aspx') != -1) || (location.href.indexOf('Home.aspx') != -1) || (location.href.indexOf('default.aspx') != -1) || (location.href.indexOf('Default.aspx') != -1) || (location.href.indexOf('index.aspx') != -1)) {
    //        $('#HouseMenuNav li:first').addClass("currentitem");
    //    }

    //menu
    $('a.toggleLink').click(function () {
        $('#' + $(this).attr('rel')).toggleClass("active").next().slideToggle("slow");
        goToByScroll($(this).attr('rel'));
    })

    $('#mainSlider').bxSlider({
        controls: false,
        pager: false,
        auto: true,
        randomStart: true,
        autoHover: true,
        pause: 4000
    });

    if (location.href.indexOf('/locations/') > 0) {

        $('#HouseMenuNavItem418').addClass('CurItem');

    }
});
