function slideBook() {	$.ajax({		type: "GET",
		url: sSiteAbsUrl+"slider.php",
		dataType: "html",
		success: function(htmlString){			$("body").append("<div id='book_temp_div' style='display:none;'>"+htmlString+"</div>");
			$("#book_left").html($("#left",$("#book_temp_div")).html());
			$("#book_right").html($("#right",$("#book_temp_div")).html());
			$("#book_temp_div").remove();
		},
		error: function(XMLHttpRequest, textStatus, errorThrown) {			alert("Ошибка AJAX!");
		}
	});
}
