﻿$(document).ready(function() {

    if ($('#show_intro').val() == "True") {
        $('#lda_flash_wrapper').css('display', 'block');
        if (flashAvailable) {
            flashIntro();
        } else {
            showHome();
        }
    }
    else {
        fadeInHome();
    }
});


function flashIntro(){

    var attributes = {
        id: 'intro',
        name: 'intro'
    };
    //attributes['class'] = 'flashObject';
    swfobject.embedSWF('/Content/swf/intro.swf', 'flash_target', '955', '449', '8', false, false, false, attributes, false);
}

function fadeInHome() {
    $('#lda_flash_wrapper').customFadeOut(200);
    $('li#boulder a').unbind('click');
    $('li#boulder a').click(function() {
    $(this).css("color", "#fff");
    $(this).parent().find('span').css("border-left", "1px solid transparent");
        $('#boulder_info').toggle();
        return false;
    });

    $('li#boulder a').mouseover(function() {
        $(this).css("color", "#999");
        $(this).parent().find('span').css("border-left", "1px solid #bbb");
    });

    $('li#boulder a').mouseout(function() {
        $('#boulder_info').css("display", "none");
    });

    // Fade in content.
    $('.fade_wrapper').fadeIn(500, function() {
        $('#home_individual_fade').fadeIn(1000, function() {
        });
    });
    $('li#shop').fadeIn(1500);
    $('div#subnav').fadeIn(500);
}

function introReady() {
    setTimeout(function() { thisMovie('intro').startAtStart(); }, 1);
}

function showHome() {
    $('#lda_flash_wrapper').customFadeOut(200);
    fadeInHome();
}
