/* Copyright © 2010, Jacob Blommestein
All rights reserved. This file may not be redistributed or used in whole or significant part without express written 
permission. */
$(document).ready(function(){window.active="left";window.IDcontentleft=$("#contentleft");window.IDcontentright=$("#contentright");window.IDtableft=$("#tableft");window.IDtabright=$("#tabright");window.IDtableft.click(function(){changeTab("left")});window.IDtabright.click(function(){changeTab("right")});window.liveLoaded=false});function changeTab(b){if(b==window.active){return}window.active=b;if(b=="left"){window.IDtableft.removeClass("inactiveTab").addClass("activeTab");window.IDtabright.removeClass("activeTab").addClass("inactiveTab");window.IDcontentright.hide();window.IDcontentleft.show()}else{window.IDtabright.removeClass("inactiveTab").addClass("activeTab");window.IDtableft.removeClass("activeTab").addClass("inactiveTab");window.IDcontentleft.hide();window.IDcontentright.show();if(!window.liveLoaded){window.liveLoaded=true;window.IDcontentright.prepend('<iframe src="http://webchat.'+irchost+'/?channels='+channels+'" width="631" height="437" frameborder="0"></iframe><a id="liveguide" onclick="$(\'#livehelp\').show();">Please Read</a>')}}};