$(document).ready(function () {
	$("#foottip a").tooltip({ 
		bodyHandler: function() { 
			return $($(this).attr("href")).html(); 
		}, 
		showURL: false ,
		extraClass: "fancy"
	});
});


$(document).ready(function () {
	$('#aacd a').tooltip({ 
		delay:0,
		fade: 500, 
		showURL: false, 
		bodyHandler: function() { 
      vale = $(this).attr('class');
      vale = vale.replace("st_head3", "");
      vale = vale.replace(/[\s]+/, "");
			return $("<img/>").attr("src", $("#"+vale).val()); 
		} 
	});

  var pic1 = new Array();
  ip = 0;
  $.each($('#aacd a'), function () {
    vale = $(this).attr('class');
    vale = vale.replace("st_head3", "");
    vale = vale.replace(/[\s]+/, "");
    pic1[ip] = new Image();
		pic1[ip].src = $("#"+vale).val(); 
    ip++;
  });
});