var $auto_chat_width;
var $auto_chat_height;

$(document).ready(function(){
    if($.browser.msie){
        $auto_chat_width = "480px";
        $auto_chat_height = "310px";
    }
    else{
        $auto_chat_width = "460px";
        $auto_chat_height = "300px";
    }
    $.getJSON('chat/?action=get', function(data) {
         if(data['auto_chat_state']){
            $(".automatic_chat").colorbox({
                href:"chat/",
                transition:"elastic",
                slideshow:false,
                width:$auto_chat_width,
                height:$auto_chat_height,
                iframe:true,
                speed:620,
                opacity:0.75,
                rel:false,
                title: ""
            });
            //$('.automatic_chat').colorbox().click();
            $(".automatic_chat").colorbox().bind('cbox_closed', function(){
                data['auto_chat_state'] = false;
                $.get('chat/?auto_chat_state=stop');
            });
            if(data['auto_chat_state']){
                setTimeout("$('.automatic_chat').colorbox().click();", parseInt(data['auto_chat_time']));
            }
        }
    });
});







