
jQuery(document).ready(function() {

	$(".text_image").hoverIntent({
		sensitivity: 3, 
		interval: 200, 
		over: slideIn, 
		timeout: 500, 
		out: slideOut
	});

	        //$(".content0").click(function() { alert(html); });
        var html = $.ajax({ url: "/current_listed_ips.php?s=0",  async: false }).responseText;
        $(".content0").append(html);
	$(".slideToggle").text("touch me");
	
	function slideIn() {
		//$(".slideToggle").fadeOut("slow");
		$(".content0").fadeIn("slow");		
	}
 
	function slideOut() { 
		$(".content0").fadeOut("slow");
		//$(".slideToggle").fadeIn("slow");
	}


});


