/*
*************************************************************************
* 
* CAPTUAL TECHNOLOGIES CONFIDENTIAL
* _________________________________
* 
*  2008 - 2011 Captual Technologies Inc. 
*  All Rights Reserved.
* 
* NOTICE:  All information contained herein is, and remains
* the property of Captual Technologies Incorporated and its suppliers,
* if any.  Dissemination of this information or reproduction of this 
* material is strictly forbidden unless prior written permission is 
* obtained from Captual Technologies Incorporated.
*
*************************************************************************
*/

/// <reference path="~/Content/js/lib/jquery/jquery.min.js" />

function setupDimmer()
{
    // Get the width of the presentation area
    var presentation_area = $('.site_full');
    var presentation_area_width = presentation_area.width();

    $(".v_watch").css("zIndex", 99);
    
    // Set the presentation area to an absolute position, and set z-index
    // so that it stays above dimmer
    presentation_area.css("position", "absolute");
    presentation_area.css("top", "0");
    presentation_area.css("width", presentation_area_width + "px");
    
    // Set the position of the bottom content area
    $('.v_watch .presentation_area .iframe_container').css("width", presentation_area_width + "px");
    
    var $btn = $('.button_lights').createButton(siteRoot + "/Content/img/sunoff.png", siteRoot + "/Content/img/sunon.png", $(".site_full:first"));
    $btn.addOff(function() {
            $(".v_watch").css("zIndex", 98);
        });
    $btn.addOn(function() {
            $(".v_watch").css("zIndex", 101);
        });
}

$(document).ready(function() {
    setupDimmer();
});


