// JavaScript Document
    getTwitters('feedtwitter', {
        id: 'dtownSD', 
        count: 1, 
        withFriends: true, // currently disabled due to change in Twitter API
        enableLinks: true, 
        ignoreReplies: true,
        template: '<div class="tweet"><MARQUEE SCROLLDELAY="170" onmouseover="this.setAttribute(\'scrollamount\', 0, 0);" onmouseout="this.setAttribute(\'scrollamount\', 6, 0);"><p>%text% - <a href="http://twitter.com/%user_screen_name%/statuses/%id%" target="_blank"><span style="color:#D30000;">%time%</span></a></p></MARQUEE></div>'
    });

	/*
    * id: your screen name on Twitter, for example mine is "rem"
    * count: number of twitters you want, defaults to 1.
    * clearContents: if you have content in the container you may want to clear it. Defaults to true.
    * enableLinks: true/false - scans the tweet for a link and makes it clickable, includes @replies and #hashtags, by default is true.
    * ignoreReplies: true/false - skips over tweets starting with @. If requesting 1 tweet, and this flag is set, behind the scenes it will request 2 in case the first starts with @ - but if the 2 most recent are replies, nothing will be shown.
    * currently disabled withFriends: true/false - whether to include friends tweets. Defaults to false.
    * template: the HTML template to use within each li element. See below for template variables.
    * prefix: if not using a template, you can use this. If you want to prefix each twitter, add here, e.g. 'Remy said'. Note that you can use template variables in this field.
    * timeout: Number of milliseconds before triggering onTimeout. If onTimeout is set, timeout defaults to 10 seconds.
    * onTimeout: Function to call when timeout is reached. Context is set to HTML element tweets were going to be inserted into.
    * onTimeoutCancel: true/false - if not set, the timeout can trigger, but then the Twitter script could complete and override the cancel. To avoid this, set onTimeoutCancel = true. Defaults to false.
    * newwindow: true/false - if set to true, all links in tweets (and otherwise) will open in a new window. Defaults to false.
    * callback - Function to call when the twitter render is completed. Doesn't fire if the script times out.


Template variables

All variables should be wrapped in % symbols (see the above example).

    * text - the actual status message
    * idstr - id of status message (note that id was used before, but for the ids to be correct, you need to use idstr)
    * source
    * time - relative 'friendly' time
    * created_at - raw time
    * user_name - real name
    * user_screen_name - username
    * user_id_str
    * user_profile_image_url - avatar
    * user_url - home page
    * user_location
    * user_description

	*/
