$('document').ready(function(){
	$('.popit').click(function(e){
		if($('#' + this.name).css("display") == 'none'){
			var top = e.pageY - $('#' + this.name).height();
			var left = e.pageX + 25;
			
			$('#' + this.name).css({top: top, left: left});
			$('#' + this.name).fadeIn("slow");
		}
		else{
			$('#' + this.name).fadeOut("slow");
		}
	});
	
	$('.r_popit').click(function(e){
		if($('#' + this.name).css("display") == 'none'){
			var top = e.pageY - $('#' + this.name).height();
			var left = e.pageX - 645;
			
			$('#' + this.name).css({top: top, left: left});
			$('#' + this.name).fadeIn("slow");
		}
		else{
			$('#' + this.name).fadeOut("slow");
		}
	});
	
	$('.wordbubble').click(function(){
		$('.wordbubble').fadeOut("slow");
	});
});