// JavaScript Document
    getTwitters('arensTweets1', {
        id: 'arens041', 
        prefix: '<img height="16" width="16" src="%profile_image_url%" /><a href="http://twitter.com/%screen_name%">%name%</a> said: ', 
        clearContents: true, // leave the original message in place
        count: 10,
        ignoreReplies: true,
        newwindow: true
    });
	
    getTwitters('arensTweets2', {
        id: 'arens041', 
		clearContents: true, 
        count: 10, 
        withFriends: true, // currently disabled due to change in Twitter API
        enableLinks: true, 
        ignoreReplies: true,
        template: '<span class="twitterPrefix"><img height="16" width="16" src="%user_profile_image_url%" /> <span><b>Mike:</b></span> <span class="twitterStatus">%text%</span> <em class="twitterTime">%time%</em>'
    });
	
	  getTwitters('arensTweets3', { 
		  id: 'arens041', 
		  clearContents: true, 
		  count: 10, 
		  withFriends: true,
		  ignoreReplies: false,
		  template: '<span class="prefix"><img height="16" width="16" src="%user_profile_image_url%" /> <a href="http://twitter.com/%user_screen_name%">%user_name%</a> said: </span> <span class="status">"%text%"</span> <span class="time"><a href="http://twitter.com/%user_screen_name%/statuses/%id%">%time%</a></span>'
  });
	
	  getTwitters('mgdTweets', { 
		  id: 'MNgreyduck', 
		  clearContents: true, 
		  count: 10, 
		  withFriends: true,
          enableLinks: true, 
		  ignoreReplies: true,
		  template: '<span class="prefix"><img height="16" width="16" src="%user_profile_image_url%" /> <a href="http://twitter.com/%user_screen_name%">%user_name%</a> said: </span> <span class="status">"%text%"</span> <span class="time"><a href="http://twitter.com/%user_screen_name%/statuses/%id%">%time%</a></span>'
  });
	
/*
Supported template variables
	text - the actual status message
	id - id of status message
	source
	created_at
	time - relative 'friendly' time
	user_name - real name
	user_screen_name - username
	user_id
	user_profile_image_url - avatar
	user_url - home page
	user_location
	user_description
	
Example calls:
    getTwitters('remysTweets1', {
        id: 'rem', 
        prefix: '<img height="16" width="16" src="%profile_image_url%" /><a href="http://twitter.com/%screen_name%">%name%</a> said: ', 
        clearContents: false, // leave the original message in place
        count: 10, 
        withFriends: true,
        ignoreReplies: false,
        newwindow: true
    });
    
    getTwitters('remysTweets2', {
        id: 'rem',
        timeout: 1,
        onTimeout: function () {
            this.innerHTML = 'Actually, Twitter is down right now, but you can <a href="http://twitter.com/rem">follow me</a> if you like! (It\'s not really - I faked it!)';
        },
        onTimeoutCancel: true, // don't allow twitter to finsih the job
        ignoreReplies: true
    });

    getTwitters('johnsTweets', {
        id: 'codepo8', 
        count: 20, 
        withFriends: true, // currently disabled due to change in Twitter API
        enableLinks: true, 
        ignoreReplies: true,
        template: '<span class="twitterPrefix"><img height="16" width="16" src="%user_profile_image_url%" /> <span class="twitterStatus">%text%</span> <em class="twitterTime"><a href="http://twitter.com/%user_screen_name%/statuses/%id%">%time%</a></em>'
    });
	
*/