var tooltips = function () {

	var setTargetEvent = function(tt, targetId){
		alert("over");
		$("#"+targetId).mouseover( function() { showtt(tt); });
	}
                                
	var showtt = function(tt, targetId) {
                
                var ttE = $("#"+tt);
                    ttE.style.left = "10px";
		    ttE.style.display = "block";
        }
}

