(function ($) {
    $(document).ready(function() {
        function buildRandomAd(ads, $placement) {
            var ad = ads[Math.round(Math.random() * (ads.length - 1))],
                ad_html;

            if (ad.type == "image") {
                if (ad.width) {
                    ad_html = '<a href="' + ad.href + '"><img src="' + ad.img_url + '" width="' + ad.width + '" alt="ad" /></a>';
                }
                else {
                    ad_html = '<a href="' + ad.href + '"><img src="' + ad.img_url + '" alt="ad" /></a>';
                }
            }
            else if (ad.type == "flash") {
                ad_html = '<object type="application/x-shockwave-flash" data="' + ad.swf_url + '" width="145" height="230"><param name="movie" value="' + ad.swf_url + '" /></object>';
            }

            $placement.html(ad_html);
        }

        var horizontal_ads = [
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/Merge.gif",
                "href": "http://www.mergerecords.com"
            },
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/MyleneSheath.gif",
                "href": "http://www.MyleneSheath.com"
            },
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/ghettoblaster_jan12.jpg",
                "href": "http://www.bloodshotrecords.com"
            }
        ],

        vertical_ads1 = [
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/Bridge9.gif",
                "href": "http://www.bridge9.com/disco/261",
                "width": 145
            },
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/Goner-Ghetto-Ad.gif",
                "href": "http://www.goner-records.com",
                "width": 145
            },
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/Prosthetic.jpg",
                "href": "http://itunes.apple.com/us/album/reports-from-threshold-death/id470377471",
                "width": 145
            }
        ],

        vertical_ads2 = [
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/RevengeofthePlatypus.jpg",
                "href": "http://www.revengeoftheplatypus.com/",
                "width": 145
            },
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/CCG.gif",
                "href": "http://www.ccgrecords.com",
                "width": 145
            },
            {
                "type": "image",
                "img_url": "http://ghettoblastermagazine.com/wp-content/uploads/2012/01/ghettoblaster-ad.gif",
                "href": "http://www.etsy.com/shop/jedcollins",
                "width": 145
            }
        ];

        buildRandomAd(horizontal_ads, $(".horizontal-ad .ad-body"));
        buildRandomAd(vertical_ads1, $(".vertical-ad-1 .ad-body"));
        buildRandomAd(vertical_ads2, $(".vertical-ad-2 .ad-body"));
    });
})(jQuery);

