/**
 * @author chatfeed
 */
window.addEvent('domready', function() {
var adDiv = $$('.class_cpc');
adDiv.each(function(item, index){
	eval(item.get('id'));
	var jsonRequest = new Request.JSON({
	    url: "/api-ad/type-cpc/", 
	    onComplete: function(ad,Text){
			if(ad)
			{
				str = '<a target="_blank" href="/tj-cpc/id-'+ad.id+'/">';
				if(ad.ad_type==1)
				{
					str+='<img src="/upload/'+ad.image+'" />';
				}
				else
				{
					str +=ad.title;
				}
				str+='</a>';
				item.set('html',str);
			}
			else
			{
				item.setStyle('display','none');
			}
	    }
	}).get({
	    'act':action, 
	    'indus': indus,
		'linktype': linktype,
		'pos': pos,
		'ajax':1
	})
})
//alert(adDiv.get('indus'));
//var jsonRequest = new Request.JSON({
//    url: "/api-ad/type-cpc/", 
//    onComplete: function(person, text){
//        alert(person.age);    //显示 "25 years".
//        alert(person.height); //显示 "170 cm".
//        alert(person.weight); //显示 "120 kg".
//    }
//}).get({
//    'act': '1', 
//    'indus': 'Doe'
//})
});
