

function doSomething() {
	var posx = 0;
	var posy = 0;
	var e = window.event;
	if (e.pageX || e.pageY) 	{
		posx = e.pageX;
		posy = e.pageY;
	}
	else if (e.clientX || e.clientY) 	{
		posx = e.clientX + document.body.scrollLeft
			+ document.documentElement.scrollLeft;
		posy = e.clientY + document.body.scrollTop
			+ document.documentElement.scrollTop;
	}
	$("#3stars_follower").css("top", posy);
	$("#3stars_follower").css("left", posx);
	$("#3stars_follower").css("display", "block");
	// posx and posy contain the mouse position relative to the document
	// Do something with this information
}

function akado_popup(evt) {
	$("#follower").slideDown("slow");
}

function akado_popup_hide(evt) {
	$("#follower").slideUp("slow");
}

