 // Ads serving...
 $('div.banner').each(function()
 {
    var id = $(this).attr('id').replace(/_hidden/, '');
    var pos = $("#" + id).offset();

		if (pos)
		{
			// Show the banner directly over the placeholder
      $("#" + id).height($(this).height() + 5);
      $("#" + id).width($(this).width());
      $(this).css({"left": pos.left +"px","top":  pos.top  +"px"});
    }
});

// Repositioning the ads divs
$(window).resize(function()
{
	$('div.banner').each(function()
  {
		var id = $(this).attr('id').replace(/_hidden/, '');
		var pos = $("#" + id).offset();

		if (pos)
    {
       // Show the banner directly over the placeholder
       $(this).css(
       {
         "left": pos.left +"px",
         "top":  pos.top  +"px"
       });
    }
	});
});
