function getPromo(count, header_bubble){	$.getJSON ('/promo/'+count+'/json/', function (data) {		if (data){			ul_el = header_bubble.find ('ul');			ul_el.html('');			for(var i=0; i<data.length; i++){				//image_el = current_item.find ('.image');				//title_el = current_item.find ('.title');				//description_el = current_item.find ('.description');				promo_id = 'promo_'+i;				ul_el.append('<li id="'+promo_id+'"></li>'+"\n");				li_el = ul_el.find('#'+promo_id);				if (data[i].image != ''){					li_el.append('<span class="icon png image"><img src="' + data[i].image + '" /></span>'+"\n");				} else {					li_el.append('<span class="icon png image"></span>'+"\n");				}				if (data[i].title != ''){					li_el.append('<h3><span class="title">'+data[i].title+'</span></h3>'+"\n");				} else {					li_el.append('<h3><span class="title"></span></h3>'+"\n");				}				if (data[i].description != ''){					li_el.append('<p><span class="description">'+data[i].description+'</span></p>'+"\n");				} else {					li_el.append('<p><span class="description"></span></p>'+"\n");				}			}			items = header_bubble.find ('li');			current_item = items.eq (0).addClass ('selected');		}	});}
