jQuery(function($) {
	jQuery.post("/other/HeroList/template_left.html",
	   function(data){
		  jQuery("#herolistbox").html(data);
		  //alert("Data Loaded: " + data);
		  goto(130);
	   }
	);
})

function goto(id){
	if (id != '') {
		jQuery.post("/other/HeroList/getdata.php",
			   { no: id},
			   function(data){
				  jQuery("#top100list").html(data);
				  //alert("Data Loaded: " + data);
			   }
		); 
	}
}