function virtual(str){
	now = new Date();
	$.ajax({
	type:"GET",
	url: "" + str.replace(".php", "_jp.php"),
	data :"ru=" + location.href + "&crdt=" + now.getTime(),
	success: function(msg,status){
		if ( str.indexOf( "submenu" ) != -1 ) {
			$("#j_submenu").html(msg);
		} else if ( str.indexOf( "pankuzu" ) != -1 ) {
			$("#j_pankuzu").html(msg);
		} else if ( str.indexOf( "minitag" ) != -1 ) {
			$("#j_minitag").html(msg);
		} else if ( str.indexOf( "tag" ) != -1 ) {
			$("#j_tag").html(msg);
		} else if ( str.indexOf( "ichigo_tit" ) != -1 ) {
			$("#j_ichigo_tit").html(msg);
		} else  {
			$("#j").html(msg);
		} 
	}
	});
}

function virtual4top(str){
	now = new Date();
	$.ajax({
	type:"GET",
	url: "" + str,
	data :"ru=" + location.href + "&crdt=" + now.getTime(),
	success: function(msg,status){
		$("#entry_top").html(msg);
	}
	});
}

