dcSDK.baseUrl = '/dc-cust.php?job=Cust-WebServices&XDEBUG_SESSION_START=xdebug';//TODO remove XDEBUG_SESSION_START
dcSDK.languageId = dcSDK.getGetParam('LANG') == 2 ? 2 : 1;

$(function(){
	if($('#Ads1').length){
		if(dcSDK.getGetParam('SuppAdId') > 0){
			dcSDK.fetchSupplierAd(function(html){
				$('#Ads1').html(html);
			});
		}else{
			dcSDK.fetchSupplierAds(function(html){
				$('#Ads1').html(html);
			});
		}
	}
});

