	<!-- Original:  CodeLifter.com (support@codelifter.com) --><!-- Web Site:  http://www.codelifter.com --><!-- This script and many more are available free online at --><!-- The JavaScript Source!! http://javascript.internet.com -->
	
	var IE = document.all?true:false;
	if (!IE) document.captureEvents(Event.MOUSEMOVE)
	document.onmousemove = getMouseXY;
	var tempX = 0;
	var tempY = 0;
	
	function getMouseXY(e) {
		if (IE) { // grab the x-y pos.s if browser is IE
			tempX = event.clientX + document.documentElement.scrollLeft; // documentElement instead of body
			tempY = event.clientY + document.documentElement.scrollTop;
		} else {  // grab the x-y pos.s if browser is NS
			tempX = e.pageX;
			tempY = e.pageY;
		}  
		if (tempX < 0){tempX = 0;}
		if (tempY < 0){tempY = 0;} 
		
		document.getElementById('showMemberProfile').style.left = (tempX + 12)+'px';
		document.getElementById('showMemberProfile').style.top = tempY+'px';
		
		return true;
	}
	
	function showMemBio(s,m) {
		getProfile(m);
		getProfileTitle(m);
		if(s==1) document.getElementById('showMemberProfile').className = 'showMemberProfile-on';
		else document.getElementById('showMemberProfile').className = 'showMemberProfile-off';
	}
	
	function getProfile(m) {
		if (window.XMLHttpRequest) { // Mozilla, Safari, ...
			proC = new XMLHttpRequest();
		} else if (window.ActiveXObject) { // IE
			proC = new ActiveXObject("Microsoft.XMLHTTP");
		}
		url = "http://www.rhubba.com/_inc/inc.memberprofile.php?i=1&m="+m; 
		proC.onreadystatechange = showProfile;
		proC.open('GET', url, true);
		proC.send(null);
	}
	
	function getProfileTitle(m) {
		if (window.XMLHttpRequest) { // Mozilla, Safari, ...
			proT = new XMLHttpRequest();
		} else if (window.ActiveXObject) { // IE
			proT = new ActiveXObject("Microsoft.XMLHTTP");
		}
		url = "http://www.rhubba.com/_inc/inc.memberprofile.php?i=2&t="+m; 
		proT.onreadystatechange = showProfileTitle;
		proT.open('GET', url, true);
		proT.send(null);
	}
	
	function showProfile() {
		document.getElementById('SMP_CONTENT').innerHTML = '...';
		if(proC.readyState == 4) {
			img = "<span style=\"border:1px solid black; width: 100px; height: 120px; background: url('/_assets/img/comingsoon.gif') red; float: left; margin: 0 8px 5px 0; \"></span>";
			if(proC.status == 200) document.getElementById('SMP_CONTENT').innerHTML = img + proC.responseText;
			else document.getElementById('SMP_CONTENT').innerHTML = ':)';
		} else {
			document.getElementById('SMP_CONTENT').innerHTML = '...';
		}
	}
	
	function showProfileTitle() {
		document.getElementById('SMP_TITLE').innerHTML = "Member's Profile";
		if(proT.readyState == 4) {
			if(proT.status == 200) document.getElementById('SMP_TITLE').innerHTML = proT.responseText;
			else document.getElementById('SMP_TITLE').innerHTML = '=]';
		} else {
			document.getElementById('SMP_Title').innerHTML = 'Member\'s Profile';
		}
	}
	//  End -->
	
	