$(document).ready(function(){
	$('#letstalk_popup').hide();	
	$('a.chatbtn').bind('mouseenter',function(){
  		_gaq.push(['_trackEvent', 'letstalk_mouse', window.location.pathname]);
		var newY = Math.round($(this).offset().top);
		//var newX = Math.round($(this).offset().left);	
		if (XZero) { 
			var newX=0; 
		} else{	
			var newX = Math.round($(this).offset().left);	
		}
		$('#letstalk_popup').hide();
		$('#letstalk_popup').removeClass('context');
		$('#letstalk_popup').addClass('footer');
		$('#letstalk_popup').css({'left' : newX, 'top' : newY}).fadeIn(400);			
		return false;
	});
	$('#letstalk_popup').bind('mouseleave',function(){
		$('#letstalk_popup').fadeOut(400);
	});
});