/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 * example injectAds({id: 'top_480x60', width: 480, height: 60})
 */
function injectUBNAds(options)
{
  options = $.extend({id: 'ubn_banner', width: 480, height: 60, extra: ''}, options);
  if (!$('#'+options.id).length)
  {
    return;
  }
  var ubn_user = "87020";
  var ubn_page = "1";
  var ubn_pid = Math.round((Math.random() * (10000000 - 1)));

  var html = "<center><br>"
  html += "<iframe src='http://banner.kiev.ua/cgi-bin/bi.cgi?h" +
          ubn_user + "&amp;"+ ubn_pid + "&amp;" + ubn_page +
          "' frameborder=0 vspace=0 hspace=0 " +
          " width="+options.width+" height="+options.height+" marginwidth=0 marginheight=0 scrolling=no>";
  html += "<a href='http://banner.kiev.ua/cgi-bin/bg.cgi?" +
          ubn_user + "&amp;"+ ubn_pid + "&amp;" + ubn_page +  options.extra + "' target=_top>";
  html += "<img border=0 src='http://banner.kiev.ua/" +
          "cgi-bin/bi.cgi?i" + ubn_user + "&amp;" + ubn_pid + "&amp;" + ubn_page + options.extra +
          "' width="+options.width+" height="+options.height+" alt='Украинская Баннерная Сеть'></a>";
  html += "</iframe>";
  html += "</center>";

  $('#'+options.id).html(html);
}

$(document).ready(function(){
  //Add banners here
  injectUBNAds({id: 'top_480x60', width: 480, height: 60})
  injectUBNAds({id: 'top_240x400', width: 240, height: 400, extra: '&amp;11'})
})
