$.windowLoaded(function() { //get current flash version. returns an array [major, fix] var embedded_flash_version = $('.media').attr('version'); var flash_version = flashembed.getVersion(); var video_height = $("#video_container").height(); $(".media").after(''); $(".flash-version").text(flash_version[0]); if (flash_version[0] >= 10) { //$(".media").html($('#media_10').val()); //we are ok } else if (flash_version[0] == 9 && embedded_flash_version != 9) { var myLocation = window.location; myLocation = window.location.toString(); if (myLocation.indexOf("?") != -1) { window.location = myLocation + '&flash_version=9'; } else { window.location = myLocation + '?flash_version=9'; } } else { if (flash_version[0] < 9) { $(".media") .html('
You need Adobe Flash Player version 9 or higher to view this video.

Click here to Install
') .addClass('flash-error'); }; } } );