
$(document).ready(function(){
   select_stream = function(stream) {
      var embed_codes = {
         'evo-1': '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="608" height="368" id="utv720708"> \
                       <param name="flashvars" value="autoplay=false&amp;brand=embed&amp;cid=8670236&amp;v3=1"/> \
                       <param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/> \
                       <param name="movie" value="http://www.ustream.tv/flash/viewer.swf"/> \
                       <embed flashvars="autoplay=false&amp;brand=embed&amp;cid=8670236&amp;v3=1" width="608" height="368" \
                              allowfullscreen="true" allowscriptaccess="always" id="utv720708" name="utv_n_353879" \
                              src="http://www.ustream.tv/flash/viewer.swf" type="application/x-shockwave-flash" /> \
                   </object>',
         'evo-2': '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="608" height="368" id="utv5864"> \
                       <param name="flashvars" value="autoplay=false&amp;brand=embed&amp;cid=8670247&amp;v3=1"/> \
                       <param name="allowfullscreen" value="true"/><param name="allowscriptaccess" value="always"/> \
                       <param name="movie" value="http://www.ustream.tv/flash/viewer.swf"/> \
                       <embed flashvars="autoplay=false&amp;brand=embed&amp;cid=8670247&amp;v3=1" width="608" height="368"  \
                              allowfullscreen="true" allowscriptaccess="always" id="utv5864" name="utv_n_839777"  \
                              src="http://www.ustream.tv/flash/viewer.swf" type="application/x-shockwave-flash" /> \
                   </object>'
      };


      var social_codes = {
        'evo-1': '<iframe width="608" scrolling="no" height="470" frameborder="0" style="border: 0px none transparent;" \
                   src="http://www.ustream.tv/socialstream/8670236"></iframe>',
        'evo-2': '<iframe width="608" scrolling="no" height="470" frameborder="0" style="border: 0px none transparent;" \
                   src="http://www.ustream.tv/socialstream/8670247"></iframe>'
      };

      $("#stream-container").html(embed_codes[stream]);
      $("#social-container").html(social_codes[stream]);
      return false;
   }

   $('.stream-selector').click(function() {
      return select_stream($(this).attr('id'))
   });

   select_stream(location.hash ? location.hash.substr(1) : 'evo-1');

   var help_text = $('#chat_box').html();
   $('#chat_toggle').toggle(function() {
      $(this).html('Switch to twitter feed.');
      $('#chat_box').html('<embed height="520" align="middle" width="274" pluginspage="http://www.adobe.com/go/getflashplayer" type="application/x-shockwave-flash" allowscriptaccess="always" quality="high" loop="false" play="true" flashvars="userID=180229250&amp;userName=evo2k&amp;hostName=http%3A%2F%2Fwww.stickam.com&amp;hostTwitterId=evo2k&amp;hostTwitterHash=#evo2010&amp;twitterDefaultMsg=&amp;titleColor=#26BFDE" name="TwitterClient" scale="noscale" bgcolor="#333333" src="http://player.stickam.com/flash/stickam/stickam_player.swf?app=hostTwitterClient.swf">');
   }, function() {
      $(this).html('Switch to twitter chat.');
      $('#chat_box').html(help_text);
      start_monitter();
   });
});

