$(document).ready(function() {

  $('.rounded').corner('10px');

  $("input").each(function() {
          $(this).addClass($(this).attr("type"));
  });

  $('.shaded_box .article:odd').addClass("zeb");

  
  if($(window).width()>=995){
    $('.tower').css('display', 'block');
  }

// article
$("#talkbacks .talkback:nth-child(odd)").addClass("odd");

// styleguide
$(".styleguide table tr:odd").addClass("zeb");


});


function imageOverlay(item, overlay){
  $(item+' img').wrap('<div class="image_wrapper"></div>');
  $(item+' .image_wrapper').prepend('<img class="overlay" src="'+overlay+'"/>');
}
