
/*---------------------------showcase.js----------------------------------*/	  

/*
@author : Olivier Tonglet
@date : 21th of May 2010
@comment : to adjust the speed of the showcase have a look at the variables at the top of the file
*/

// CONSTANTS
// speed of the sliding down effect
tm_slidingDown = 800;
// speed of the fadding in effect
tm_faddingIn = 600;
// time between to slides
tm_bt2slides = 8000;			
				
// AJAX call for the Json file containing the showcase elements			
window.onload = function () {jQuery.ajax({
	url:'../flash/showcaseLHP.json', // http://www.schmap.it/flash/showcaseLHP.json 69.59.165.12/flash/showcaseLHP.json ../flash/showcaseLHP.json
	dataType:'json',
	complete:function(xhr){
		json = jQuery.parseJSON(xhr.responseText); 
		buildShowcase(json);
    }});
};
	
/*
Here are two events listeners	
-When the mouse enter the 'mouseZone' div calls the stopSliding() function
-When the mouse leaves the 'mouseZone' div calls the restartSliding() function
*/
jQuery(document).ready(function(){
   jQuery('#mouseZone').mouseenter(function(e){		
      stopSliding();
   }); 
   jQuery('#mouseZone').mouseleave(function(e){		
      restartSliding();
   }); 
});
		
// detection of the client's browser
browser = "";
if (navigator.userAgent.match("MSIE 6.0")) 
	browser = "ie";

/*
@param :
	[json] json - a json file
	[int] boxx - 1<boxx<3
	[int] n - 0<n<(number of elements in the json file-1)
@return :
	[string] the html code of a box 
		is in a div tag
		the class of this div is box+'boxx' where 1<boxx<3
		contains the nth showcase item of the Json
 */
function buildShowcaseItem(json, n, boxx) {
	sci = "<div class=\"box"+boxx+""+browser+"\"";
	if (boxx==3 && n>2)
		sci += " style=\"display:none\" ";
	sci += ">";
	if (boxx == 1 || boxx == 2)
		sci += "<hr class=\"schr\" />";
	sci += "<table><tr><td class=\"aimg\"><a href=\""+json.twittes.twitte[n].NameUrl+"\" target=\"_newTab\"><img src=\""+json.twittes.twitte[n].imagelink+"\" class=\"aimg\"></a></td>";
	sci += "<td align=\"top\" class=\"acontent\"><a href=\""+json.twittes.twitte[n].NameUrl+"\" target=\"_newTab\" class=\"sc_link\">"+json.twittes.twitte[n].Name+"</a> ";
	// format the content for the url to be clickable
	acontent = json.twittes.twitte[n].Content;	
	regexp = new RegExp(json.twittes.twitte[n].Schmaplink, "i");
	acontent = acontent.split(regexp);
	url = "<a href=\""+json.twittes.twitte[n].Schmaplink+"\" target=\"_newTab\" class=\"sc_link\"> "+json.twittes.twitte[n].Schmaplink+" </a>";
	if (acontent[1])
		acontent = acontent[0]+url+acontent[1];
	else 
		acontent += url;
	sci += acontent+"<br />";
	// get the time difference between the publishing time and now
	sci += "<div class=\"timeDifference\">"+timeDifference(json.twittes.twitte[n].publishing_time)+"</div>"; 
	sci += "</td></tr></table></div>";
	return sci;	
}

/*
 @param :
	[string] in the following format : 'YYYY/MM/DD HH/mm/ss '
 @return :
	[string] how much time passed since the time expressed in the param and now + 'ago' 
 */

function timeDifference(date) {
	ago = "ago"; res= "";
	ymd = date.substring(0, 10); ymd = ymd.split("/", 10);
	ymd[0] = parseFloat(ymd[0]); ymd[1] = parseFloat(ymd[1]); ymd[2] = parseFloat(ymd[2]);
	hms = date.substring(11, 19);
	hms = hms.split(":", 8);
	hms[0] = parseFloat(hms[0]); hms[1] = parseFloat(hms[1]); hms[2] = parseFloat(hms[2]);
	var d = new Date();	
	d = d.toGMTString();
	curr_min = parseFloat(d.substring(d.length-9, d.length-7));
	curr_hour = parseFloat(d.substring(d.length-12, d.length-10));
	curr_day = parseFloat(d.substring(5, 7));
	// display the dates in the console log (d + " " + date+" ");
	if (curr_day == ymd[2] && curr_hour == hms[0] && curr_min-hms[1] == 0) {
		res = "1 minute "+ago;	
	}	
	else { 
		if (curr_day == ymd[2] && curr_hour == hms[0] && curr_min > hms[1]) {
			if (curr_min-hms[1] > 1) str = " minutes "; else str = " minute ";
			res = (curr_min-hms[1])+str+ago;
		}
		else {
			if (curr_day == ymd[2] && curr_hour == (hms[0]+1) && curr_min < hms[1]) {				
				res = (curr_min+(60-hms[1]))+" minutes "+ago;			
			}
			// if the event was schmapped more than an hour ago, don't display the minutes
			else {
				if (curr_day == ymd[2] && curr_hour > hms[0]) {
					mindiff = 0;
					abouthago = "";
					if (curr_min+(60-hms[1]) > 30) mindiff = 1;	// we round up >1h30 to 2h, >2h30 to 3h, etc...			
					if (curr_hour-1-hms[0]+mindiff > 1) {str = " hours ";} else {str = " hour "; abouthago = "about ";}
					res = abouthago+(curr_hour-1-hms[0]+mindiff)+str+ago;
				}
				else {
					if (curr_day - ymd[2] > 0) {
						hours = 0;
						mindiff = 0;
						if (curr_min+(60-hms[1]) > 30) mindiff = 1;	// we round up >1h30 to 2h, >2h30 to 3h, etc...			
						if (curr_day - ymd[2] > 1) hours += (curr_day-1-ymd[2])*24; 
						hours += 24-hms[0]+curr_hour+mindiff;
						res = hours+" hours "+ago;
					}
				}
			}
		}
	}
	return(res);
}

// posjson and slidedown are global variables (take care !)
// indicates the positions of the index in the Json data
posjson = 0;

/* 
@param : json - the data in json format
@return : false
	build the three first boxes of the showcase
	calls the slide() method to start the sliding effect
*/
function buildShowcase(json) {
	for(x=2; x>=0; x--) {
		z=2; if(x==0) z=1; if(x==2) z=3;
		boxx = "box"+z;		
		str = buildShowcaseItem(json, x, z); 	
		jQuery("#box"+z).append(str);
	}
	posjson = 2;
	t=setTimeout('slide(json)', tm_bt2slides);
	preloadImage(json, 3);
	preloadImage(json, 4);
	return false;
}

// slideDown is true when the showcase elements have to slide down, and false when the sliding effect should be stopped
slideDown = true;
// true when there is a sliding in progress
slidingInProgress = false;
// true when there is a restart in progress
restartInProgress = false;
/*
The two following functions respectively
- Stop the sliding effect
- Restart the sliding effect 
*/
function stopSliding() {
	//log("stop");
	slideDown = false;
	t=setTimeout('restartSliding()', 20000-tm_bt2slides);	
	return false;
}
function restartSliding() {		
	if (slideDown == false && slidingInProgress == false && restartInProgress == false) {	
		//log("restart in progress");
		restartInProgress = true; 
		slideDown = true; // if the stopSliding() function is called again the restart won't happen when calling slide(json);
		t=setTimeout('restartInProgress = false; slide(json);', tm_bt2slides);	
	}
	else 
		return false;
	return false;
}

// testing function
/*
function log(message) {
	if(window.console) {
		console.log(message);
	}
}*/

/* 
@param : json - the data in json format
@return : false
	-every box of the showcase slide to the bottom
	-the box at the bottom fade out
	-after the box at the bottom has faded out, reorders the boxes and add a new one at the top
	-calls itslefs again and again every 4.5 seconds
*/
function slide(json) {  
	if (slideDown == true && slidingInProgress == false && restartInProgress == false) {	
		slidingInProgress = true;
		jQuery(".box1"+browser).animate({"top": "+=69px", "opacity": "0"}, tm_slidingDown);	
		jQuery(".box2"+browser).animate({"top": "+=68px"}, tm_slidingDown);
		jQuery(".box3"+browser).animate({"top": "+=68px"}, tm_slidingDown);	
		
		t1=setTimeout('reorder(json)', tm_slidingDown);
		posjson++;
		t2=setTimeout('slidingInProgress = false;', tm_slidingDown+tm_faddingIn);
		t3=setTimeout('if (slideDown == true && slidingInProgress == false) slide(json);', tm_bt2slides);
	}
	return false;	
}

// Buffer variable used to preload the images
var cache = [];
// Stupid way to preload the images by putting them into a buffer
function preloadImage(json, n) {
	if (json.twittes.twitte[n]) {
		var cacheImage = document.createElement('img');
		cacheImage.src = json.twittes.twitte[n].imagelink;
		cache.push(cacheImage);
	}
	return false;
}
/*
@param : json - the data in json format
@return : false
	-delete the box at the bottom
	-put the box in the middle at the bottom
	-put the top box in the middle
	-get the next box and put it at the top with a fade in effect
	-when reaching the end of the Json file, start again with the first element
*/
function reorder(json) {
	l = json.twittes.twitte.length;
	pos1=0; pos2=0; pos3=0;
	if (posjson==3) 
		{pos1=3; pos2=2; pos3=1;}
	else {
		if (posjson==2) 
			{pos1=2; pos2=1; pos3=0;}
		else {
			if (posjson==1) 
				{pos1=1; pos2=0; pos3=l-1;}
			else { 
				if (posjson == l) 
					{pos1=0; pos2=l-1; pos3=l-2; posjson=0;}
				else { 
					if (posjson==l-1) 
						{pos1=l-1; pos2=l-2; pos3=l-3;} 
					else 
						{pos1=posjson; pos2=posjson-1; pos3=posjson-2;}
				}}}}				
	// Preload the pos1+2 th image
	if (posjson ==l) preloadImage(json, 1);
	else if (posjson ==l-1) preloadImage(json, 0);
	else preloadImage(json, pos1+2);
	// box1
	str = buildShowcaseItem(json, pos3, 1);
	jQuery("#box1").children().remove();	
	jQuery("#box1").append(str);
	// box2
	str = buildShowcaseItem(json, pos2, 2);		
	jQuery("#box2").children().remove();	
	jQuery("#box2").append(str);
	// box3
	str = buildShowcaseItem(json, pos1, 3);		
	jQuery("#box3").children().remove();	
	jQuery("#box3").append(str);
	jQuery(".box3"+browser).fadeIn(tm_faddingIn);
	return false;
}	 
	  
/*---------------------------iconsSquare.js----------------------------------*/	  
/*
* @date : 21th of May 2010
* @author : Tonglet Olivier
* @comments : please find the constants at the head of this file
* categories name must not contain the character ' (simple quote)
*/

// CONSTANTS
// int 'square_width' - length of the side of the square
square_length=5;
// int size of the border of the icon square
icons_border = 4;
// int size of the icons of the icon square
icons_size = 36;
// int size of space between the icons of the icon square
icons_space = 4;

// string 'default_category' - the category that has to be selected by default
default_category="Restaurants/Bars";

/*
@cond :
	for each category there should be a picture 
		- whose border and space between icons is 4px and whose icons width is 36px
		- whose name is the name of a category with the / character replaced by _ (underscore)
		- with the .PNG extension 
	for each item of the Json file each field (name, screenname and profileimage) has to be filled
@param :string 'current_category' - must not contain the character ' (simple quote)
	    boolean 'getCategoriesListDivs'
@return : array of strings 'content'
 	if 'getCategoriesListDivs' is true 
		content[0] - the icons square of the category current_category (in an unnamed div)
		content[1] - the categories list in a div with the category current_category highlighted
 	if 'getCategoriesListDivs' is false 
		content[0] - the icons square of the category current_category (not in a div)
		content[1] - an empty string 	
*/	
function getContent(current_category, getCategoriesListDivs) {	

	var map = "<map name='ics_map' id ='ics_map'>";
	var categoriesList = "<div id=\"ics_categoriesList\">"; 
	for (i=0; i<featuredUsers.category.length; i++){
		// building the list of categories if required
		if (getCategoriesListDivs == true) {
			cname = featuredUsers.category[i].name.replace(" ","+");
			if (current_category == featuredUsers.category[i].name)
			 	categoriesList += "<span id=ics_"+cname+" class=\"selected\">"+featuredUsers.category[i].name+"</span><br />";
			else 
				categoriesList += "<span id=ics_"+cname+" class=\"not_selected\"><span name=\"ics\" onclick=\"changeCategory('"+featuredUsers.category[i].name+"');\">"+featuredUsers.category[i].name+"</span></span><br />";
		}
	
		if (getCategoriesListDivs == true) map = "<div>"+map;
		// building the icons square 
		if (current_category == featuredUsers.category[i].name) {
			alength = featuredUsers.category[i].item.length; 
			linecount = 0;
			for (j=0; j<alength; j++) {			
				// check for names containing the ' character, because the tooltip method use the '' quotes.				
				aname = featuredUsers.category[i].item[j].name;
				aname = aname.replace("\'", "\\'");
				map+="<area href=\"http://www.twitter.com/"+featuredUsers.category[i].item[j].screenname+"\" target='_newTab' title=\""+featuredUsers.category[i].item[j].name+"\""; 
				coorleft = 0; coortop = 0; coorright = 0; coorbottom = 0; 
				z = (j+1)-(linecount*5);
				if (z%2 == 0 && z%4 != 0)	
					{coorleft = icons_border+icons_size*1+icons_space*1; coorright = coorleft+icons_size;}
				else {
					if (z%3 == 0)
						{coorleft = icons_border+icons_size*2+icons_space*2; coorright = coorleft+icons_size;}
					else {
						if (z%4 == 0)
							{coorleft = icons_border+icons_size*3+icons_space*3; coorright = coorleft+icons_size;}
						else {
							if (z%5 == 0)
								{coorleft = icons_border+icons_size*4+icons_space*4; coorright = coorleft+icons_size;}
							else
								{coorleft = icons_border; coorright = coorleft+icons_size;}
																
						}							
					}					
				}						
				coortop = icons_border+(linecount*(icons_space+icons_size));
				coorbottom = coortop+icons_size;
				map+="shape='rect' coords='"+coorleft+","+coortop+","+coorright+","+coorbottom+"'\">";	
				if (z%5 == 0) linecount += 1;
			}
			img_name = current_category.replace(/\//g,"_"); img_name+=".jpg";
			map+="</map><img class='ics_imgmap' src='../image/iconsSquare_icons/"+img_name+"' usemap='#ics_map'/>";
			if (getCategoriesListDivs == true) map+="</div>";				
		}		

	}
	if (getCategoriesListDivs == true)
		categoriesList += "</div>"; 
	else 
		categoriesList = "";

	// Question : how should I display error messages of this kind ?
	if (map == "") 
		alert("the parameter 'current_category' "+current_category+" of the getIconsSquare method is incorrect or there isn't any data available for this category");
		
	acontent = new Array(map, categoriesList);
		
	return acontent;
}

/*
@param : string 'new_category' - must not contain the character ' (simple quote)
@return : false
	modify the style of the categories list for the selected category to be highlighted
	replace the current icons square by the icons square of the category new_category
*/
function changeCategory(new_category) {
// modify the style of the categories list for the selected category to be highlighted
divCategoriesList = document.getElementById("ics_categoriesList");
if (navigator.userAgent.match("MSIE 6") || navigator.userAgent.match("MSIE 7"))
	className = "className";
else
	className = "class";
for (i=0; i<divCategoriesList.childNodes.length; i++) {
	if(divCategoriesList.childNodes[i].getAttribute(className)=="selected") { 
		divCategoriesList.childNodes[i].setAttribute(className,"not_selected");
		categoryName = divCategoriesList.childNodes[i].getAttribute("id").split("ics_");
		categoryName = categoryName[1].replace("+", " ");
		divCategoriesList.childNodes[i].innerHTML = "<span name=\"ics\" onclick=\"changeCategory('"+categoryName+"');\">"+categoryName+"</span>";
	}
	else {
		if(divCategoriesList.childNodes[i].getAttribute(className)=="not_selected" && divCategoriesList.childNodes[i].childNodes[0].innerHTML==new_category) { 
			divCategoriesList.childNodes[i].setAttribute(className,"selected");
			divCategoriesList.childNodes[i].innerHTML=new_category;
		}
	}
}

// display the icons square of the category new_category
new_content = getContent(new_category, false);
divIconsSquare = document.getElementById("ics_iconsSquare");
divIconsSquare.removeChild(divIconsSquare.childNodes[0]);
var newdiv = document.createElement('div');
newdiv.innerHTML = new_content[0];
divIconsSquare.appendChild(newdiv);

return false;
}


/*---------------------------iconsSquare_json.js----------------------------------*/	  


/*		
* @date : 5th of May 2010		
* @author : Tonglet Olivier		
* file generated from an .xls file - ask the marketing team
*/		

var featuredUsers = {		
	    category:[	
		{
		    name:'Restaurants/Bars',
		    item:[
		        {
		            screenname:'SUBWAYNZ',
		            name:'Subway New Zealand',
		            profileimage:'http://a1.twimg.com/profile_images/783198498/SUBI10118_W3_TwitterIcon_normal.jpg'
		        },
		        {
		            screenname:'promisepizza',
		            name:'Promise Pizza',
		            profileimage:'http://a3.twimg.com/profile_images/684076949/s119010784384_8370_normal.jpg'
		        },
		        {
		            screenname:'Localburger',
		            name:'Local Burger',
		            profileimage:'http://a3.twimg.com/profile_images/746890869/Buffalo_normal.jpg'
		        },
		        {
		            screenname:'LittleIndiaCO',
		            name:'Little India',
		            profileimage:'http://a3.twimg.com/profile_images/181377343/LittleIndiaLogo_normal.jpg'
		        },
		        {
		            screenname:'QdobaNashville',
		            name:'Qdoba Mexican Grill',
		            profileimage:'http://a1.twimg.com/profile_images/271429948/Qdoba_Twitter_Logo_normal.gif'
		        },
		        {
		            screenname:'fahrenheitsj',
		            name:'Fahrenheit',
		            profileimage:'http://a1.twimg.com/profile_images/102601396/Untitled-1_copy_normal.jpg'
		        },
		        {
		            screenname:'LaFontana',
		            name:'La Fontana - Gelati',
		            profileimage:'http://a1.twimg.com/profile_images/88923676/Fontana-logo_normal.jpg'
		        },
		        {
		            screenname:'SteamworksPub',
		            name:'Steamworks Brewing',
		            profileimage:'http://a3.twimg.com/profile_images/838779103/STEAMWORKS-Logo_normal.jpg'
		        },
		        {
		            screenname:'BogotaBistro',
		            name:'Bogota Latin Bistro',
		            profileimage:'http://a1.twimg.com/profile_images/598995120/TwitterLogo_normal.jpg'
		        },
		        {
		            screenname:'blpdx',
		            name:'Blossoming Lotus PDX',
		            profileimage:'http://a3.twimg.com/profile_images/462133295/blpdxtwitterlogosmall_normal.jpg'
		        },
		        {
		            screenname:'SevillaTapasIE',
		            name:'Sevilla Riverside',
		            profileimage:'http://a3.twimg.com/profile_images/248395971/Sevilla_S_red_normal.jpg'
		        },
		        {
		            screenname:'aziarestaurant',
		            name:'Azia Restaurant',
		            profileimage:'http://a1.twimg.com/profile_images/445212146/aziarestaurant_normal.jpg'
		        },
		        {
		            screenname:'NamaSushi',
		            name:'Nama Sushi Bar',
		            profileimage:'http://a3.twimg.com/profile_images/180278427/IMG_3243_normal.jpg'
		        },
		        {
		            screenname:'DanielsBistro',
		            name:'Daniels Bistro+Bar',
		            profileimage:'http://a3.twimg.com/profile_images/772726265/Screen_shot_2010-03-24_at_10.27.38_AM_normal.jpg'
		        },
		        {
		            screenname:'PizzaInn_Inc',
		            name:'Pizza Inn',
		            profileimage:'http://a3.twimg.com/profile_images/198991709/JoJo_Logo_normal.png'
		        },
		        {
		            screenname:'MermaidInnNYC',
		            name:'The Mermaid Inn, NYC',
		            profileimage:'http://a3.twimg.com/profile_images/366872999/square_logo_normal.JPG'
		        },
		        {
		            screenname:'elliottbay_beer',
		            name:'Elliott Bay Brewing',
		            profileimage:'http://a1.twimg.com/profile_images/382005798/Beertap_normal.jpg'
		        },
		        {
		            screenname:'cyclewaycafe',
		            name:'Cycleway Coffee',
		            profileimage:'http://a3.twimg.com/profile_images/488064189/m_dda75aee90f54637ba383b7eb67bf484_normal.gif'
		        },
		        {
		            screenname:'mryummiami',
		            name:'Mr Yum',
		            profileimage:'http://a3.twimg.com/profile_images/802097775/HAMACHIJALAPE_O274_normal.jpg'
		        },
		        {
		            screenname:'Frysmith',
		            name:'Frysmith',
		            profileimage:'http://a3.twimg.com/profile_images/542974555/frysmith-logo-yellow_normal.png'
		        },
		        {
		            screenname:'El_Vitral',
		            name:'El Vitral Restaurant',
		            profileimage:'http://a3.twimg.com/profile_images/441377059/vitral_logo_only_small_normal.jpg'
		        },
		        {
		            screenname:'urbantealoft',
		            name:'UrbanTea Loft',
		            profileimage:'http://a3.twimg.com/profile_images/81674655/UrbanTeaLogo_normal.jpg'
		        },
		        {
		            screenname:'RoysRestaurants',
		            name:'Roy Rogers Restaurant',
		            profileimage:'http://a1.twimg.com/profile_images/138976610/RoyRgersLogo_normal.jpg'
		        },
		        {
		            screenname:'cicerosstl',
		            name:'Cicero\'s St. Louis',
		            profileimage:'http://a1.twimg.com/profile_images/87722456/ciceros_lg_normal.jpg'
		        },
		        {
		            screenname:'Zippys',
		            name:'Zippy\'s Restaurants',
		            profileimage:'http://a1.twimg.com/profile_images/625275296/z-3d_normal.png'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Shops/Stores',
		    item:[
		        {
		            screenname:'Dunkin_Columbus',
		            name:'Dunkin\' Donuts',
		            profileimage:'http://a3.twimg.com/profile_images/480521295/twitterProfilePhoto_normal.jpg'
		        },
		        {
		            screenname:'haagendazsshops',
		            name:'Haagen-Dazs Shops',
		            profileimage:'http://a1.twimg.com/profile_images/302242482/Untitled1_normal.png'
		        },
		        {
		            screenname:'WFM_Marlton',
		            name:'Whole Foods Marlton',
		            profileimage:'http://a3.twimg.com/profile_images/873116985/2576_71914761487_24922591487_2668727_5100669_n_normal.jpg'
		        },
		        {
		            screenname:'replicachicago',
		            name:'Replica Chicago',
		            profileimage:'http://a3.twimg.com/profile_images/735309381/respect_Lyn_normal.jpg'
		        },
		        {
		            screenname:'DaBaby',
		            name:'DaBaby Inc.',
		            profileimage:'http://a3.twimg.com/profile_images/302580245/adimage.php_normal.gif'
		        },
		        {
		            screenname:'BSS_Austin',
		            name:'Bicycle Sport Shop',
		            profileimage:'http://a1.twimg.com/profile_images/87561420/BSSRedstar_140h_normal.jpg'
		        },
		        {
		            screenname:'Sugadeaux',
		            name:'Sugadeaux Cupcakes',
		            profileimage:'http://a1.twimg.com/profile_images/232701362/sugadeauxprev3SQUARE_normal.jpg'
		        },
		        {
		            screenname:'LSTBookshop',
		            name:'LST Bookshop',
		            profileimage:'http://a3.twimg.com/profile_images/312956035/lstbookshop_normal.jpg'
		        },
		        {
		            screenname:'Challengersrgo',
		            name:'Challengers Comics',
		            profileimage:'http://a3.twimg.com/profile_images/601365797/c_logo_red_small_normal.jpg'
		        },
		        {
		            screenname:'houseofplates',
		            name:'House Of Plates',
		            profileimage:'http://a1.twimg.com/profile_images/749005542/newmagritte_normal.JPG'
		        },
		        {
		            screenname:'WildYamPottery',
		            name:'Wild Yam Pottery',
		            profileimage:'http://a3.twimg.com/profile_images/702012965/NewSign_normal.jpg'
		        },
		        {
		            screenname:'sfcookies',
		            name:'Sweet Constructions',
		            profileimage:'http://a3.twimg.com/profile_images/672166545/holiday_cookies_75_normal.jpg'
		        },
		        {
		            screenname:'Buckheadcigar',
		            name:'Buckhead Cigar Shop',
		            profileimage:'http://a1.twimg.com/profile_images/426341986/P5200034_normal.JPG'
		        },
		        {
		            screenname:'PianoTrends',
		            name:'Piano Trends Music Store',
		            profileimage:'http://a1.twimg.com/profile_images/468939168/chicago_blue_piano_normal.jpg'
		        },
		        {
		            screenname:'newliving',
		            name:'newliving',
		            profileimage:'http://a1.twimg.com/profile_images/479852398/icon_normal.jpg'
		        },
		        {
		            screenname:'VogueFabrics',
		            name:'Vogue Fabrics',
		            profileimage:'http://a3.twimg.com/profile_images/130459831/thaisilkgg2_normal.jpg'
		        },
		        {
		            screenname:'cactus_music',
		            name:'Cactus Music Store',
		            profileimage:'http://a3.twimg.com/profile_images/421619777/cactus_twitter_logo_normal.jpg'
		        },
		        {
		            screenname:'meltdowncomics',
		            name:'Meltdown Comics',
		            profileimage:'http://a3.twimg.com/profile_images/663608087/MELT_SMILE_web_normal.jpg'
		        },
		        {
		            screenname:'TrendyBindi',
		            name:'Trendy Bindi\'s Boutique',
		            profileimage:'http://a3.twimg.com/profile_images/280701015/Bindi_normal.JPG'
		        },
		        {
		            screenname:'More4mums',
		            name:'More4mums Maternity',
		            profileimage:'http://a1.twimg.com/profile_images/673291030/modmamatobe__2__x_90_normal.jpg'
		        },
		        {
		            screenname:'KissMyBundt',
		            name:'Kiss My Bundt Bakery',
		            profileimage:'http://a3.twimg.com/profile_images/722057187/AlmondPoundCake_normal.jpg'
		        },
		        {
		            screenname:'milagrospdx',
		            name:'Milagros Boutique',
		            profileimage:'http://a1.twimg.com/profile_images/258238588/Milagros85x85_normal.jpg'
		        },
		        {
		            screenname:'ArtistsEmporium',
		            name:'Artists Emporium',
		            profileimage:'http://a1.twimg.com/profile_images/333271124/AE_logo_Black2_normal.jpg'
		        },
		        {
		            screenname:'PetroZilliaBtq',
		            name:'House of PetroZillia',
		            profileimage:'http://a1.twimg.com/profile_images/553260596/twitterProfilePhoto_normal.jpg'
		        },
		        {
		            screenname:'criminalrecords',
		            name:'Criminal Records',
		            profileimage:'http://a3.twimg.com/profile_images/536656929/button_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Bands/Musicians',
		    item:[
		        {
		            screenname:'Moonalice',
		            name:'Moonalice',
		            profileimage:'http://a1.twimg.com/profile_images/282301878/Moonalice-110x80_normal.jpg'
		        },
		        {
		            screenname:'MancCamerata',
		            name:'Manchester Chamber Orchestra',
		            profileimage:'http://a1.twimg.com/profile_images/221018524/Monogram_red_normal.jpg'
		        },
		        {
		            screenname:'Bang_Bangs',
		            name:'Bang Bangs',
		            profileimage:'http://a1.twimg.com/profile_images/756300186/Bang_Bangs-154_small_normal.jpg'
		        },
		        {
		            screenname:'KarisaNowak',
		            name:'Karisa Nowak',
		            profileimage:'http://a1.twimg.com/profile_images/718953864/twitpic4_normal.jpg'
		        },
		        {
		            screenname:'theGVs',
		            name:'the Glorious Veins',
		            profileimage:'http://a1.twimg.com/profile_images/703963392/small21_normal.jpg'
		        },
		        {
		            screenname:'Everlife',
		            name:'Everlife',
		            profileimage:'http://a3.twimg.com/profile_images/669650749/everlifeheader1_normal.jpg'
		        },
		        {
		            screenname:'shane_cooley',
		            name:'Shane Cooley',
		            profileimage:'http://a3.twimg.com/profile_images/801002101/24590_1223041507490_1572540059_30548078_2583925_n_normal.jpg'
		        },
		        {
		            screenname:'MongrelBand',
		            name:'Mongrel',
		            profileimage:'http://a1.twimg.com/profile_images/608086600/Mongrel_logo_3x3_normal.jpg'
		        },
		        {
		            screenname:'SkiesAlive',
		            name:'Skies Alive',
		            profileimage:'http://a3.twimg.com/profile_images/800237221/IMG_3575-1_normal.jpg'
		        },
		        {
		            screenname:'MarkCurryBook',
		            name:'Mark Curry',
		            profileimage:'http://a1.twimg.com/profile_images/603157472/CURRY_normal.jpg'
		        },
		        {
		            screenname:'Sharastrand',
		            name:'Shara Strand',
		            profileimage:'http://a1.twimg.com/profile_images/767249376/hatresized2_normal.jpg'
		        },
		        {
		            screenname:'ComicBookHeroes',
		            name:'Comic Book Heroes',
		            profileimage:'http://a3.twimg.com/profile_images/111481389/cbh_80_80_b_normal.gif'
		        },
		        {
		            screenname:'keikotakamura',
		            name:'Keiko Takamura',
		            profileimage:'http://a1.twimg.com/profile_images/685988830/KeikoTwitterIcon_normal.jpg'
		        },
		        {
		            screenname:'ladylegacy',
		            name:'Lady Legacy',
		            profileimage:'http://a3.twimg.com/profile_images/691306741/265912_normal.jpg'
		        },
		        {
		            screenname:'To_The_Moon',
		            name:'To The Moon',
		            profileimage:'http://a1.twimg.com/profile_images/311424320/ttmsm_normal.JPG'
		        },
		        {
		            screenname:'elizabethjazz',
		            name:'Elizabeth Jazz',
		            profileimage:'http://a3.twimg.com/profile_images/60266593/ElizabethJazz_Tree_normal.jpg'
		        },
		        {
		            screenname:'TV_TV',
		            name:'TVTV',
		            profileimage:'http://a3.twimg.com/profile_images/745400493/TVTVlogo3_normal.jpg'
		        },
		        {
		            screenname:'ElliFordyce2',
		            name:'Elli Fordyce',
		            profileimage:'http://a1.twimg.com/profile_images/385019098/UnicityFestivalElliFordyceLg__2__normal.jpg'
		        },
		        {
		            screenname:'Sleeperstar',
		            name:'Sleeperstar',
		            profileimage:'http://a3.twimg.com/profile_images/216028619/HOB_May_1-118_normal.jpg'
		        },
		        {
		            screenname:'AmberTen',
		            name:'Amber Tennyson',
		            profileimage:'http://a1.twimg.com/profile_images/696875124/FebruaryFoundationMag-AmberTennysonsmall_normal.jpg'
		        },
		        {
		            screenname:'ShaneandShane',
		            name:'Shane & Shane',
		            profileimage:'http://a3.twimg.com/profile_images/75861457/sands_icon_normal.jpg'
		        },
		        {
		            screenname:'ladisputeband',
		            name:'La Dispute',
		            profileimage:'http://a1.twimg.com/profile_images/232287112/ldtwitav_normal.jpg'
		        },
		        {
		            screenname:'sassysongstress',
		            name:'Sharon Songwriter',
		            profileimage:'http://a3.twimg.com/profile_images/838441313/inrepose_normal.jpg'
		        },
		        {
		            screenname:'BouncebeatKingz',
		            name:'Da Real TCB Band',
		            profileimage:'http://a3.twimg.com/profile_images/671819113/image_normal.jpg'
		        },
		        {
		            screenname:'fernandovarela',
		            name:'Fernando Varela',
		            profileimage:'http://a1.twimg.com/profile_images/70524500/Dare_to_Live_CD_Cover_JPG_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Theater/Art',
		    item:[
		        {
		            screenname:'SmithsonianIMAX',
		            name:'Smithsonian IMAX',
		            profileimage:'http://a1.twimg.com/profile_images/591181766/n159985738913_9447_normal.jpg'
		        },
		        {
		            screenname:'TheAtlantaOpera',
		            name:'The Atlanta Opera',
		            profileimage:'http://a3.twimg.com/profile_images/338254631/twitterProfilePhoto_normal.jpg'
		        },
		        {
		            screenname:'UCFAC',
		            name:'UChicago Folk Arts Community',
		            profileimage:'http://a1.twimg.com/profile_images/550164692/logo200_normal.gif'
		        },
		        {
		            screenname:'artofolympians',
		            name:'Art Olympians',
		            profileimage:'http://a1.twimg.com/profile_images/658916940/AOTO1_normal.jpg'
		        },
		        {
		            screenname:'hollywoodshorts',
		            name:'Hollywood Shorts',
		            profileimage:'http://a3.twimg.com/profile_images/327883259/hslogo12greenrib_normal.jpg'
		        },
		        {
		            screenname:'magur',
		            name:'Memorial Art Gallery',
		            profileimage:'http://a3.twimg.com/profile_images/60348473/13.12_A1_normal.jpg'
		        },
		        {
		            screenname:'henryartgallery',
		            name:'Henry Art Gallery',
		            profileimage:'http://a3.twimg.com/profile_images/208928719/Picture_1_normal.png'
		        },
		        {
		            screenname:'DocPop',
		            name:'Doctor Popular',
		            profileimage:'http://a3.twimg.com/profile_images/588502597/pitfallicon_normal.jpg'
		        },
		        {
		            screenname:'PRfilms',
		            name:'Passion River Films',
		            profileimage:'http://a3.twimg.com/profile_images/499523077/filmclass_normal.jpg'
		        },
		        {
		            screenname:'CarbieWarbie',
		            name:'Carbie Warbie, Photographer',
		            profileimage:'http://a1.twimg.com/profile_images/140688652/RockOutLogo_normal.gif'
		        },
		        {
		            screenname:'IndieFlix',
		            name:'IndieFlix',
		            profileimage:'http://a3.twimg.com/profile_images/565287631/IFtwitterlogo_normal.gif'
		        },
		        {
		            screenname:'burkemuseum',
		            name:'Burke Museum',
		            profileimage:'http://a1.twimg.com/profile_images/105121180/Gabe_Kean_-_dino_head_04_122_normal.JPG'
		        },
		        {
		            screenname:'CandocoDance',
		            name:'Candoco Dance Co',
		            profileimage:'http://a3.twimg.com/profile_images/75973471/NC_7901HG_normal.jpg'
		        },
		        {
		            screenname:'UCRCMP',
		            name:'UC Riverside Museum of Photography',
		            profileimage:'http://a3.twimg.com/profile_images/456496139/ucrcmp_top_normal.jpg'
		        },
		        {
		            screenname:'mcdunngallery',
		            name:'Michael McDunn Gallery',
		            profileimage:'http://a3.twimg.com/profile_images/572480397/mdtw3_normal.jpg'
		        },
		        {
		            screenname:'WhitleyGallery',
		            name:'Whitley Gallery',
		            profileimage:'http://a3.twimg.com/profile_images/455903195/Outside_Gallery_2_normal.JPG'
		        },
		        {
		            screenname:'urbantheater',
		            name:'UrbanTheater Company',
		            profileimage:'http://a3.twimg.com/profile_images/715382685/utcbig-2_normal.jpg'
		        },
		        {
		            screenname:'flemingartists',
		            name:'Fleming Artists',
		            profileimage:'http://a3.twimg.com/profile_images/74819295/fa_globe_normal.jpg'
		        },
		        {
		            screenname:'FourthArtsBlock',
		            name:'Fourth Arts Block',
		            profileimage:'http://a3.twimg.com/profile_images/336422235/Logo_RGB_normal.jpg'
		        },
		        {
		            screenname:'AVAConcerts',
		            name:'AVA Amphitheater',
		            profileimage:'http://a3.twimg.com/profile_images/485148357/avaIcon_normal.png'
		        },
		        {
		            screenname:'atlfilm365',
		            name:'Atl Film Fest 365',
		            profileimage:'http://a1.twimg.com/profile_images/60572920/atl180x220_normal.gif'
		        },
		        {
		            screenname:'NOLA_ArtHouse',
		            name:'1614! Art House',
		            profileimage:'http://a1.twimg.com/profile_images/571943224/tree3_normal.jpg'
		        },
		        {
		            screenname:'ChicagoOpera',
		            name:'Chicago Opera Theater',
		            profileimage:'http://a1.twimg.com/profile_images/61597804/icon_for_you_tube_normal.jpg'
		        },
		        {
		            screenname:'africanart',
		            name:'Museum for African Art',
		            profileimage:'http://a3.twimg.com/profile_images/276518957/ife_normal.jpg'
		        },
		        {
		            screenname:'BainbridgeArts',
		            name:'Bainbridge Arts',
		            profileimage:'http://a1.twimg.com/profile_images/339052430/iStock_000000846060XSmall_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'DJs/Clubs/Celebrities',
		    item:[
		        {
		            screenname:'ITSMRHOODSTAR',
		            name:'The Real Mr Hoodstar',
		            profileimage:'http://a3.twimg.com/profile_images/855334571/95548331_normal.jpg'
		        },
		        {
		            screenname:'TronicPDX',
		            name:'Tronic | TronicPDX',
		            profileimage:'http://a1.twimg.com/profile_images/569093334/profilepic_normal.jpg'
		        },
		        {
		            screenname:'DJMeta4',
		            name:'DJ Meta4',
		            profileimage:'http://a1.twimg.com/profile_images/668142052/ProfilePic_normal.jpg'
		        },
		        {
		            screenname:'DJPLAYTIME',
		            name:'DJ PLAYTIME',
		            profileimage:'http://a1.twimg.com/profile_images/781945898/napkin_nights_normal.jpg'
		        },
		        {
		            screenname:'djoneman',
		            name:'Steve Oneman',
		            profileimage:'http://a1.twimg.com/profile_images/674497076/RinseCD015_Cover2_normal.jpg'
		        },
		        {
		            screenname:'djbeatstreet',
		            name:'DJ Beatstreet',
		            profileimage:'http://a1.twimg.com/profile_images/845597366/IMG00336-20100415-1340_normal.jpg'
		        },
		        {
		            screenname:'altitudesky',
		            name:'ALTITUDE Sky Lounge',
		            profileimage:'http://a3.twimg.com/profile_images/121205403/altitude_normal.png'
		        },
		        {
		            screenname:'DJDIRTYRICO',
		            name:'DJ Dirty Rico',
		            profileimage:'http://a1.twimg.com/profile_images/612928840/n671274282_2271379_2085938_normal.jpg'
		        },
		        {
		            screenname:'djnikkibeatnik',
		            name:'DJ Nikkibeatnik',
		            profileimage:'http://a1.twimg.com/profile_images/90494252/dj_nikki___records_normal.jpg'
		        },
		        {
		            screenname:'juicynightclub',
		            name:'Juicy Nightclub',
		            profileimage:'http://a3.twimg.com/profile_images/770573719/l_950ef07cc12a411f87fbfe730243405f_normal.jpg'
		        },
		        {
		            screenname:'DJPREDAKON',
		            name:'DJ Predakon',
		            profileimage:'http://a3.twimg.com/profile_images/557598701/Picture_1_normal.png'
		        },
		        {
		            screenname:'CLUBFLOWDALLAS',
		            name:'Club Flow',
		            profileimage:'http://a3.twimg.com/profile_images/802678285/Club_Flow_normal.jpg'
		        },
		        {
		            screenname:'DJUCH',
		            name:'DJ Uch',
		            profileimage:'http://a1.twimg.com/profile_images/862683668/058_copy_normal.jpg'
		        },
		        {
		            screenname:'SevenBend',
		            name:'Seven Nightclub',
		            profileimage:'http://a3.twimg.com/profile_images/179667523/l_21a15de63189437dbbf126b06a6b6b78_normal.jpg'
		        },
		        {
		            screenname:'djtrauma',
		            name:'DJ Trauma',
		            profileimage:'http://a3.twimg.com/profile_images/356116945/R_Trizzle_normal.jpg'
		        },
		        {
		            screenname:'DJFASE',
		            name:'DJ Fase',
		            profileimage:'http://a3.twimg.com/profile_images/323191163/GABE_G_DJ_Fase_PIC_normal.jpg'
		        },
		        {
		            screenname:'djbam',
		            name:'DJ Bam Bam',
		            profileimage:'http://a3.twimg.com/profile_images/87559499/twitter_normal.jpg'
		        },
		        {
		            screenname:'djdnice',
		            name:'D-Nice',
		            profileimage:'http://a3.twimg.com/profile_images/752266009/D-nice-Main-small_normal.jpg'
		        },
		        {
		            screenname:'djcaesar',
		            name:'DJ Caesar',
		            profileimage:'http://a3.twimg.com/profile_images/845390909/thefirm-logo_bw_normal.jpg'
		        },
		        {
		            screenname:'djsnapnyc',
		            name:'DJ Snap',
		            profileimage:'http://a3.twimg.com/profile_images/642179773/image_normal.jpg'
		        },
		        {
		            screenname:'DjCarisma',
		            name:'DJ Carisma',
		            profileimage:'http://a3.twimg.com/profile_images/710238801/DjCarisma_normal.jpg'
		        },
		        {
		            screenname:'DjAnalyze',
		            name:'DJ Analyze',
		            profileimage:'http://a3.twimg.com/profile_images/843850661/l_6a504074ba67a1a0dbfdb5fbc348a166_normal.jpg'
		        },
		        {
		            screenname:'djlegacy',
		            name:'DJ Legacy',
		            profileimage:'http://a3.twimg.com/profile_images/806985339/85372357_normal.jpg'
		        },
		        {
		            screenname:'djbernardjones',
		            name:'DJ Bernard Jones',
		            profileimage:'http://a1.twimg.com/profile_images/637485412/bjHEAD_normal.jpg'
		        },
		        {
		            screenname:'DJFLIPSTAR',
		            name:'DJ Flipstar',
		            profileimage:'http://a3.twimg.com/profile_images/872060305/AllEyesOnWho-42_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Churches/Religion',
		    item:[
		        {
		            screenname:'ligonier',
		            name:'Ligonier Ministries',
		            profileimage:'http://a1.twimg.com/profile_images/675143928/LIG-LOGO_FB_198x200_normal.jpg'
		        },
		        {
		            screenname:'stlukeorthodox',
		            name:'St. Luke Church',
		            profileimage:'http://a3.twimg.com/profile_images/761340193/StLukeicon_head_normal.jpg'
		        },
		        {
		            screenname:'newunity',
		            name:'New-Unity Unitarians',
		            profileimage:'http://a3.twimg.com/profile_images/690311189/chalice_normal.jpg'
		        },
		        {
		            screenname:'churchintheson',
		            name:'Church In The Son',
		            profileimage:'http://a3.twimg.com/profile_images/577648141/CITS_Button_normal.jpg'
		        },
		        {
		            screenname:'elevation',
		            name:'Elevation Church',
		            profileimage:'http://a1.twimg.com/profile_images/274292966/elevation.white.red.logo.002_normal.jpg'
		        },
		        {
		            screenname:'CharlotteOne',
		            name:'CharlotteONE',
		            profileimage:'http://a1.twimg.com/profile_images/610553964/Charlotte-One-Blue-Twitter_normal.jpg'
		        },
		        {
		            screenname:'equationchurch',
		            name:'The Equation Church',
		            profileimage:'http://a1.twimg.com/profile_images/726941386/Youtube_normal.jpg'
		        },
		        {
		            screenname:'FirstAMEZion',
		            name:'First AME Zion',
		            profileimage:'http://a1.twimg.com/profile_images/354886012/logo_xlarge_normal.jpg'
		        },
		        {
		            screenname:'covelimyouth',
		            name:'Coventry Elim Youth',
		            profileimage:'http://a1.twimg.com/profile_images/577464842/Elim_Cov_Youth_normal.jpg'
		        },
		        {
		            screenname:'shoalcreek',
		            name:'Shoal Creek Community Church ',
		            profileimage:'http://a1.twimg.com/profile_images/228306170/Twitterlogo_normal.jpg'
		        },
		        {
		            screenname:'cbcnlr',
		            name:'Central Baptist NLR',
		            profileimage:'http://a3.twimg.com/profile_images/442360147/ce5b7d001e4082001afaa998f5f4e94e_normal.png'
		        },
		        {
		            screenname:'RockChurchEPT',
		            name:'Rock Church El Paso',
		            profileimage:'http://a3.twimg.com/profile_images/466086685/LogoLast.3_normal.JPG'
		        },
		        {
		            screenname:'CrosspointLive',
		            name:'Crosspoint Church',
		            profileimage:'http://a3.twimg.com/profile_images/56159357/CrossOnly_normal.jpg'
		        },
		        {
		            screenname:'norulesjustgod',
		            name:'Gentle Spirit Christian Church',
		            profileimage:'http://a1.twimg.com/profile_images/649944690/GSCC_logo_notype_72_normal.jpg'
		        },
		        {
		            screenname:'WelcometoAH',
		            name:'Abba\'s House',
		            profileimage:'http://a1.twimg.com/profile_images/216141968/ABBA-HOUSE-MOSIAC_small_normal.jpg'
		        },
		        {
		            screenname:'genesischurch',
		            name:'Genesis Church',
		            profileimage:'http://a3.twimg.com/profile_images/417417495/genesistwitterprofilepic_normal.jpg'
		        },
		        {
		            screenname:'Element_Church',
		            name:'Element Church',
		            profileimage:'http://a1.twimg.com/profile_images/340724416/ECLogo_2_normal.jpg'
		        },
		        {
		            screenname:'standrewsuc',
		            name:'St Andrews Haney UCC',
		            profileimage:'http://a1.twimg.com/profile_images/116978282/drawing_normal.jpg'
		        },
		        {
		            screenname:'onechurchglos',
		            name:'OneChurch Gloucester',
		            profileimage:'http://a1.twimg.com/profile_images/506753458/3_normal.jpg'
		        },
		        {
		            screenname:'christianspkrs',
		            name:'ChristianSpeakers',
		            profileimage:'http://a1.twimg.com/profile_images/715921046/css_twitter4_normal.png'
		        },
		        {
		            screenname:'Vantagepointcc',
		            name:'VantagePoint Church',
		            profileimage:'http://a1.twimg.com/profile_images/288196926/vpcc_Rev1-Logo_3_normal.png'
		        },
		        {
		            screenname:'joyfullifetw',
		            name:'Joyful Life',
		            profileimage:'http://a1.twimg.com/profile_images/390466744/Joyful_Life_logo_normal.jpg'
		        },
		        {
		            screenname:'FullertonChurch',
		            name:'The Fullerton Church',
		            profileimage:'http://a3.twimg.com/profile_images/568637837/Logo_normal.jpg'
		        },
		        {
		            screenname:'gpAmplify',
		            name:'Grace Point Amplify',
		            profileimage:'http://a1.twimg.com/profile_images/627021434/Amplify_BC_11-09_Front_2_normal.jpg'
		        },
		        {
		            screenname:'CRMJax',
		            name:'City Rescue Mission',
		            profileimage:'http://a3.twimg.com/profile_images/311804021/CRM_logo2_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Hotels/Casinos',
		    item:[
		        {
		            screenname:'SHRHollywood',
		            name:'Seminole Hard Rock',
		            profileimage:'http://i41.tinypic.com/11wasms.png'
		        },
		        {
		            screenname:'HOTEL1000',
		            name:'HOTEL1000',
		            profileimage:'http://a1.twimg.com/profile_images/95270850/Hotel_1000_Guestroom_-_Closeup_normal.jpg'
		        },
		        {
		            screenname:'Holiday_Inn',
		            name:'Holiday Inn Historic',
		            profileimage:'http://i44.tinypic.com/w1y91y.png'
		        },
		        {
		            screenname:'CommerceCasino',
		            name:'Commerce Casino',
		            profileimage:'http://a3.twimg.com/profile_images/421139559/photo_Hotel_normal.jpg'
		        },
		        {
		            screenname:'PortlndMarriott',
		            name:'Portland Marriott CC',
		            profileimage:'http://a1.twimg.com/profile_images/616129032/FBProfilepic_normal.jpg'
		        },
		        {
		            screenname:'MontereyHotels',
		            name:'Comfort Inn Monterey',
		            profileimage:'http://a3.twimg.com/profile_images/213533079/Harbor_with_Flow-_Web_normal.jpg'
		        },
		        {
		            screenname:'SofitelDC',
		            name:'Sofitel WashingtonDC',
		            profileimage:'http://a3.twimg.com/profile_images/614461403/Washington_Thumbnail_normal.jpg'
		        },
		        {
		            screenname:'FSLosAngeles',
		            name:'Four Seasons LA',
		            profileimage:'http://i44.tinypic.com/33y767o.png'
		        },
		        {
		            screenname:'TheEllisAtlanta',
		            name:'The Ellis',
		            profileimage:'http://a3.twimg.com/profile_images/802415307/signature_shot_bigger_normal.jpg'
		        },
		        {
		            screenname:'CliffHouseHotel',
		            name:'Cliff House Hotel',
		            profileimage:'http://a1.twimg.com/profile_images/74828296/The_Cliff_House_Hotel_Pier_View_normal.jpg'
		        },
		        {
		            screenname:'HotelDeca',
		            name:'Hotel Deca - Seattle',
		            profileimage:'http://a3.twimg.com/profile_images/834038055/deca_sunsetsmall_normal.JPG'
		        },
		        {
		            screenname:'SofitelMiami',
		            name:'Sofitel Miami',
		            profileimage:'http://a1.twimg.com/profile_images/586000704/miami_normal.bmp'
		        },
		        {
		            screenname:'sesandiego',
		            name:'Se San Diego',
		            profileimage:'http://a3.twimg.com/profile_images/136521963/Se_Lobby_normal.jpg'
		        },
		        {
		            screenname:'DanaMissionBay',
		            name:'The Dana Hotel on MB',
		            profileimage:'http://a3.twimg.com/profile_images/475079035/New_Front_Entry_normal.JPG'
		        },
		        {
		            screenname:'hilakewood',
		            name:'Holiday Inn Lakewood',
		            profileimage:'http://a1.twimg.com/profile_images/73675336/lobby_lg_normal.jpg'
		        },
		        {
		            screenname:'napamarriott',
		            name:'Napa Valley Marriott',
		            profileimage:'http://a1.twimg.com/profile_images/651114588/Napa_Marriott_Logo_with_Grapes_normal.jpg'
		        },
		        {
		            screenname:'DelafieldHotel',
		            name:'The Delafield Hotel',
		            profileimage:'http://a1.twimg.com/profile_images/565109304/Hotel_normal.JPG'
		        },
		        {
		            screenname:'SandVillaHotel',
		            name:'Waikiki Sand Villa',
		            profileimage:'http://a3.twimg.com/profile_images/400165385/WSV_ewa_normal.jpg'
		        },
		        {
		            screenname:'GrandAmerica',
		            name:'Grand America Hotel',
		            profileimage:'http://a3.twimg.com/profile_images/432047777/grand_flag_normal.png'
		        },
		        {
		            screenname:'QuorumHotelTPA',
		            name:'Quorum Hotel Tampa',
		            profileimage:'http://a1.twimg.com/profile_images/198461340/QuorumHotelTampa_normal.jpg'
		        },
		        {
		            screenname:'losabrigados',
		            name:'Los Abrigados',
		            profileimage:'http://a3.twimg.com/profile_images/248609585/LA_Pool_normal.jpg'
		        },
		        {
		            screenname:'JamaicaPegasus',
		            name:'Jamaica Pegasus',
		            profileimage:'http://a3.twimg.com/profile_images/518954193/JamaicaPegasus_normal.jpg'
		        },
		        {
		            screenname:'PrescottResort',
		            name:'Prescott Resort',
		            profileimage:'http://a1.twimg.com/profile_images/427662496/Picture1_normal.jpg'
		        },
		        {
		            screenname:'Montelucia',
		            name:'Montelucia',
		            profileimage:'http://a3.twimg.com/profile_images/73287141/Main_Resort_Image_normal.jpg'
		        },
		        {
		            screenname:'HardRockChicago',
		            name:'Hard Rock Hotel',
		            profileimage:'http://a1.twimg.com/profile_images/370888326/PunkDog_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Real Estate',
		    item:[
		        {
		            screenname:'jldmiami',
		            name:'JLD Miami Real Estate',
		            profileimage:'http://i39.tinypic.com/2njysxx.png'
		        },
		        {
		            screenname:'RealtorJosh',
		            name:'Josh Anderson, Keller Williams Realty',
		            profileimage:'http://a1.twimg.com/profile_images/288741944/kwbug-socialmedialogo_normal.jpg'
		        },
		        {
		            screenname:'pasicrealestate',
		            name:'Pasic Real Estate',
		            profileimage:'http://i41.tinypic.com/214wk86.png'
		        },
		        {
		            screenname:'karenbc',
		            name:'One Percent Realty',
		            profileimage:'http://i40.tinypic.com/246t8vl.png'
		        },
		        {
		            screenname:'MeyerRealEstate',
		            name:'Meyer Real Estate',
		            profileimage:'http://a3.twimg.com/profile_images/75733027/meyer-real-estate_normal.jpg'
		        },
		        {
		            screenname:'PruSteamboat',
		            name:'Prudential Steamboat',
		            profileimage:'http://a1.twimg.com/profile_images/75414658/Winter-Barn_web_normal.jpg'
		        },
		        {
		            screenname:'BaltMdRealtor',
		            name:'Donna Spare, Advance Realty Baltimore',
		            profileimage:'http://a1.twimg.com/profile_images/886975098/twitterlogo_normal.jpg'
		        },
		        {
		            screenname:'CorleyRltyGroup',
		            name:'Corley Realty Group',
		            profileimage:'http://a3.twimg.com/profile_images/306142633/corleyre_homepage_normal.jpg'
		        },
		        {
		            screenname:'satx_randy',
		            name:'Randy Watson, Mission Realty',
		            profileimage:'http://i39.tinypic.com/9zu93d.png'
		        },
		        {
		            screenname:'IreneYrRealtor',
		            name:'Irene Bilinski, Keller Williams Realty',
		            profileimage:'http://i39.tinypic.com/afj53s.png'
		        },
		        {
		            screenname:'RealEstateSimon',
		            name:'Team DeClute',
		            profileimage:'http://i44.tinypic.com/nq8f87.png'
		        },
		        {
		            screenname:'tonylazz',
		            name:'Naperville Real Estate',
		            profileimage:'http://i39.tinypic.com/fxqubm.png'
		        },
		        {
		            screenname:'ProfessionalOne',
		            name:'ProfessionalOne Real Estate',
		            profileimage:'http://a3.twimg.com/profile_images/430787707/P1_black_star_red_back_6-5-09_normal.jpg'
		        },
		        {
		            screenname:'MichelleRealtor',
		            name:'Michelle Silverman, Prudential California Realty',
		            profileimage:'http://a3.twimg.com/profile_images/181583905/Prudential_normal.jpg'
		        },
		        {
		            screenname:'NYCREMilton',
		            name:'The Corcoran Group',
		            profileimage:'http://a3.twimg.com/profile_images/780526053/photo_normal.jpeg'
		        },
		        {
		            screenname:'RealtySeattle',
		            name:'The Prescott Group',
		            profileimage:'http://i39.tinypic.com/91a0yp.png'
		        },
		        {
		            screenname:'NylsGramercy',
		            name:'NY Living Solutions',
		            profileimage:'http://a1.twimg.com/profile_images/290873028/twitter_normal.jpg'
		        },
		        {
		            screenname:'DavidSPricePA',
		            name:'The Price Group',
		            profileimage:'http://i43.tinypic.com/qn2q82.png'
		        },
		        {
		            screenname:'BARAK_Realty',
		            name:'BARAK Realty',
		            profileimage:'http://a3.twimg.com/profile_images/504990681/logo_complete_square_normal.jpg'
		        },
		        {
		            screenname:'hungrydomaine',
		            name:'Zwebens Real Estate',
		            profileimage:'http://i41.tinypic.com/2rp33hv.png'
		        },
		        {
		            screenname:'SubPhillyHomes',
		            name:'John Badalamenti, Prudential Fox & Roach',
		            profileimage:'http://i40.tinypic.com/2u5qno8.png'
		        },
		        {
		            screenname:'jaymcinnes',
		            name:'Jay McInnes, MacDonald Realty',
		            profileimage:'http://a3.twimg.com/profile_images/676245533/MR_2clr_normal.jpg'
		        },
		        {
		            screenname:'Medfordhouse',
		            name:'Scott Nelson, Wolfson Cutler Real Estate',
		            profileimage:'http://a1.twimg.com/profile_images/533068708/Wolfson_Cutler_logo_4C_normal.jpg'
		        },
		        {
		            screenname:'rosadaza',
		            name:'Rosa Daza, Realty Executives',
		            profileimage:'http://a1.twimg.com/profile_images/276484140/twitter_logo_normal.bmp'
		        },
		        {
		            screenname:'dowelltaggart',
		            name:'RE/MAX, Dowell Taggart Group',
		            profileimage:'http://a3.twimg.com/profile_images/433411565/Family_Business_Pic_Square_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Sports/Education',
		    item:[
		        {
		            screenname:'trboxing',
		            name:'Top Rank Boxing',
		            profileimage:'http://a1.twimg.com/profile_images/301347498/TR_Twitter_Avatar_normal.jpg'
		        },
		        {
		            screenname:'bcit',
		            name:'BC Institute of Technology',
		            profileimage:'http://a3.twimg.com/profile_images/277202997/bcit_twitter_icon_normal.jpg'
		        },
		        {
		            screenname:'dixiederby',
		            name:'Dixie Derby Girls',
		            profileimage:'http://a3.twimg.com/profile_images/55413103/DDGBig_normal.jpg'
		        },
		        {
		            screenname:'AviatorSports',
		            name:'Aviator Sports',
		            profileimage:'http://a1.twimg.com/profile_images/563359436/AviatorFull_normal.jpg'
		        },
		        {
		            screenname:'GCSchoolsNC',
		            name:'Guilford Co. Schools',
		            profileimage:'http://a3.twimg.com/profile_images/612183069/Untitled-1_normal.jpg'
		        },
		        {
		            screenname:'HoustonMarathon',
		            name:'Houston Marathon',
		            profileimage:'http://a1.twimg.com/profile_images/94055788/Marathon_Bug_Twitter_normal.jpg'
		        },
		        {
		            screenname:'AnsellRacingUSA',
		            name:'Ansell Racing',
		            profileimage:'http://a1.twimg.com/profile_images/178853878/Menards_Ansell_44_Ford_Fusion_ARCA_ReMax_car_normal.jpg'
		        },
		        {
		            screenname:'u90soccer',
		            name:'Upper 90 Soccer NYC',
		            profileimage:'http://a1.twimg.com/profile_images/407052070/Picture_8_normal.png'
		        },
		        {
		            screenname:'GatorWire',
		            name:'Florida Gators',
		            profileimage:'http://a3.twimg.com/profile_images/432562857/GatorWire_Picture_normal.jpg'
		        },
		        {
		            screenname:'ithacacollege',
		            name:'Ithaca College',
		            profileimage:'http://a1.twimg.com/profile_images/59434178/IC_weblogo_avatar_normal.jpg'
		        },
		        {
		            screenname:'websteru',
		            name:'Webster University',
		            profileimage:'http://a3.twimg.com/profile_images/760078837/twitterlogo2_normal.jpg'
		        },
		        {
		            screenname:'orangecoast',
		            name:'Orange Coast College',
		            profileimage:'http://a1.twimg.com/profile_images/64900916/logo-full-color-twitter_normal.jpg'
		        },
		        {
		            screenname:'Marlins411',
		            name:'Florida Marlins',
		            profileimage:'http://a3.twimg.com/profile_images/250968183/fla_standings_logo_normal.gif'
		        },
		        {
		            screenname:'unlvsportsradio',
		            name:'UNLV Sports Radio',
		            profileimage:'http://a3.twimg.com/profile_images/551556939/35-41254-B_normal.jpg'
		        },
		        {
		            screenname:'sportseasons',
		            name:'Sport Seasons',
		            profileimage:'http://a3.twimg.com/profile_images/492270661/sseasons_ball_normal.jpg'
		        },
		        {
		            screenname:'nmsu',
		            name:'NM State University',
		            profileimage:'http://a3.twimg.com/profile_images/276648973/nmsu-logo_normal.jpg'
		        },
		        {
		            screenname:'UMassAmherst',
		            name:'UMass Amherst',
		            profileimage:'http://a1.twimg.com/profile_images/717907614/UMass-thumbnail_normal.jpg'
		        },
		        {
		            screenname:'FanshaweCollege',
		            name:'Fanshawe College',
		            profileimage:'http://a3.twimg.com/profile_images/150788173/Fanshawe-Twitter_normal.jpg'
		        },
		        {
		            screenname:'Ouachita',
		            name:'Ouachita Baptist University',
		            profileimage:'http://a3.twimg.com/profile_images/254820355/SEAL_Garamond3_normal.png'
		        },
		        {
		            screenname:'stpetebowl',
		            name:'St. Petersburg Bowl',
		            profileimage:'http://a1.twimg.com/profile_images/729734994/Picture_29_bigger_normal.jpg'
		        },
		        {
		            screenname:'Spottampa',
		            name:'Skatepark of Tampa',
		            profileimage:'http://a1.twimg.com/profile_images/248189992/Circle_City_-2007_-No_Strok_normal.jpg'
		        },
		        {
		            screenname:'PortlandPilots',
		            name:'Portland Pilots',
		            profileimage:'http://a1.twimg.com/profile_images/838303270/PilotsTwitter_Purple_normal.jpg'
		        },
		        {
		            screenname:'maineredclaws',
		            name:'Maine Red Claws',
		            profileimage:'http://a1.twimg.com/profile_images/203171728/MAINE_RedClawsPrmry4CLR_small_normal.jpg'
		        },
		        {
		            screenname:'MSAest1961',
		            name:'Malibu Surfing Assoc',
		            profileimage:'http://a3.twimg.com/profile_images/517353955/004_normal.gif'
		        },
		        {
		            screenname:'AmarilloCollege',
		            name:'Amarillo College',
		            profileimage:'http://a1.twimg.com/profile_images/531198032/ac_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Media/News/PR',
		    item:[
		        {
		            screenname:'INsiteAustin',
		            name:'INsite Magazine',
		            profileimage:'http://a1.twimg.com/profile_images/122509668/Logo_normal.jpg'
		        },
		        {
		            screenname:'fordmodels',
		            name:'Ford Models',
		            profileimage:'http://a3.twimg.com/profile_images/644334051/FORD_MODELS_TWITTER_normal.png'
		        },
		        {
		            screenname:'MakinItMag',
		            name:'Makin\' It Magazine',
		            profileimage:'http://a1.twimg.com/profile_images/626433590/MIM_Twit_Pic_copy_normal.jpg'
		        },
		        {
		            screenname:'SiTV',
		            name:'Si TV',
		            profileimage:'http://a1.twimg.com/profile_images/71134510/SiTV126x126_normal.jpg'
		        },
		        {
		            screenname:'insidebayarea',
		            name:'insidebayarea',
		            profileimage:'http://a1.twimg.com/profile_images/179914950/IBA_normal.gif'
		        },
		        {
		            screenname:'TheFashionNetUK',
		            name:'Fashion Network',
		            profileimage:'http://a3.twimg.com/profile_images/519378969/8874_normal.jpg'
		        },
		        {
		            screenname:'citydogmagazine',
		            name:'CityDog Magazine',
		            profileimage:'http://a1.twimg.com/profile_images/714459188/winter2010cover_medium_normal.jpg'
		        },
		        {
		            screenname:'ALINEMEDIA',
		            name:'FASHION PR',
		            profileimage:'http://a1.twimg.com/profile_images/194511706/LFC_normal.jpg'
		        },
		        {
		            screenname:'iimaonline',
		            name:'IIMA',
		            profileimage:'http://a3.twimg.com/profile_images/590852557/IIMA-Twitter_Logo_blackwhite_normal.jpg'
		        },
		        {
		            screenname:'CAMMagazine',
		            name:'CAM Magazine',
		            profileimage:'http://a3.twimg.com/profile_images/150367391/TWITTER-icon_normal.jpg'
		        },
		        {
		            screenname:'SmyrnaNews',
		            name:'City of Smyrna',
		            profileimage:'http://a1.twimg.com/profile_images/468824070/SmyrnaNewColorsforNixle_normal.png'
		        },
		        {
		            screenname:'NETmcgroup',
		            name:'NET Marketing',
		            profileimage:'http://a3.twimg.com/profile_images/718717317/NETlogoFACEBOOK_normal.png'
		        },
		        {
		            screenname:'rareaustin',
		            name:'Rare Magazine: Austin, Texas',
		            profileimage:'http://a3.twimg.com/profile_images/609895181/rare_issuu_normal.jpg'
		        },
		        {
		            screenname:'sacramentopress',
		            name:'The Sacramento Press',
		            profileimage:'http://a3.twimg.com/profile_images/789085905/Snapshot_2009-07-07_20-50-15__1__normal.jpg'
		        },
		        {
		            screenname:'RAKmagazine',
		            name:'Raising Arizona Kids',
		            profileimage:'http://a3.twimg.com/profile_images/371672897/n56685221192_2028556_7890377_normal.jpg'
		        },
		        {
		            screenname:'Gencia',
		            name:'Gencia Media Limited',
		            profileimage:'http://a3.twimg.com/profile_images/583733541/gen_sqr_normal.gif'
		        },
		        {
		            screenname:'BostonBizJournl',
		            name:'Boston Business Journal',
		            profileimage:'http://a3.twimg.com/profile_images/744488177/bbj_logo_bigger_normal.jpg'
		        },
		        {
		            screenname:'PhillyBrk',
		            name:'PhillyBreakingNews',
		            profileimage:'http://a3.twimg.com/profile_images/199585853/phillybrk_twitter_logo_normal.jpg'
		        },
		        {
		            screenname:'fordpublicity',
		            name:'Ford Publicity',
		            profileimage:'http://a1.twimg.com/profile_images/640191822/tiff_logo_normal.jpg'
		        },
		        {
		            screenname:'CulinaryTrends',
		            name:'Culinary Trends Mag',
		            profileimage:'http://a3.twimg.com/profile_images/642693599/CT_Early_Fall09_cover_good_normal.jpg'
		        },
		        {
		            screenname:'ReachMagazine',
		            name:'Reach Magazine',
		            profileimage:'http://a3.twimg.com/profile_images/672323811/reach-hootsuite-cover_normal.jpg'
		        },
		        {
		            screenname:'KFNX_Headlines',
		            name:'KFNX AM1100',
		            profileimage:'http://a1.twimg.com/profile_images/488434342/KFNX_Logo_Small_normal.gif'
		        },
		        {
		            screenname:'AuMagazine',
		            name:'AU Magazine',
		            profileimage:'http://a3.twimg.com/profile_images/72310355/AU-web-logo_normal.jpg'
		        },
		        {
		            screenname:'RMDAdvertising',
		            name:'RMD Advertising',
		            profileimage:'http://a3.twimg.com/profile_images/181663231/swingboy_normal.jpg'
		        },
		        {
		            screenname:'Bournemouthecho',
		            name:'Bournemouth Echo',
		            profileimage:'http://a1.twimg.com/profile_images/104482472/springlogo_normal.png'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Charities/NPOs',
		    item:[
		        {
		            screenname:'ReeveFoundation',
		            name:'Reeve Foundation',
		            profileimage:'http://a3.twimg.com/profile_images/339391421/flame_75x75_normal.gif'
		        },
		        {
		            screenname:'dreamsforkids',
		            name:'Dreams for Kids',
		            profileimage:'http://a3.twimg.com/profile_images/354458543/3707006289_2dcf4ddaed_b_normal.jpg'
		        },
		        {
		            screenname:'UNIHIV',
		            name:'UNIHIV',
		            profileimage:'http://a3.twimg.com/profile_images/587352459/unihivlogo_normal.jpg'
		        },
		        {
		            screenname:'acrescuemission',
		            name:'AC Rescue Mission',
		            profileimage:'http://a1.twimg.com/profile_images/422612424/ACRM-ICON3_normal.png'
		        },
		        {
		            screenname:'bluebellwalk5k',
		            name:'Cancer Research UK',
		            profileimage:'http://a1.twimg.com/profile_images/750349028/twitterProfilePhoto_normal.jpg'
		        },
		        {
		            screenname:'oceanhealth',
		            name:'Ocean Health',
		            profileimage:'http://a1.twimg.com/profile_images/270863770/oceanhealthprofile_normal.jpg'
		        },
		        {
		            screenname:'TheLivingPress',
		            name:'The Living Press',
		            profileimage:'http://a1.twimg.com/profile_images/420598414/Twitter_Logo_normal.jpg'
		        },
		        {
		            screenname:'TheGreenProject',
		            name:'The Green Project',
		            profileimage:'http://a1.twimg.com/profile_images/84567404/GP_small_normal.jpg'
		        },
		        {
		            screenname:'playourpart',
		            name:'Play Our Part',
		            profileimage:'http://a3.twimg.com/profile_images/647702895/popaids_normal.png'
		        },
		        {
		            screenname:'rescueridge',
		            name:'Rescue Ridge',
		            profileimage:'http://a3.twimg.com/profile_images/642865861/kazi_normal.jpg'
		        },
		        {
		            screenname:'MICDS',
		            name:'MICDS',
		            profileimage:'http://a1.twimg.com/profile_images/531109786/150_normal.jpg'
		        },
		        {
		            screenname:'heiferportland',
		            name:'Heifer Portland',
		            profileimage:'http://a3.twimg.com/profile_images/675779155/heiferportlandbrownbuttonsm_normal.jpg'
		        },
		        {
		            screenname:'FFLCancerSprt',
		            name:'Friend for Life',
		            profileimage:'http://a3.twimg.com/profile_images/656786697/twitterProfilePhoto_normal.jpg'
		        },
		        {
		            screenname:'greenerleith',
		            name:'greener leith',
		            profileimage:'http://a1.twimg.com/profile_images/436937618/Square_Small_GL_Logo_normal.jpg'
		        },
		        {
		            screenname:'LivingBeyond',
		            name:'Living Beyond Breast Cancer',
		            profileimage:'http://a1.twimg.com/profile_images/139121446/2C_Horiz_1_normal.jpg'
		        },
		        {
		            screenname:'ProjectHOME',
		            name:'Project H.O.M.E',
		            profileimage:'http://a3.twimg.com/profile_images/389420547/project_home_icon_normal.jpg'
		        },
		        {
		            screenname:'826LA',
		            name:'826LA',
		            profileimage:'http://a1.twimg.com/profile_images/62952764/826la-logo1_normal.jpg'
		        },
		        {
		            screenname:'AngelsforAnimal',
		            name:'Angels For Animals',
		            profileimage:'http://a1.twimg.com/profile_images/114887618/logo1_normal.jpg'
		        },
		        {
		            screenname:'musicheals',
		            name:'Ash of MusicHeals',
		            profileimage:'http://a3.twimg.com/profile_images/258989465/musicheals_logo_normal.jpg'
		        },
		        {
		            screenname:'massbar',
		            name:'Mass Bar Association',
		            profileimage:'http://a1.twimg.com/profile_images/281844032/Twitterlogo1_normal.jpg'
		        },
		        {
		            screenname:'finnegans',
		            name:'FinnegansIrishAmber',
		            profileimage:'http://a3.twimg.com/profile_images/762618347/twitter-icon_bigger2_normal.jpg'
		        },
		        {
		            screenname:'TRAIDcharity',
		            name:'TRAIDcharity',
		            profileimage:'http://a3.twimg.com/profile_images/130502001/twitter_normal.jpg'
		        },
		        {
		            screenname:'caritasofaustin',
		            name:'Caritas of Austin',
		            profileimage:'http://a3.twimg.com/profile_images/408087773/CaritasLogo_normal.jpg'
		        },
		        {
		            screenname:'miriamskitchen',
		            name:'Miriam\'s Kitchen',
		            profileimage:'http://a3.twimg.com/profile_images/86720971/twitter_logo_normal.JPG'
		        },
		        {
		            screenname:'WIOvarianCancer',
		            name:'Ovarian Cancer',
		            profileimage:'http://a1.twimg.com/profile_images/345013420/gatherer_normal.png'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		    ]
		},
		{
		    name:'Government/Service',
		    item:[
		        {
		            screenname:'CharlotteFD',
		            name:'Charlotte Fire Dept',
		            profileimage:'http://a1.twimg.com/profile_images/103810248/basnight_badge_small3_normal.png'
		        },
		        {
		            screenname:'LGBTLabour',
		            name:'LGBT Labour',
		            profileimage:'http://a3.twimg.com/profile_images/860560757/6th_May_vote_normal.jpg'
		        },
		        {
		            screenname:'austinchamber',
		            name:'Austin Chamber',
		            profileimage:'http://a1.twimg.com/profile_images/241866524/AustinCofC_normal.jpg'
		        },
		        {
		            screenname:'ToowoombaRC',
		            name:'Toowoomba Council',
		            profileimage:'http://a1.twimg.com/profile_images/91605250/TRCsquare_normal.jpg'
		        },
		        {
		            screenname:'KennPlanning',
		            name:'Kennewick Planning',
		            profileimage:'http://a3.twimg.com/profile_images/374342953/cok6_normal.jpg'
		        },
		        {
		            screenname:'DelawareCapital',
		            name:'Delaware CVB',
		            profileimage:'http://a1.twimg.com/profile_images/461738662/home_map_normal.jpeg'
		        },
		        {
		            screenname:'WyongCouncil',
		            name:'Wyong Shire Council',
		            profileimage:'http://a1.twimg.com/profile_images/62248090/Little_flower_normal.jpg'
		        },
		        {
		            screenname:'CarthageHosp',
		            name:'Carthage Hospital',
		            profileimage:'http://a1.twimg.com/profile_images/772938474/new_twitter_logo_normal.PNG'
		        },
		        {
		            screenname:'DanaPtChamber',
		            name:'Dana Point Chamber',
		            profileimage:'http://a3.twimg.com/profile_images/60216107/DP_ChamberLogo_CMYK_normal.png'
		        },
		        {
		            screenname:'saginawlibrary',
		            name:'Saginaw Library',
		            profileimage:'http://a3.twimg.com/profile_images/137517845/LibLogoNew_normal.jpg'
		        },
		        {
		            screenname:'BloodCenter',
		            name:'PS Blood Center',
		            profileimage:'http://a3.twimg.com/profile_images/274047117/logo_normal.jpg'
		        },
		        {
		            screenname:'MBTAPoliceTPSA2',
		            name:'MBTA Police TPSA2',
		            profileimage:'http://a3.twimg.com/profile_images/295483523/badge-large_file_normal.jpg'
		        },
		        {
		            screenname:'nashtraffic',
		            name:'Nashville Traffic',
		            profileimage:'http://a3.twimg.com/profile_images/86064635/traffic-light_red1_normal.jpg'
		        },
		        {
		            screenname:'PassportIndiana',
		            name:'Michael Durs',
		            profileimage:'http://a3.twimg.com/profile_images/346271243/PpH_Logo__black__square_normal.jpg'
		        },
		        {
		            screenname:'wsdot',
		            name:'Washington State DOT',
		            profileimage:'http://a1.twimg.com/profile_images/186267022/wsdot_normal.png'
		        },
		        {
		            screenname:'ProvenaHealth',
		            name:'Provena Health',
		            profileimage:'http://a1.twimg.com/profile_images/208572862/dove_only_normal.jpg'
		        },
		        {
		            screenname:'HillsboroughMPO',
		            name:'Hillsborough MPO',
		            profileimage:'http://a1.twimg.com/profile_images/127527024/rail_is_on_the_colorful_horizon__optimized_normal.jpg'
		        },
		        {
		            screenname:'HasbroChildrens',
		            name:'Hasbro Children Hospital',
		            profileimage:'http://a3.twimg.com/profile_images/140868543/HasbroRIH_normal.jpg'
		        },
		        {
		            screenname:'Derbyshirecc',
		            name:'Derbyshire CC',
		            profileimage:'http://a1.twimg.com/profile_images/88293510/twitter_picture_normal.png'
		        },
		        {
		            screenname:'Somers_Library',
		            name:'Somers Library',
		            profileimage:'http://a1.twimg.com/profile_images/809234708/twitterProfilePhoto_normal.jpg'
		        },
		        {
		            screenname:'DCAnews',
		            name:'DCAPublicAffairs',
		            profileimage:'http://a1.twimg.com/profile_images/454483856/DCA_twittericon_normal.jpg'
		        },
		        {
		            screenname:'fdnyfoundation',
		            name:'FDNY Foundation',
		            profileimage:'http://a3.twimg.com/profile_images/396852977/Fdn_logo_only_1_normal.jpg'
		        },
		        {
		            screenname:'hawaiibloodbank',
		            name:'Blood Bank of Hawaii',
		            profileimage:'http://a1.twimg.com/profile_images/326928516/BBHlogoweb_normal.jpg'
		        },
		        {
		            screenname:'portlandwater',
		            name:'PDX Water Bureau',
		            profileimage:'http://a1.twimg.com/profile_images/59386800/bitty_logo_normal.jpg'
		        },
		        {
		            screenname:'MLGW',
		            name:'MLGW Utility Company',
		            profileimage:'http://a1.twimg.com/profile_images/57831378/Square_logo_normal.jpg'
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		
		        }
		]
		}
		] // End category list
}; // End featuredUsers		


