﻿$(function() {
    // remove youtube link
    $('#ctl00_priContent_Videos a').attr('href', '#video');
    $('#ctl00_priContent_Videos a').click(function() {
        changeVideo($(this).attr('rel'));
    });

    function changeVideo(value) {
        var params = { wmode: "transparent" };
        var vid = new SWFObject("http://www.youtube.com/v/" + value + "&hl=en&fs=1&ap=%2526fmt%3D18", "", "520", "293", "6.0", "/_Resources/flash/expressInstall.swf");
        vid.addVariable("wmode", "transparent");
        vid.write("mainVideo");
    }
});
