﻿(function($) {

    $(document).ready(function() {
        $("#videoPlayer").hide();
        setTransparentItems();
        wireupEvents();
    });

    function PlayVideo(videoId) {
        $("#videoPlayer").css({ opacity: (0) });
        $("#videoPlayer").show();
        $("#videoPlayer").css({ width: "425px", height: "370px" });
        $('#videoPlayer').html("<a class='closeVideo' style='color: White; font-size: 12pt;' href='javascript:closeVid();'>Close Video</a><br /><object width='425' height='344'><param name='movie' value='http://www.youtube.com/v/" + videoId + "&hl=en&fs=1'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='http://www.youtube.com/v/" + videoId + "&hl=en&fs=1' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='425' height='344'></embed></object><br /><a class='closeVideo' style='color: White; font-size: 12pt;' href='javascript:closeVid();'>Close Video</a>");

        $('#container').animate({
            opacity: (0.2)
        }, 500);

        $('#videoPlayer').animate({
            opacity: (1)
        }, 500);

    }

    function wireupEvents() {

        $('#videoWindshield').click(function(e) {
            PlayVideo("4yXSN00tvzU");
            e.preventDefault();
        });
        $('#videoSealedUnit').click(function(e) {
            PlayVideo("_LdBdCf4YH8");
            e.preventDefault();
        });
        $('#videoTileLino').click(function(e) {
            PlayVideo("owRNtIvFnr0");
            e.preventDefault();
        });

        $('.closeVideo').click(function(e) {
            $('#videoPlayer').html("");
            $('#videoPlayer').hide();
            e.preventDefault();
        });

        $('.menuItem').hover(
              function() {
                  $(this).animate({ opacity: (0.95) }, 300);
              },
              function() {
                  $(this).animate({ opacity: (0.85) }, 300);
              });

        $('.menuItem').click(function(e) {
            location.href = '/' + $(this).text();
        });

        $('.menuLogoAndName').click(function(e) {
            location.href = '/';
        });

    }

    function setTransparentItems() {
        $('.menuItem').css({
            opacity: (0)
        });
        $('.menuItem').animate({
            opacity: (0.85)
        }, 1000);
    }

})(jQuery);

function closeVid() {
    $('#videoPlayer').html("");
    $('#videoPlayer').hide();
    $('#container').animate({
        opacity: (1)
    }, 500);
}
