 new TWTR.Widget({
    version: 2,
    type: 'search',
	rpp: 1,
    search: ' from:kylegoon OR from:tribpreps OR from:tribPrepsEd',
    interval: 6000,
    title: '',
    subject: '',
    width: 260,
    height: 90,
    theme: {
        shell: {
            background: 'none',
            color: 'none'
        },
        tweets: {
            background: 'none',
            color: '#FFF',
            links: '#FFF'
        }
    },
    features: {
        scrollbar: false,
        loop: true,
        live: false,
        hashtags: true,
        timestamp: false,
        avatars: false,
        behavior: 'default'
    }
}).render().start();


// CHANGE THE CLASS TO VISIBLE

/* getElementByClass
    /**********************/

/*
new TWTR.Widget({
  version: 2,
  type: 'list',
  rpp: 20,
  interval: 4500,
  title: '',
  subject: '',
  width: 'auto',
  height: 150,
  theme: {
    shell: {
      background: '#ffffff',
      color: '#ffffff'
    },
    tweets: {
      background: '#ffffff',
      color: '#444444',
      links: '#333'
    }
  },
  features: {
    scrollbar: true,
    loop: true,
    live: true,
    hashtags: true,
    timestamp: true,
    avatars: false,
    behavior: 'default'
  }
}).render().setList('sltrib', 'homepage').start();

*/



var allHTMLTags = new Array();

function getElementByClass(theClass) {

    //Create Array of All HTML Tags
    var allHTMLTags = document.getElementsByTagName(" * ");

    //Loop through all tags using a for loop
    for (i = 0; i < allHTMLTags.length; i++) {

        //Get all tags with the specified class name.
        if (allHTMLTags[i].className == theClass) {

            //Place any code you want to apply to all
            //pages with the class specified.
            //In this example is to “display:none;” them
            //Making them all dissapear on the page.
            allHTMLTags[i].style.display = 'inline';

        }
    }
}

getElementByClass('twtr-user')

