/*
*************************************************************************
* 
* 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" />

$(document).ready(function() {
    $(".c_presentation .side .play").hover(
        function() 
        {
            $(this).stop().fadeTo(1, 1.0);
        }, 
        function() 
        {
            $(this).stop().fadeTo(200, 0.5);
        });
    $(".presentation a").click(function() {
        window.location = $(this).attr("href");
    });
});
