this.project_name = function(){	
	$("a.project_name").hover(function(e){	
		//int_x = document.getElementById('floating_title').offsetLeft;
		//int_y = document.getElementById('floating_title').offsetTop;
		//alert(int_x);
		this.t = this.title;
		this.title = "";									  
		$("#floating_title").append("<span id='project_name'>"+ this.t +"</span>");
		$("#project_name")
			//.css("top","0px")
			//.css("left","0px")
			.fadeIn("fast");		
    },
	function(){
		this.title = this.t;		
		$("#project_name").remove();
    });			
};
$(document).ready(function(){
	project_name();
});