$(document).ready(function(){
        $.getJSON(
            "http://twitter.com/statuses/user_timeline/foothillsfest.json?count="+1+"&page="+1+"&callback=?"
            ,function (twitters) {
            var statusHTML = [];
            for (var i=0; i<twitters.length; i++){
            var username = twitters[i].user.screen_name;
            var status = twitters[i].text;
            /*
            .replace(/((https?|s?ftp|ssh)\:\/\/[^"\s\<\>]*[^.,;'">\:\s\<\>\)\]\!])/g, function(url) {
                return '<a href="'+url+'" target="_blank">'+url+'</a>';
                }).replace(/\B@([_a-z0-9]+)/ig, function(reply) {
                    return  reply.charAt(0)+'<a class="byWho" href="http://twitter.com/'+reply.substring(1)+'">'+reply.substring(1)+'</a>';
                    });
                */
            statusHTML.push('<a href="http://twitter.com/foothillsfest" target="_blank">'+status+'</a>');
            }
            document.getElementById('tweet_wrapper').innerHTML = statusHTML.join('');

            }
            );
        });

