(function($){

$(function() {

// 'ajax' or 'frame'
var mode = 'ajax';

var keywords  = window.ecato_keywords || 'dvd';
var category  = window.ecato_category || '';
var limit     = window.ecato_limit || 2;
var width     = window.ecato_height || 336;
var height    = window.ecato_height || 280;

var url = '/wp-content/plugins/omniads/units/ecato/inject.php?category=' + category + '&keywords=' + escape(keywords) + '&post_id=' + post_id + '&limit=' + limit + '&referer=' + escape(document.location.href.slice(0, 255)) + '&format=' + width + 'x' + height + '&mode='+ mode;

switch(mode) {
  case 'frame':
    document.write('<' + 'iframe name="ecato_iframe" vspace="0" hspace="0"  scrolling="no" marginheight="0" marginwidth="0" frameborder="0" width="' + width + '" height="' + height + '" src="' + url + '">' + '<' + '/iframe' + '>');
    break;
  case 'ajax':
    $.get(url, function(data) {
      if(data.length > 0) {
        $('#video-teaser').html(data);
      }
    });
    break;
}

});

})(jQuery);