/**
 * @author mememe
 *  */
/*
$(document).ready(function(){
	
	$(".profileHover").hover(function() {
        $(".profilebox").remove();		
		$(this).removeClass(".profileHover");
		$(this).append($("<div class='profilebox'><span id='loading'><img src='/images/icons/loading.gif' /></span></div>"));
		$(".profilebox").css("top",($(this).offset().top-200) + "px")
				.css("left",($(this).find("img").offset().left -500) + "px");

		$.Tache.Get({
  type: "GET",
  url: "/account/profile/uid/"+$(this).attr('rel'),
  success: function(data){
  	$(".profilebox").html(data);
			$("#loading").remove();
			$(".profilebox")
				.css("padding", '15px')
				.css("width", '210px')
				.css("height", '69px')
				.css("background", 'url(/images/layout/profilebubble.gif) no-repeat');
	  }
});


	},
	function() {
        $(".profilebox").remove();		
		$(this).addClass(".profileHover");
	});		
});
*/

