/*
 * [content.js]
 * Temporary Script
 * by Vladimir Grishin
 */

function posBannerWithBg() {
  var left = $(".b-android-gui .android__wrapper").offset().left;
  if(left % 5) {
    if(left % 5 > 3) {
      $(".b-android-gui .android__wrapper").css("margin-left", (66 + (5 - (left % 5)))+"px");
    } else {
      $(".b-android-gui .android__wrapper").css("margin-left", (66 - (left % 5))+"px");
    }
  }
}

$(document).ready(function() {
  if($(".b-android-gui").html()) {
    posBannerWithBg();
  }
});

