﻿$(function () {
    $('ul#HouseMenuNav').supersubs({
        minWidth: 12,   // min width of sub-menus in em units 
        maxWidth: 27,   // max width of sub-menus in em units 
        extraWidth: 1.5   // extra width can ensure lines don't sometimes turn over due to slight rounding differences and font-family 
    }).superfish({
        delay: 800,                             // delay on mouseout 
        animation: { opacity: 'show', height: 'show' },  // fade-in and slide-down animation 
        speed: 'fast',                          // animation speed (slow/normal/fast)
        autoArrows: true,                            // enable generation of arrow mark-up 
        dropShadows: true                             // enable drop shadows
    });

   
    if ($("#HouseMenuNav li#HouseMenuNavCurrentItem").length > 0) {
        $("li#HouseMenuNavItemHome").css('background-color', 'transparent');
        $("#HouseMenuNavCurrentItem").parent().parent().addClass("current");
        $(this).parent().parent().addClass("current");
    }
});

$('#banner').cycle({
    random: true,
    timeout: 6000,
    pause: true
});
