 
		//<script>
		
		settings = {
			strBaseURL: 'http://www.intermodal-events.com/page.cfm'
		}; 
		var tipData = {
			
				infoBalloon_1:{
					tipType: 'hover',
					tipDesign: 0
				}
			,
				infoBalloon_2:{
					tipType: 'click',
					tipDesign: 0
				}
			,
				infoBalloon_3:{
					tipType: 'click',
					tipDesign: 0
				}
			
		}
		function closeToolTip(){
			jQuery(document).trigger('hideCluetip');
		}
		jQuery(document).ready(function(){ 
			/*jQuery(document).click(function(){
				closeToolTip();
			});*/
			jQuery('.cluetip-link').each(function(){
				objTip = jQuery(this);
				strTipID = objTip.attr('name');
				
				if (typeof tipData[strTipID] != 'undefined'){
					strTipURL = settings.strBaseURL + '?jaxuid=' + Math.random() + '&goajax=getBalloonInfo&infID=' + strTipID;
					strTipType = tipData[strTipID].tipType;
					strTipDesign = (tipData[strTipID].tipDesign > 0) ? tipData[strTipID].tipDesign:'default';
					
					objTip.addClass('cluetip-link-' + strTipType);
					objTip.attr({rel: strTipURL});

					booSticky = false;
					booShowTitle = false;
					strClosePosition = 'top';
					if (strTipType == 'click'){
						//booSticky = true;
					}
					objTip.cluetip({
						activation: strTipType,
						sticky: booSticky,
						showTitle: booShowTitle,
						closePosition: strClosePosition,
						arrows: true,
						cluezIndex: 999
					});
				}
			});
		});
		// Very good object viewer review this for debugger
		function lookdeep(obj){
			var arrArray = [], tem;
			for(var p in obj){
				if(obj.hasOwnProperty(p)){
					tem = obj[p];
					if(tem && typeof tem == 'object'){
						arrArray[arrArray.length]= p+':{ '+arguments.callee(tem).join(', ')+'}';
					}else{
						arrArray[arrArray.length]= [p+':'+tem.toString()];
					}
				}
			}
			return arrArray;
		}
		
		//alert(lookdeep(tipData).join('\n'))
	