/**
 * Athome special offer loading script
 *
 */

$(document).ready(function() {
    var holder = $("div[content_list]");
    if (holder.length) {
	var list = holder.attr('content_list');
	list = list.replace("(", "").replace(")","");
	$.ajax({
	    type: 'GET',
	    url: '/'+holder.attr('country')+'/content/content_new.php?list='+list+'&lang='+holder.attr('lang'),
	    data: '',
	    success: function(data) {
			holder.html(data);
	    },
	    dataType: 'html'
	});
    }
});
