(function($){
var menuBtn='#litbBtn';
var menuBody='#litbCon2';
var menuTimeout=2000;
var menuHide=true;
$.controlMenu=function(){
if(menuHide){
$(menuBody).css('display','none');
$(menuBtn).css('backgroundPosition','0 -159px');}else{
$(menuBody).css('display','block');
$(menuBtn).css('backgroundPosition','0 -175px');}};
$.fn.magicMenu=function(settings){
return this.each(function(){
var el=$(this);
$(menuBtn,el).mouseover(function(){menuHide=false;$.controlMenu();});
$(menuBody,el).mousemove(function(){menuHide=false;setTimeout('$.controlMenu()',menuTimeout);});
$(menuBody,el).mouseout(function(){menuHide=true;setTimeout('$.controlMenu()',menuTimeout);});});};
var liveBox='#live_box';
var liveBoxCloseBtn='.close_btn';
$.fn.liveBox=function(settings){
return this.each(function(){
var el=$(this);
el.click(function(){$(liveBox).toggle();return false;});
$(liveBox+' '+liveBoxCloseBtn).click(function(){$(liveBox).hide();return false;});});};})(jQuery);
