﻿/// <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");
    });
});
