function twitterSidebar(){
  $("#svgwow_tweets").tweet({
    avatar_size: 32,
    count: 5,
    query: "svg-wow OR svgwow",
    loading_text: "searching twitter..."
  });
}

$(document).ready(function(){
  twitterSidebar();
  
  // workaround for opera bug CORE-31909  
  // @poster breaks display of video if width and height are not both set
  if (window.opera){
    $("video").each(
      function(index,v) {
        if(!v.hasAttribute("height") || !v.hasAttribute("width"))
          v.removeAttribute("poster");
      }
    );
  }
});

