	//jquery code

	$(document).ready(function() {
			
	var content = $('#content');

	$(content).find('.u').each(
 

	// The "indIndex" is the
	// loop iteration index on the current element.
	function( intIndex ){


	// Bind the onclick event to simply alert the
	// iteration index value.
	var sHref = $( this).attr("href");
	var sUrl  = '/account/getstatus_ajax.asp?u=' + sHref.substring(3,(sHref.length));
	//$( this).bt( {hoverIntentOpts: { interval: 600, timeout: 60000 } , ajaxPath: sUrl});
	
	//$( this).tooltip({ 
    //bodyHandler: function() { 
    //    $.get(sUrl, { id : "myid" }, function(data) { /* do what with "data"? */; }, "html"); 
    //}, 
    //showURL: false 
//});

	$( this).simpletip({ 
	      onBeforeShow: function(){ 
       	this.load(sUrl);
	      } ,
	        fixed: true,
		    position: 'right',
		    baseClass: 'inlinett'

   });

	}


	);
	

	});
