
var campaigns = {};
campaigns = {"type1":[{"campaign_id":"YTo0OntzOjI6ImlkIjtzOjI6IjI5IjtzOjEwOiJpcF9hZGRyZXNzIjtzOjE0OiIzOC4xMDcuMTc5LjIxNCI7czo0OiJ0aW1lIjtpOjEzMjk5NjM5NDk7czo3OiJ2aWV3X2lkIjtpOjc1OTUxNTt9","src":"uploads\/banners\/flott-fsc-web-banner.gif","description":"","promotion":"","call_to_action":""}],"type2":[{"campaign_id":"YTo0OntzOjI6ImlkIjtzOjI6IjIxIjtzOjEwOiJpcF9hZGRyZXNzIjtzOjE0OiIzOC4xMDcuMTc5LjIxNCI7czo0OiJ0aW1lIjtpOjEzMjk5NjM5NDk7czo3OiJ2aWV3X2lkIjtpOjc1OTUxNjt9","src":"uploads\/banners\/qtd.jpg","description":"QTD specialise in the Design and Build of bespoke outdoor timber structures for Commercial and Domestic clients.","promotion":"","call_to_action":"http:\/\/www.qualitytimberdecking.com"},{"campaign_id":"YTo0OntzOjI6ImlkIjtzOjI6IjE3IjtzOjEwOiJpcF9hZGRyZXNzIjtzOjE0OiIzOC4xMDcuMTc5LjIxNCI7czo0OiJ0aW1lIjtpOjEzMjk5NjM5NDk7czo3OiJ2aWV3X2lkIjtpOjc1OTUxNzt9","src":"uploads\/banners\/banner eko 1.jpg","description":"Welcome to villa caletas, a luxury boutique hotel 1000 feet over the pacific ocean. Sustainable tourism is not only our motto but we are active and committed","promotion":"A green way to stay in Heaven","call_to_action":"http:\/\/www.villacaletas.com"},{"campaign_id":"YTo0OntzOjI6ImlkIjtzOjI6IjE2IjtzOjEwOiJpcF9hZGRyZXNzIjtzOjE0OiIzOC4xMDcuMTc5LjIxNCI7czo0OiJ0aW1lIjtpOjEzMjk5NjM5NDk7czo3OiJ2aWV3X2lkIjtpOjc1OTUxODt9","src":"uploads\/banners\/wfw_horizontallogo2_cmyk.jpg","description":"Since 1998, Wild Fox Wines estate vineyard continues the passion in the best bio-dynamic and organic farming practices to produce award winning organic and Preservative Free wines","promotion":"Award winning Organic and Preservative Free Wines","call_to_action":"Click here to view our wines!"}]};
	



$(document).ready(function()
{
	$('.banners').each(function()
	{
        // Banners are for standard banners type 1 - one per banner
		
		var campaign = campaigns.type1.pop();
		var html = '<a target="_blank" href="/banners/track/'+ campaign['campaign_id'] +'">';
		html += '<img src="/'+ campaign['src'] +'" alt="" /></a>';
		$(this).html(html);
		
	});
	
	if(campaigns.type2.length){
	
	$('.sponsored-ads').each(function()
	{
        var html = '<p class="advertisement">Sponsored Ads</p>';
		// Sponsored listing areas are for sponsored listings type 2
		for(var i in campaigns.type2){
			html += '<div class="sponsored-listing">';
			html += '<a target="_blank" href="/banners/track/'+ campaigns.type2[i]['campaign_id'] +'">';
			html += '<img src="/'+ campaigns.type2[i]['src'] +'" alt="" /></a>';
			html += '<p>'+campaigns.type2[i]['description']+'</p>';
			if(campaigns.type2[i]['description'] != ''){
			html += '<p class="sponsored-promotion">'+campaigns.type2[i]['promotion']+'</p>';
			}
			var call_to_action = (campaigns.type2[i]['call_to_action'] != '') ? 'Click here' : campaigns.type2[i]['call_to_action'];
			html += '<a class="sponsored-call-to-action" target="_blank" href="/banners/track/'+ campaigns.type2[i]['campaign_id'] +'">'+call_to_action+'</a>';
			html += '</div>';
			
		}
		$(this).html(html);
	});
	}
});
