// JavaScript Document
var $auto_chat_width;
var $auto_chat_height;


if($.browser.msie){
	$auto_chat_width = "500px";
	$auto_chat_height = "340px";
}

else{
	$auto_chat_width = "525px";
	$auto_chat_height = "350px";
}

/*if(document.URL=="http://hosting.com.ve/" || document.URL=="http://hosting.com.ve/index.php"){
	$auto_chat_width = "360";
	$auto_chat_height = "300";
}*/
function temporizador(){
    //if($auto_chat_state){
       setTimeout("$auto_chat_state = false;$('.automatic_chat').colorbox().click();", $auto_chat_time);
    //}
}

$(document).ready(
	function(){
	var ifr=true;
	//if(document.URL=="http://hosting.com.ve/" || document.URL=="http://hosting.com.ve/index.php"){var ifr=false;}
   $(".automatic_chat").colorbox({
			href:"chat/index.php",
			transition:"elastic",
			//slideshow:false,
			//width:$auto_chat_width, 
			//height:$auto_chat_height, 
			//iframe:ifr,
			speed:620,
			opacity:0.75,
			//rel:false,
			//title: ""
		});
		temporizador();
		$(".automatic_chat").colorbox().bind('cbox_closed', function(){
			$auto_chat_state = false;
			$.get('chat/?auto_chat_state=stop');
		});

	}

);




