$("document").ready(function(){
	viewAd(0);
	viewAd(1);
});
function viewAd(position){
	url = "/web/ad/adjson/" + position + ".html";
	$.getJSON(url,
		function(data){
			if(data.result=='true'){
				$.each(data.ad_arr,function(i, item){
					obj_id = "obj" + item.ad_id;
					swfobj_src = item.host_path + item.fileid + "." + item.file_ext;
					height = item.height;
					width = item.width;
					
					swfobject.embedSWF(swfobj_src, obj_id, item.width, item.height,'9.0.0');
				});
			}
		});
}
