// JavaScript Document<script>
    jQuery(document).ready(function($) {
      $(".tweet").tweet({
        join_text: "auto",
        username: "forumimperial",
        avatar_size: 33,
        count: 4,
        auto_join_text_default: "Forum,", 
        auto_join_text_ed: "Forum",
        auto_join_text_ing: "Forum",
        auto_join_text_reply: "Forum",
        auto_join_text_url: "Forum",
        loading_text: "cargando tweets..."
      });
      $("#query").tweet({
        avatar_size: 32,
        count: 4,
        query: "tweet.forumimperial.com",
        loading_text: "buscando twitter..."
      });
      $("#userandquery").tweet({
        count: 5,
        query: "from:forumimparial http",
        loading_text: "buscando twitter..."
      });
      $("#fromtwo").tweet({
        avatar_size: 32,
        count: 4,
        username: ["forumimperial",],
        loading_text: "buscando twitter...",
        refresh_interval: 10
      });
      $("#list").tweet({
        avatar_size: 32,
        count: 4,
        username: "twitter",
        list: "team",
        loading_text: "cargando lista..."
      });
      $("#empty").tweet({
        avatar_size: 32,
        count: 4,
        query: "cieR8oog",
        loading_text: "buscando..."
      }).bind("empty", function() { $(this).append("no se encontraron tweets"); });
    })

