var Room=function(){return this.initialize.apply(this,arguments);};Room.prototype={defaults:{container:'#room'},initialize:function(o){this.o=$.extend(this.defaults,o);this.container=$(this.o.container);this.display=this.container.find('.display');this.hotspots=this.display.find('.hotspots').hotspots().find('.hotspot');_.bindAll(this,'render');this.render();},render:function(){var self=this;var content=this.display.add('#footer').hide();$(window).load(function(){content.fadeIn(800,'linear');});}};$(function(){var room=new Room();$('#tweets').TwitterNewsBar({tweet_opts:{count:6}});$('#featured-items li').hover(function(){$(this).addClass('hover').find('.description').stop().css('opacity',0).animate({opacity:1},'fast');},function(){$(this).find('.description').stop().css('opacity',1).animate({opacity:0},'fast',function(){$(this).closest('li').removeClass('hover');});});});
