$(document).ready( function(){	
	//agrega la ventana de chat a los links
	var LigaChat="<a class='hidden' id=\"_lpChatBtn3\" href='http://server.iad.liveperson.net/hc/39769008/?cmd=file&file=visitorWantsToChat&site=39769008&byhref=1&imageUrl=http://www.lomas-travel.com/images/livehelp&SESSIONVAR!skill=Lomas Travel Services' target='chat39769008'  onClick=\"lpButtonCTTUrl = 'http://server.iad.liveperson.net/hc/39769008/?cmd=file&file=visitorWantsToChat&site=39769008&imageUrl=http://www.lomas-travel.com/images/livehelp&referrer='+escape(document.location); lpButtonCTTUrl = (typeof(lpAppendVisitorCookies) != 'undefined' ? lpAppendVisitorCookies(lpButtonCTTUrl) : lpButtonCTTUrl); window.open(lpButtonCTTUrl,'chat39769008','width=472,height=320,resizable=yes');return false;\" >Live Support</a>";
	
	//live chat, para verificar si esta offline
	/************************************************/
	$("#contenedor").append(LigaChat);
	$(".liveSupport").live('click',function(e){	
		e.preventDefault();

		$.ajax({
			   cache: false,
			   async: false,
			   type: "POST",
			   url: "http://www.maromaparadise.com/marina_maromaparadise/php/verifica_livehelp.php",
			   success: function(e){
				 if(e.length==4)
					{
						$("#contenedor").prepend("<div id='live_false' class='hidden'></div>");
						$("#live_false").append(e);
					}
			   }
		});
	
		
		var dato_live = $("#live_false").text();
		if(  dato_live=='bien' )
		{
			alert("Live Help Unavailable / Chat no disponible");
			document.location.href="http://www.lomas-travel.com/contactus/index.php";
		}
		else
			$("#_lpChatBtn3").click();
	});
	//fin del codigo del live chat
	/*****************************************************/
	
	
});