function displayTip(obj) {
	var element = document.getElementById(obj.id + "tip");
	element.style.display = "block";

	var xy = YAHOO.util.Dom.getXY(obj);

	xy[0] += 20;
	xy[1] -= 60;

	YAHOO.util.Dom.setXY(element, xy); 	 
}

function hideTip(obj) {
	document.getElementById(obj.id + "tip").style.display = "none";
}


//// YUI Namespace
//YAHOO.namespace('orderflow');



///* *** IPG *** */
//YAHOO.orderflow.Flow = {
//init:function(){
//	// Add tooltips functions to all "showToolTip" images
//	//YAHOO.orderflow.Tooltips.Add();


//}
//};

///* *** IPG Modal dialogs *** */
//YAHOO.orderflow.Tooltips = {
//	add:function() {
//		var toolTipImages = YAHOO.util.Dom.getElementsByClassName("showToolTip", "img"), toolTip;
//		var i = 0;

//		// Adjust all figure elements to the width of the containing image
//		for ( i = 0; i < toolTipImages.length; ++i ) {
//			toolTip = toolTipImages[i].id + "tip";
//			
//			
//			image = figure.getElementsByTagName("img")[0];
//			figure.style.width = image.clientWidth + "px";
//		}
//	}
//};

// Init IPG
//YAHOO.util.Event.onDOMReady(YAHOO.orderflow.Flow.init);


