
$(document).ready(function() {


    //	// CLASS NAMES TO ADVERTO IN ORDER TO OPEN MODAL WINDOW
    //    $(".adVisualLayoutVertical li a").addClass("modalWindow");
    //    $(".adLayoutSingleAd a").addClass("modalWindow");
    //	$(".adTextualLayoutVertical li a").addClass("modalWindow");
    //	$(".adLayoutRotatingAds a").addClass("modalWindow");


    /*------------------------------------------------------------------------------COLORBOX AJAX WINDOW*/
    $(".modalWindow").colorbox({ width: "555", height: "100%", iframe: true });
    
    // Load the Google Ads last.
    $('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"
        });
            $("#" + id).height($(this).height() + 5);
            $("#" + id).width($(this).width());
        }
    });

    // 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"
          });
            }
        });
    });

    $(".contentLeft_b").css("visibility", "inherit");

});


