﻿var flashPopupPlayer;
var myTooltip;

$(document).ready(function() {
    $(".wunNewsIntro").mouseover(function() {
        $(this).css("backgroundColor", "#d4eefd");
    });

    $(".wunNewsIntro").mouseout(function() {
        $(this).css("backgroundColor", "");
    });

    $(".wunNewsIntro").click(function() {
        $(this).parent().parent().children(".wunNewsItem").children(".wunNewsDetailed").hide();
        $(this).parent().parent().children(".wunNewsItem").children(".wunNewsIntro").show();
        $(this).hide();
        $(this).parent().children(".wunNewsDetailed").show();
    });

    flashPopupPlayer = new wun.popup();
    standardPopup = new wun.popup();
});

var launchFlashPlayer = function(arg) {
    flashPopupPlayer.setSource('FlashPlayer.aspx?video=' + arg);
    flashPopupPlayer.show();
}

var showPopup = function(arg) {
    standardPopup.setContent(arg);
    standardPopup.show();
}
