function load_twitter_data (max) {

	// DISPLAY LOADING DATA
	
	$('#display').html( 'loading data...' );
	
	// MAKE AJAX CALL TO TWITTER DATA FEED
	$.ajax({ 
	
		url: 'http://www.tuesdaynightproject.org/wp-content/themes/TN_WP/data_twitter.php', 
		type: 'GET',
		data: 'num=' + max,
		dataType: 'json', 
		success: function(response){

			//alert(response.length);
			
			// CLEAR DIV
			clear_stuff();
			
			// LOOP THROUGH TWITTER RESPONSES
			for (var i = 0; i < 50; i++) {
				
				// ADD TWEETS TO DISPLAY DIV 
				if(i < (max-1)) {
				$('#display').append( '<p>' + response[i].text + '</p>');
				} else {
				$('#display').append( '<p class="last">' + response[i].text + '</p>');
				}
			}
		} 
	});
}

function clear_stuff () {

	// CLEAR DISPLAY DIV
	$('#display').html('');
}
