﻿$(document).ready(function () {

    $(".EasyFadeSlider").cycle({ fx: 'fade', fit: false, timeout: 4000, pause: true, speed: 2000, width: 535, height: 411 });

    $('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: false,                            // enable generation of arrow mark-up 
        dropShadows: true                             // enable drop shadows
    });


    //image gallery - label images

    $('div.DesignListItem').each(function (i) {
        $(this).find('.PhotoLinkWrapper').each(function (j) {
            var ItemNum = String(i + 1);
            if (i < 9)
                ItemNum = '0' + ItemNum;

            var ImgNum = String(j + 1);
            if (j < 9)
                ImgNum = '0' + ImgNum
            $(this).children('span.PhotoTitle').text(ItemNum + '/' + ImgNum);
        })
    });

    

});
