1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8405,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9403,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492,9493,9494,9495,9496,9497,9498,9499,9500,9501,9502,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,9515,9516,9517,9518,9519,9520,9521,9522,9523,9524,9525,9526,9527,9528,9529,9530,9531,9532,9533,9534,9535,9536,9537,9538,9539,9540,9541,9542,9543,9544,9545,9546,9547,9548,9549,9550,9551,9552,9553,9554,9555,9556,9557,9558,9559,9560,9561,9562,9563,9564,9565,9566,9567,9568,9569,9570,9571,9572,9573,9574,9575,9576,9577,9578,9579,9580,9581,9582,9583,9584,9585,9586,9587,9588,9589,9590,9591,9592,9593,9594,9595,9596,9597,9598,9599,9600,9601,9602,9603,9604,9605,9606,9607,9608,9609,9610,9611,9612,9613,9614,9615,9616,9617,9618,9619,9620,9621,9622,9623,9624,9625,9626,9627,9628,9629,9630,9631,9632,9633,9634,9635,9636,9637,9638,9639,9640,9641,9642,9643,9644,9645,9646,9647,9648,9649,9650,9651,9652,9653,9654,9655,9656,9657,9658,9659,9660,9661,9662,9663,9664,9665,9666,9667,9668,9669,9670,9671,9672,9673,9674,9675,9676,9677,9678,9679,9680,9681,9682,9683,9684,9685,9686,9687,9688,9689,9690,9691,9692,9693,9694,9695,9696,9697,9698,9699,9700,9701,9702,9703,9704,9705,9706,9707,9708,9709,9710,9711,9712,9713,9714,9715,9716,9717,9718,9719,9720,9721,9722,9723,9724,9725,9726,9727,9728,9729,9730,9731,9732,9733,9734,9735,9736,9737,9738,9739,9740,9741,9742,9743,9744,9745,9746,9747,9748,9749,9750,9751,9752,9753,9754,9755,9756,9757,9758,9759,9760,9761,9762,9763,9764,9765,9766,9767,9768,9769,9770,9771,9772,9773,9774,9775,9776,9777,9778,9779,9780,9781,9782,9783,9784,9785,9786,9787,9788,9789,9790,9791,9792,9793,9794,9795,9796,9797,9798,9799,9800,9801,9802,9803,9804,9805,9806,9807,9808,9809,9810,9811,9812,9813,9814,9815,9816,9817,9818,9819,9820,9821,9822,9823,9824,9825,9826,9827,9828,9829,9830,9831,9832,9833,9834,9835,9836,9837,9838,9839,9840,9841,9842,9843,9844,9845,9846,9847,9848,9849,9850,9851,9852,9853,9854,9855,9856,9857,9858,9859,9860,9861,9862,9863,9864,9865,9866,9867,9868,9869,9870,9871,9872,9873,9874,9875,9876,9877,9878,9879,9880,9881,9882,9883,9884,9885,9886,9887,9888,9889,9890,9891,9892,9893,9894,9895,9896,9897,9898,9899,9900,9901,9902,9903,9904,9905,9906,9907,9908,9909,9910,9911,9912,9913,9914,9915,9916,9917,9918,9919,9920,9921,9922,9923,9924,9925,9926,9927,9928,9929,9930,9931,9932,9933,9934,9935,9936,9937,9938,9939,9940,9941,9942,9943,9944,9945,9946,9947,9948,9949,9950,9951,9952,9953,9954,9955,9956,9957,9958,9959,9960,9961,9962,9963,9964,9965,9966,9967,9968,9969,9970,9971,9972,9973,9974,9975,9976,9977,9978,9979,9980,9981,9982,9983,9984,9985,9986,9987,9988,9989,9990,9991,9992,9993,9994,9995,9996,9997,9998,9999,10000 "Strong Motion. The critically acclaimed second novel from the author of 'The Corrections'. 'Strong Motion' is the brilliant, bold second novel from the bestselling and critically acclaimed author of 'The Corrections' and 'Freedom'. Louis Holland arrives in Boston in a spring of strange happenings - earthquakes strike the city, and the first one kills his grandmother. During a bitter feud over the inheritance Louis falls in love with Renee Seitchek, a passionate and brilliant seismologist, whose discoveries about the origin of the earthquakes complicate everything. Potent and vivid, 'Strong Motion' is a complex story of change from the forceful imagination of Jonathan Franzen.","The Invisible Man. This masterpiece of science fiction is the fascinating story of Griffin, a scientist who creates a serum to render himself invisible, and his descent into madness that follows.",Setting Free the Bears / The Water-Method Man / The 158-Pound Marriage.,"Accordion Crimes. Pulitzer Prize-winning author Annie Proulx brings the immigrant experience to life in this stunning novel that traces the ownership of a simple green accordion. E. Annie Proulx's Accordion Crimesis a masterpiece of storytelling that spans a century and a continent. Proulx brings the immigrant experience in America to life through the eyes of the descendants of Mexicans, Poles, Africans, Irish-Scots, Franco-Canadians and many others, all linked by their successive ownership of a simple green accordion. The music they make is their last link with the past--voice for their fantasies, sorrows and exuberance. Proulx's prodigious knowledge, unforgettable characters and radiant language make Accordion Crimesa stunning novel, exhilarating in its scope and originality.","The Matlock Paper. James Barbour Matlock is a Vietnam veteran and college professor - but now the US government have an assignment for him. They want him to investigate what seems to be a large-scale dope and prostitution business; and they'll go to any lengths to find the answers they need. cares for most are under threat. Would he have accepted the job if he'd known just what it would mean? the perfect man for the job - for a reason that is deadly, violent and extremely disturbing...","The First Four Years (Little House #9). Laura Ingalls Wilder is beginning life with her new husband, Almanzo, in their own little house. Laura is a young pioneer wife now, and must work hard with Almanzo, farming the land around their home on the South Dakota prairie. Soon their baby daughter, Rose, is born, and the young family must face the hardships and triumphs encountered by so many American pioneers. And so Laura Ingalls Wilder's adventure as a little pioneer girl ends, and her new life as a pioneer wife and mother begins. The nine Little House books have been cherished by generations of readers as both a unique glimpse into America's frontier past and a heartwarming, unforgettable story. Correlates to the Common Core State Standards in English Language Arts",The Stress-free Habit: Powerful Techniques for Health & Longevity from the Andes Yucatan & the Far East.,Absolutely Mahvelous.,Red Message.,"The Pure in Heart (Simon Serrailler #2). A little boy is snatched as he stands with his satchel at the gate of his home, waiting for his lift to school. Susan Hill brilliantly creates a community, with detail so sharp and convincing that readers feel that these people are their neighbours and friends. And that terror and evil are in their midst ...",Madame Je-Sais-Tout.,"Great Short Works of Fyodor Dostoevsky. The short works of Dostoevsky exist in the very large shadow of his astonishing longer novels, but they too are among literature's most revered works. The Gambler chronicles Dostoevsky's own addiction, which he eventually overcame. Many have argued that Notes from Underground contains several keys to understanding the themes of the longer novels, such as Crime and Punishmentand The Idiot. Great Short Works of Fyodor Dostoevskyincludes: Notes from Underground The Gambler A Disgraceful Affair The Eternal Husband The Double White Nights A Gentle Creature The Dream of a Ridiculous Man",Classroom Interactions as Cross-Cultural Encounters: Native Speakers in EFL Lessons.,The Origins of Life: From the Birth of Life to the Origin of Language.,"The Elf Queen of Shannara (Heritage of Shannara #3). ""Find the Elves and return them to the world of Men!"" the shade of the Druid Allanon had ordered Wren. It was clearly an impossible task. The Elves had been gone from the Westland for more than a hundred years. There was not even a trace of their former city of Arborlon left to mark their passing. No one in the Esterland knew of them -- except, finally, the Addershag. The blind old woman had given instructions to find a place on the coast of the Blue Divide, build a fire, and keep it burning for three days. ""One will come for you."" Tiger Ty, the Wing Rider, had come on his giant Roc to carry Wren and her friend Garth to the only clear landing site on the island of Morrowindl, where, he said, the Elves might still exist, somewhere in the demon-haunted jungle. Now she stood within that jungle, remembering the warning of the Addershag: ""Beward, Elf-girl. I see danger ahead for you . . . and evil beyond imagining."" It had proved all too true. Wren stood with her single weapon of magic, lis","The Dance of Intimacy: A Woman's Guide to Courageous Acts of Change in Key Relationships. In The Dance of Intimacy,the bestselling author of The Dance of Angeroutlines the steps to take so that good relationships can be strengthened and difficult ones can be healed. Taking a careful look at those relationships where intimacy is most challenged--by distance, intensity, or pain--she teaches us about the specific changes we can make to achieve a more solid sense of self and a more intimate connectedness with others. Combining clear advice with vivid case examples, Dr. Lerner offers us the most solid, helpful book on intimate relationships that both women and men may ever encounter.","The Little House. A contemporary psychological thriller in the style of Ruth Rendell, from one of today's most versatile and compelling storytellers. It was easy for Elizabeth. She married the man she loved, bore him two children and made a home for him which was the envy of their friends. It was harder for Ruth. She married Elizabeth's son and then found that, somehow, she could never quite measure up... Isolation, deceit and betrayal fill the gaps between the two individual women and between their different worlds. In this complex thriller, Philippa Gregory deploys all her insight into what women want and what women fear, as Ruth confronts the shifting borders of her own sanity. Laying bare the comfortable conventions of rural England, this spine-tingling novel pulses with suspense until the whiplash double-twist of the denouement.",Extraordinary Popular Delusions & the Madness of Crowds (Great Minds).,Bugs for Lunch/Insectos para el almuerzo.,Shame of Man (Geodyssey #2).,"Whores for Gloria. From the acclaimed author of The Rainbow Stories, The Ice Shirt, and Fathers and Crowscomes this fever dream of a novel about an alcoholic Vietnam veteran, Jimmy, who devotes his government check and his waking hours to the search for a beautiful and majestic street whore, a woman who may or may not exist save in Jimmy's rambling dreams. Gloria's image seems distilled from memory and fantasy and the fragments of whatever Jimmy can buy from the other whores: their sex, their stories--all the unavailing dreams of love and salvation among the drinkers and addicts who haunt San Francisco's Tenderloin District.","As Eve Said to the Serpent: On Landscape Gender and Art. To Rebecca Solnit, the word ""landscape"" implies not only literal places, but also the ground on which we invent our lives and confront our innermost troubles and desires. The organic world, to Solnit, gives rise to the social, political, and philosophical landscapes we inhabit. As Eve Said to the Serpentskillfully weaves the natural world with the realm of art--its history, techniques, and criticism--to offer a remarkable compendium of Solnit's research and ruminations.The nineteen pieces in this book range from the intellectual formality of traditional art criticism to highly personal, lyrical meditations. All are distinguished by Solnit's vivid, original style that blends imaginative associations with penetrating insights. These thoughts produce quirky, intelligent, and wryly humorous content as Solnit ranges across disciplines to explore nuclear test sites, the meaning of national borders, deserts, clouds, and caves--as well as ideas of the feminine and the sublime as they relate to","Cuba 15. Violet Paz has just turned 15, a pivotal birthday in the eyes of her Cuban grandmother. Fifteen is the age when a girl enters womanhood, traditionally celebrating the occasion with a quinceanero. But while Violet is half Cuban, she's also half Polish, and more importantly, she feels 100% American. Except for her zany family's passion for playing dominoes, smoking cigars, and dancing to Latin music, Violet knows little about Cuban culture, nada about quinces, and only tidbits about the history of Cuba. So when Violet begrudgingly accepts Abuela's plans for a quinceanero-and as she begins to ask questions about her Cuban roots-cultures and feelings collide. The mere mention of Cuba and Fidel Castro elicits her grandparents' sadness and her father's anger. Only Violet's aunt Luz remains open-minded. With so many divergent views, it's not easy to know what to believe. All Violet knows is that she's got to form her own opinions, even if this jolts her family into unwanted confrontations. Af","Little Children. Tom Perrotta's thirtyish parents of young children are a varied and surprising bunch. There's Todd, the handsome stay-at-home dad dubbed ""The Prom King"" by the moms at the playground, and his wife, Kathy, a documentary filmmaker envious of the connection Todd has forged with their toddler son. And there's Sarah, a lapsed feminist surprised to find she's become a typical wife in a traditional marriage, and her husband, Richard, who is becoming more and more involved with an internet fantasy life than with his own wife and child. And then there's Mary Ann, who has life all figured out, down to a scheduled roll in the hay with her husband every Tuesday at nine P.M. They all raise their kids in the kind of quiet suburb where nothing ever seems to happen - until one eventful summer, when a convicted child molester moves back to town, and two parents begin an affair that goes further than either of them could ever have imagined.","The Oresteia: Agamemnon The Libation Bearers The Eumenides. Alternate cover edition can be found  In the Oresteia--the only trilogy in Greek drama which survives from antiquity--Aeschylus took as his subject the bloody chain of murder and revenge within the royal family of Argos. Moving from darkness to light, from rage to self-governance, from primitive ritual to civilized institution, their spirit of struggle and regeneration becomes an everlasting song of celebration.","Pastoralia. From an author named by The New Yorker as one of the ""20 Best American Fiction Writers Under 40,"" a hilarious, inventive, unforgettable collection of stories. His remarkable first collection of stories was hailed by The New York Times as ""the debut of an exciting new voice in fiction."" Garrison Keillor called him wildly funny, pure, generous--all that a great humorist should be."" With this new collection, George Saunders takes us even further into the shocking, uproarious and oddly familiar landscape of his imagination. The stories in Pastoralia are set in a slightly skewed version of America, where elements of contemporary life have been merged, twisted, and amplified, casting their absurdity-and our humanity-in a startling new light. Whether he writes a gothic morality tale in which a male exotic dancer is haunted by his maiden aunt from beyond the grave, or about a self-help guru who tells his followers his mission is to discover who's been ""crapping in your oatmeal,"" Saunders's sto","Tyler's Ultimate: Brilliant Simple Food to Make Any Time. As his millions of fans know from watching him on Food Network, Tyler likes to rock the kitchen with big, bold flavors and sophisticated yet accessible fare. Whether you're dishing up a family favorite like spaghetti and meatballs or pulling out all the stops with a succulent tenderloin steak topped with spicy crab salad, Tyler Florence believes every meal can-and should-be the ultimate dining experience. At last, in Tyler's Ultimate, he shows us how to get these spectacular results in much less time. Tyler believes the ultimate meal brings together good food, good friends, and good times-with Tyler's Ultimateas your guide you can elevate any gathering to a cause for celebration and every family meal to an occasion worth savoring. In his travels around the world for his Food Network show, he's sampled countless versions of classic dishes, taking an ideal technique from one, a perfect ingredient from another. Here he gives you the best of the best. Make no mistake: Tyler's approach here","Lost Prophet: The Life and Times of Bayard Rustin. One of the most important figures of the American civil rights movement, Bayard Rustin taught Martin Luther King Jr. the methods of Gandhi, spearheaded the 1963 March on Washington, and helped bring the struggle of African Americans to the forefront of a nation's consciousness. But despite his incontrovertibly integral role in the movement, the openly gay Rustin is not the household name that many of his activist contemporaries are. In exploring history's Lost Prophet, acclaimed historian John D'Emilio explains why Rustin's influence was minimized by his peers and why his brilliant strategies were not followed, or were followed by those he never meant to help.","Long Way Round: Chasing Shadows Across the World. It started as a daydream. Poring over a map of the world at home one quiet Saturday afternoon, Ewan McGregor -- acclaimed actor and self-confessed bike nut -- noticed that it was possible to ride all the way round the world, with just one short hop across the Bering Strait from Russia to Alaska. It was a revelation he couldn't get out of his head. So he picked up the phone and called his fellow actor-slash-biker friend Charley Boorman and told him it was time to hit the road.... Long Way Round Beginning in London, Ewan and Charley chased their shadows through Europe, the Ukraine, Kazakhstan, Mongolia, and Russia; across the Pacific to Alaska; then down through Canada all the way to New York. Long Way Roundis the result of their four-month, 20,000-mile joyride. Featuring original diary entries, travel maps, mileage charts, and dozens of photographs, this is a freewheeling, fully charged, and uproariously entertaining book about two world-famous individuals who chose the road not taken..",The Liberated Bride.,"A Room of One's Own. In A Room of One's Own, Virginia Woolf imagines that Shakespeare had a sister: a sister equal to Shakespeare in talent, equal in genius, but whose legacy is radically different. This imaginary woman never writes a word and dies by her own hand, her genius unexpressed. But had she been allowed to create, urges Woolf, she would have reached the same heights as her immortal sibling. In this classic essay, Virginia Woolf takes on the establishment, using her gift of language to dissect the world around her and give a voice to those who have none. Her message is simple: A woman must have an income and a room of her own in order to have the freedom to create.","Banker. A classic mystery from Dick Francis, the champion of English storytellers. Tim Ekaterin has a lot of money. Unfortunately, it is other people's, and it is his job to invest it wisely, or get fired. And right now he's taken a big risk: using PS5 million to stud a champion racing stallion. When the resulting foals have birth defects, Tim is worried and decides that there may be something else going on at the stables. His suspicions are confirmed when one of those helping with the horses is murdered. Now it's not just about money, but about life and death. Determined to get to the bottom of why anyone would do this, Tim puts himself in danger's path to discover the truth . . . Praise for Dick Francis: 'As a jockey, Dick Francis was unbeatable when he got into his stride. The same is true of his crime writing' Daily Mirror 'Dick Francis's fiction has a secret ingredient - his inimitable knack of grabbing the reader's attention on page one and holding it tight until the very end' Sunday Tel","Introducing Camus. Albert Camus, winner of the Nobel Prize for Literature in 1957, always refused the existentialist label with which he is usually associated. This book traces the development of his life and work.","Tinsel. In the glittering world of Hollywood peopled with stars, hopefuls, and hasbeens, hungry and cunning producers, starlets, moguls, and whores are willing to sacrifice everything for an elusive place at the top.","How to Write Science Fiction & Fantasy. Writing for science fiction and fantasy audiences can be the most exciting writing you've ever done. Your readers are curious and want you to take them beyond """"The Fields We Know,"""" to help them explore the infinite boundaries of the worlds you create. Here, science fiction great Orson Scott Card shares his expertise in these genres. You'll learn: - What is and isn't science fiction and fantasy, and by whose standards -- and where your work fits in. - How to build, populate, and dramatize a credible, inviting world your readers will want to explore. - How to use the MICE quotient -- milieu, idea, character, event -- to structure a successful story. - Where the markets are and how to reach them to get published. The knowledge and skills you gain through this book will help you effectively lead your readers into the strangeness you create -- one tantalizing step at a time.",Going Potty.,"Orwell in Spain: The Full Text of Homage to Catalonia with Associated Articles Reviews and Letters from the Complete Works of George Orwell. The volume collects together, for the first time ever, Orwell's writings on his experience of the Spanish Civil War - the chaos at the Front, the futile young deaths for what became a confused cause, the antique weapons and the disappointment many British Socialists felt on arriving in Spain to help. ORWELL IN SPAIN includes the complete text of HOMAGE TO CATALONIA.","Indiscretions of Archie. It wasn't Archie's fault really. It's true he went to America and fell in love with Lucille, the daughter of a millionaire hotel proprietor and if he did marry her--well, what else was there to do? From his point of view, the whole thing was a thoroughly good egg; but Mr. Brewster, his father-in-law, thought differently, Archie had neither money nor occupation, which was distasteful in the eyes of the industrious Mr. Brewster; but the real bar was the fact that he had once adversely criticised one of his hotels. Archie does his best to heal the breach; but, being something of an ass, genus priceless, he finds it almost beyond his powers to placate ""the man-eating fish"" whom Providence has given him as a father-in-law.","On Her Majesty's Secret Service (James Bond #11). A Lancia Spyder with its hood down tore past him, cut in cheekily across his bonnet and pulled away, the sexy boom of its twin exhausts echoing back at him. It was a girl driving, a girl with a shocking pink scarf tied round her hair. And if there was one thing that set James Bond really moving, it was being passed at speed by a pretty girl. When Bond rescues a beautiful, reckless girl from self-destruction, he finds himself with a lead on one of the most dangerous men in the world--Ernst Stavro Blofeld, the head of SPECTRE. In the snow-bound fastness of his Alpine base, Blofeld is conducting research that could threaten the safety of the world. To thwart the evil genius, Bond must get himself and the vital information he has gathered out of the base and keep away from SPECTRE's agents.","A Calendar of Wisdom: Daily Thoughts to Nourish the Soul. This is the first-ever English-language edition of the book Leo Tolstoy considered to be his most important contribution to humanity, the work of his life's last years. Widely read in prerevolutionary Russia, banned and forgotten under Communism; and recently rediscovered to great excitement, A Calendar of Wisdomis a day-by-day guide that illuminates the path of a life worth living with a brightness undimmed by time. Unjustly censored for nearly a century, it deserves to be placed with the few books in our history that will never cease teaching us the essence of what is important in this world.",The Organized Student: Teaching Children the Skills for Success in School and Beyond.,Star Wars Complete Locations.,"Katherine. This classic romance novel tells the true story of the love affair that changed history--that of Katherine Swynford and John of Gaunt, Duke of Lancaster, the ancestors of most of the British royal family. Set in the vibrant 14th century of Chaucer and the Black Death, the story features knights fighting in battle, serfs struggling in poverty, and the magnificent Plantagenets--Edward III, the Black Prince, and Richard II--who ruled despotically over a court rotten with intrigue. Within this era of danger and romance, John of Gaunt, the king's son, falls passionately in love with the already married Katherine. Their well-documented affair and love persist through decades of war, adultery, murder, loneliness, and redemption. This epic novel of conflict, cruelty, and untamable love has become a classic since its first publication in 1954.",Love Hate and Everything in Between: Expressing Emotions in Japanese.,"National Geographic Field Guide to the Birds of North America. Birding is the fastest growing wildlife-related activity in the U.S., and even conservative estimates put the current number of U.S. birders at 50 million. According to the New York Times,some authorities predict that by 2050 there will be more than 100 million--and the National Geographic Field Guide to the Birds of North Americawill be the essential reference for field identification and the cornerstone of any birder's library. This is the ultimate, indispensable bird field guide--comprehensive, authoritative, portable, sturdy, and easier than ever to use. Among the the new edition's key elements and practical improvements: Every North American species--more than 960, including a new section on accidental birds--classified according to the latest official American Ornithologists' Union checklist 4,000 full-color illustrations by the foremost bird artists at work todayand newly updated range maps that draw on the latest data New durable cover for added protection against adverse weath",No Wind of Blame (Inspector Hemingway #1). Tragedy befalls the Carter family following an eventful visit from a Russian prince and a scandalous blackmail letter. The murder of Wally Carter is a bewildering mystery -- how does one shoot a man crossing a narrow bridge without being near the murder weapon when it is fired? The analytical Inspector Hemingway reveals his unnerving talent for solving a fiendish problem.,"The House of Mirth. The House of Mirth, by Edith Wharton, is part of the Barnes & Noble Classicsseries, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and pages of carefully crafted extras. Here are some of the remarkable features of Barnes & Noble Classics: New introductions commissioned from today's top writers and scholars Biographies of the authors Chronologies of contemporary historical, biographical, and cultural events Footnotes and endnotes Selective discussions of imitations, parodies, poems, books, plays, paintings, operas, statuary, and films inspired by the work Comments by other famous authors Study questions to challenge the reader's viewpoints and expectations Bibliographies for further reading Indices & Glossaries, when appropriate All editions are beautifully designed and are printed to superior specifications; some include illustrations of historical interest. Barnes & Noble Classics pulls together a","The Marvel Encyclopedia. This unique encyclopedia, which covers all of Marvel's greatest heroes and villains, is a must-have book for both new fans and those who grew up loving the excitement of the Marvel universe. Full color.","Betrayal of Trust: The Collapse of Global Public Health. ""On par with Rachel Carson's Silent Spring... This chilling exploration of the decline of public health should be taken seriously by leaders and policymakers around the world.""--Publishers Weekly, Starred Review In this meticulously researched and ultimately explosive new book by the Pulitzer Prize-winning author of the New York Timesbestseller The Coming Plague, Laurie Garrett takes on perhaps the most crucial global issue of our time. She asks: is our collective health in a state of decline? If so, how dire is this crisis and has the public health system itself contributed to it? Using riveting detail and finely-honed storytelling, Garrett exposes the underbelly of the world's globalization to find out if it can still be assumed that government can and will protect the people's health, or if that trust has been irrevocably broken.","Victoria Line Central Line. Millions of people travel on London's tube every day, yet we usually give our fellow passengers only a cursory glance. But each one of these nameless passengers has their own story to tell. At Notting Hill, the mysterious secretary, harbouring her secrets, travels to work; at Highburyand Islington, Adam has a sudden change of heart; and at Holborn, a disastrous reunion is about to take place... With her characteristic mix of compassionate humour and biting realism, this vintage collection of stories is Maeve Binchy at her very best",Blood Meridian. 'Blood Meridian' presents an epic novel of the violent American West. The story is loosely based on accounts of murder along the border between Texas and Mexico in the 1850s.,"Remember When (Foster Saga #1). Judith McNaught's last enchanting bestseller, Until You, was hailed as ""brilliantly done and completely entertaining... ripe plot twists... a fine supporting cast"" - Ocala Star-Banner. Now, with more than fourteen million books in print and seven New York Timesbestsellers, Judith McNaught brings us her latest, most enthralling novel... Remember When When multinational tycoon Cole Harrison approached her on a moonlit balcony at the White Orchid Charity Ball, Diana Foster had no idea how extraordinary the night ahead would be. The most lavish social event of the Houston season had brought out American aristocracy, Texas-style, in glittering array. So, after losing her fiance to a blond Italian heiress and reading about it in a sleazy gossip paper, the lovely Diana felt obliged to make an appearance -- if only to save face and to bolster her company's image. Foster's Beautiful Livingmagazine was her family's success story, and Diana knew that, single, childless, and suddenly ""unengaged"",","Revenge of the Lawn / The Abortion / So the Wind Won't Blow it All Away. Three unforgettable Brautigan masterpieces reissued in a one-volume omnibus edition. REVENGE OF THE LAWN: Originally published in 1971, these bizarre flashes of insight and humor cover everything from ""A High Building in Singapore"" to the ""Perfect California Day."" This is Brautigan's only collection of stories and includes ""The Lost Chapters of TROUT FISHING IN AMERICA."" THE ABORTION: AN HISTORICAL ROMANCE 1966: A public library in California where none of the books have ever been published is full of romantic possibilities. But when the librarian and his girlfriend must travel to Tijuana, they have a series of strange encounters in Brautigan's 1971 novel. SO THE WIND WON'T BLOW IT ALL AWAY: It is 1979, and a man is recalling the events of his twelfth summer, when he bought bullets for his gun instead of a hamburger. Written just before his death, and published in 1982, this novel foreshadowed Brautigan's suicide.","The Dragon's Eye (Erec Rex #1). Enter Alypium, a hidden world within our own where our old knowledge of magic is kept, and strange and fantastical creatures abound. It is a beautiful and mystical place, but things are caving in. The king is hypnotized and his castle turned on its side. The very Substance that holds our planet together has gone awry, and whispers tell of evil plans to destroy everything. Twelve year old Erec Rex has been yanked out of our world and thrown unwillingly into danger here. As he learns how to get by in this strange place, he discovers some truths about himself, and must learn the power of trust and love in order to save his mother, and all of Alypium. In this riveting tale packed with action, humor, and a colorful cast of characters, debut author Kaza Kingsley brings us into a land of danger and excitement. For Erec, it is a world that is eerily familiar and inevitably entwined with his future. To the reader, it is a fantastic escape that shall be taken again and again.","Memoirs of a Geisha. This story is a rare and utterly engaging experience. It tells the extraordinary story of a geisha -summoning up a quarter century from 1929 to the post-war years of Japan's dramatic history, and opening a window into a half-hidden world of eroticism and enchantment, exploitation and degradation. A young peasant girl is sold as servant and apprentice to a renowned geisha house. She tells her story many years later from the Waldorf Astoria in New York. Her memoirs conjure up the perfection and the ugliness of life behind rice-paper screens, where young girls learn the arts of geisha - dancing and singing, how to wind the kimono, how to walk and pour tea, and how to beguile the land's most powerful men.","The Collected Poems of Robert Penn Warren. A central figure in twentieth-century American literature, Robert Penn Warren was appointed by the Library of Congress as the first Poet Laureate of the United States in 1985. Warren wrote enduring fiction as well as influential works of literary criticism and theory. Yet, as this variorum edition of his published poems suggests, it is his poetry - spanning sixty years, sixteen volumes of verse, and a wide range of styles - that places Warren among America's foremost men of letters. In this volume, John Burt, Warren's literary executor, has gathered together every poem Warren ever published (with the exception of Brother to Dragons), including the many poems he published in The Fugitive and other magazines, as well as those that appeared in his small press works and broadsides. Burt has also exhaustively collated all of the published versions of Warren's poems - in some cases, a poem appeared as many as six different times with substantive revisions in every line - as well as the autho",Happy Times in Noisy Village.,The Girl in a Swing.,"Myths of the Underworld Journey: Plato Aristophanes and the ""Orphic"" Gold Tablets.","The Gambler/Bobok/A Nasty Story. Presents the stories such as The Gambler, a portrayal of an intense and futile obsession; Bobok, a blackly comic satire in which a desolate writer becomes drawn into the conversations of the dead; and, A Nasty Story, a humorous look at the disparity between a man's exaggerated ideal of himself and the sad reality.","The Good the Bad and the Undead (The Hollows #2). Rachel Morgan, sexy witch, independent bounty hunter, prowls the downtown Cincinnati for criminal creatures of the night. She can handle leather-clad vamps and a cunning demon or two. But a serial killer who feeds on the experts in the most dangerous kind of black magic is an ancient, implacable evil that threatens her very soul.","The Coming of Age. What do the words elderly, old, and aged really mean? How are they used by society, and how in turn do they define the generation that we are taught to respect and love but instead castigate and avoid? Most importantly, how is our treatment of this generation a reflection of our society's values and priorities? In The Coming of Age, Simone de Beauvoir seeks greater understanding of our perception of elders. With bravery, tenacity, and forceful honesty, she guides us on a study spanning a thousand years and a variety of different nations and cultures to provide a clear and alarming picture of ""Society's secret shame""--the separation and distance from our communities that the old must suffer and endure.","The Seven Daughters Of Eve. In 1994 Professor Bryan Sykes, a leading world authority on DNA and human evolution, was called in to examine the frozen remains of a man trapped in glacial ice in northern Italy. News of the discovery of the Ice Man and his age, which was put at over five thousand years old, fascinated the world. But what made the story particularly extraordinary was that Professor Sykes was also able to track down a living genetic relative of the Ice Man, a woman living in Britain today. How was he able to locate a living relative of a man who died thousands of years ago? In The Seven Daughters of Eve, Bryan Sykes gives us a first hand account of his research into a remarkable gene which passes undiluted from generation to generation through the maternal line and shows how it is being used to track our genetic ancestors through time and space. After plotting thousands of DNA sequences from all over the world he found that they had clustered around a handful of distinct groups. In Europe there are onl","Moloka'i (Moloka'i #1). This richly imagined novel, set in Hawai'i more than a century ago, is an extraordinary epic of a little-known time and place---and a deeply moving testament to the resiliency of the human spirit. Rachel Kalama, a spirited seven-year-old Hawaiian girl, dreams of visiting far-off lands like her father, a merchant seaman. Then one day a rose-colored mark appears on her skin, and those dreams are stolen from her. Taken from her home and family, Rachel is sent to Kalaupapa, the quarantined leprosy settlement on the island of Moloka'i. Here her life is supposed to end---but instead she discovers it is only just beginning.",The Good Ghouls' Guide to Getting Even (Beth Frasier #1).,"In the Heart of the Sea: The Tragedy of the Whaleship Essex. Tells perhaps the greatest sea story ever - an event as mythic in its own century as the Titanic disaster in ours, and the inspiration for the climax of Moby-Dick. ""With its huge, scarred head halfway out of the water and its tail beating the ocean into a white-water wake more than forty feet across, the whale approached the ship at twice its original speed - at least six knots. With a tremendous cracking and splintering of oak, it struck the ship just beneath the anchor secured at the cat-head on the port bow..."" In the Heart of the Seabrings to new life the incredible story of the wreck of the whaleship Essex - an event as mythic in its own century as the Titanic disaster in ours, and the inspiration for the climax of Moby-Dick. In a harrowing page-turner, Nathaniel Philbrick restores this epic story to its rightful place in American history. In 1820, the 240-ton Essex set sail from Nantucket on a routine voyage for whales. Fifteen months later, in the farthest reaches of the South P","Sabbath's Theater. Sabbath's Theateris a comic creation of epic proportions, and Mickey Sabbath is its gargantuan hero. Once a scandalously inventive puppeteer, Sabbath at sixty-four is still defiantly antagonistic and exceedingly libidinous. But after the death of his long-time mistress--an erotic free spirit whose adulterous daring surpassed even his own--Sabbath embarks on a turbulent journey into his past. Bereft and grieving, besieged by the ghosts of those who loved and hated him most, he contrives a succession of farcical disasters that take him to the brink of madness and extinction.","Charlie Wilson's War: The Extraordinary Story of How the Wildest Man in Congress and a Rogue CIA Agent Changed the History of our Times. s/t: The Extraordinary Story of How the Wildest Man in Congress & a Rogue CIA Agent Changed the History of Our Times In a little over a decade, two events have transformed the world we live in: the collapse of the USSR & the rise of militant Islam. Charlie Wilson's War is the untold story behind the last battle of the Cold War & how it fueled the new jihad. Crile tells how Charlie Wilson, a maverick congressman from E. Texas, conspired with a rogue CIA operative to launch the biggest, meanest & most successful covert operation in the Agency's history. In the early '80s, after a Houston socialite turned Wilson's attention to the ragged band of Afghan ""freedom fighters"" who continued, despite overwhelming odds, to fight Soviet invaders, the congressman became passionate about their cause. At a time when Ronald Reagan faced a total cutoff of funding for the Contra war, Wilson, who sat on the all-powerful House Appropriations Committee, managed to procure hundreds of millions of dollars to","Tolkien and the Great War: The Threshold of Middle-earth. Revealing the horror and heroism the creator of Middle-earth experienced as a young man, Tolkien and the Great Waralso introduces the close friends who spurred the modern world's greatest mythology into life. It shows how the deaths of two comrades compelled Tolkien to pursue the dream they had shared, and argues that Tolkien transformed the cataclysm of his generation while many of his contemporaries surrendered to disillusionment. The fruit of five years of meticulous research, this is the first substantially new biography of Tolkien since 1977, distilled from his personal wartime papers and a multitude of other sources.","The Good Guy. One man. One choice. Someone must die. From #1 New York Times bestselling author Dean Koontz comes this pulse-pounding thriller that starts with a terrifying decision we all might face one day: Help--or run.Timothy Carrier is an ordinary guy. He enjoys a beer after work at his friend's tavern, the eccentric customers and amusing conversations. But tonight is no ordinary night. The jittery man sitting beside him has mistaken Tim for someone else--and passes him an envelope stuffed with cash and the photo of a pretty woman. ""Ten thousand now. You get the rest when she's gone."" Tim Carrier always thought he knew the difference between right and wrong, good and evil. But tonight everything he thought he knew--even about himself--will be challenged. For Tim Carrier is at the center of a mystery of extraordinary proportions, the one man who can save an innocent life and stop a killer as relentless as evil incarnate. But first he must discover resources within himself of which he never dreame","Light in August. Light in August, a novel that contrasts stark tragedy with hopeful perseverance in the face of mortality, features some of Faulkner's most memorable characters: guileless, dauntless Lena Grove, in search of the father of her unborn child; Reverend Gail Hightower, a lonely outcast haunted by visions of Confederate glory; and Joe Christmas, a desperate, enigmatic drifter consumed by his mixed ancestry.","Midaq Alley. Considered by many to be Mahfouz's best novel, Midaq Alleycenters around the residents of one of the hustling, teeming back alleys of Cairo. No other novel so vividly evokes the sights and sounds of the city. The universality and timelessness of this book cannot be denied.",Transmetropolitan Vol. 10: One More Time.,"The Crying of Lot 49. The highly original satire about Oedipa Maas, a woman who finds herself enmeshed in a worldwide conspiracy, meets some extremely interesting characters, and attains a not inconsiderable amount of self-knowledge.",Time to Learn: How to Create High Schools That Serve All Students.,"Dicey's Song (Tillerman Cycle #2). Now that the four abandoned Tillerman children are settled in with their grandmother, Dicey finds that their new beginnings require love, trust, humor, and courage.","Mercy. Police chief of a small Massachusetts town, Cameron McDonald makes the toughest arrest of his life when his own cousin Jamie comes to him and confesses outright that he has killed his terminally ill wife out of mercy. Now, a heated murder trial plunges the town into upheaval, and drives a wedge into a contented marriage: Cameron, aiding the prosecution in their case against Jamie, is suddenly at odds with his devoted wife, Allie -- seduced by the idea of a man so in love with his wife that he'd grant all her wishes, even her wish to end her life. And when an inexplicable attraction leads to a shocking betrayal, Allie faces the hardest questions of the heart: when does love cross the line of moral obligation? And what does it mean to truly love another? Praised for her ""personal, detail-rich style"" (Glamour),Jodi Picoult infuses this page-turning novel with heart, warmth, and startling candor, taking readers on an unforgettable emotional journey.","Souvenir of Canada 2. Douglas Coupland returns to re-inventing Canada following his best-seller that made it clear, Canada is way more than slightly cool. Douglas Coupland gets Canada. Better, he has set out to re-invent his country with his particular brand of insight, humor, and visual acuity. Souvenir of Canada created a sensation when it was first published, dominating Canada's best-seller lists for months, and made the front pages of every major Canadian newspaper. Eh? Souvenir of Canada 2 picks up where its predecessor left off. As with the best jazz, the riffs are fresh, never quite predictable, and full of delicious rhythm and subtle humor. This book is packed full of powerfully resonant images, and unexpected juxtapositions, that reveal a new Canada, one at home in a new century. No lighthouses, grain elevators, or teepees here. In addition to his trademark visual revelations, Coupland has created new works of art & design specifically for the book which further evoke the Canadian identity: quilts",Blind Flight.,"El amor en los tiempos del cólera. De jovenes, Florentino Ariza y Fermina Daza se enamoran apasionadamente, pero Fermina eventualmente decide casarse con un medico rico y de muy buena familia. Florentino esta anonadado, pero es un romantico. Su carrera en los negocios florece, y aunque sostiene 622 pequenos romances, su corazon todavia pertenece a Fermina. Cuando al fin el esposo de ella muere, Florentino acude al funeral con toda intencion. A los cincuenta anos, nueve meses y cuatro dias de haberle profesado amor a Fermina, lo hara; una vez mas. Con sagacidad humoristica y depurado estilo, Garcia Marquez traza la historia excepcional de un amor que no ha sido correspondido por medio siglo. Aunque nunca parece estar propiamente contenido, el amor fluye a traves de la novela de mil maneras: alegre, melancolico, enriquecedor, siempre sorprendente.","The Theory and Practice of Group Psychotherapy. In this completely revised and updated fifth edition of group psychotherapy's standard text, Dr. Yalom and his collaborator present the most recent developments in the field, drawing on nearly a decade of new research as well as their broad clinical wisdom and expertise. Among the significant new topics: Online therapy Specialized groups Ethnocultural diversity Trauma Managed care Plus hundreds of new references and clinical vignettes","Macbeth. The Norton Critical Edition of Macbeth, Shakespeare's terrifying depiction of a man and woman's fall into evil, derives from the First Folio (1623), the only authoritative text of the play. The edition includes an introduction, annotations, and textual notes. A rich ""Sources and Contexts"" section provides readers with an understanding of Macbeth's origins from earlier texts, specifically the works of the Roman playwright Seneca, the Tudor historian . Seventeen carefully chosen essays represent four hundred years of critical and theatrical interpretations, from the early observations of Simon Forman and to the Romantic readings of Samuel Taylor Coleridge, William Hazlitt, and Thomas De Quincey, to recent essays by Janet Adelman and Stephen Orgel. Sarah Siddons and Derek Jacobi remember performing Macbeth, and Peter Holland surveys film interpretations.",Uncle John's Presents Blame It on the Weather: Amazing Weather Facts.,"Harry Potter y el misterio del príncipe (Harry Potter #6). Con dieciseis anos cumplidos, Harry Potter inicia el sexto curso en Hogwarts en medio de terribles acontecimientos que asolan Inglaterra. Elegido capitan del equipo de Quidditch, los entrenamientos, los examenes y las chicas ocupan todo su tiempo, pero la tranquilidad dura poco. A pesar de los ferreos controles de seguridad que protegen la escuela, dos alumnos son brutalmente atacados. Dumbledore sabe que se acerca el momento, anunciado por la Profecia, en que Harry Potter y Voldemort se enfrentaran a muerte: <>. El anciano director solicitara la ayuda de Harry y juntos emprenderan peligrosos viajes para intentar debilitar al enemigo, para lo cual el joven mago contara con la ayuda de un viejo libro de pociones perteneciente a un misterioso principe, alguien que se hace llamar Principe Mestizo.","Fight Club. Every weekend, in basements and parking lots across the country, young men with good white-collar jobs and absent fathers take off their shoes and shirts and fight each other barehanded for as long as they have to. Then they go back to those jobs with blackened eyes and loosened teeth and the sense that they can handle anything. Fight Club is the invention of Tyler Durden, projectionist, waiter and dark, anarchic genius. And it's only the beginning of his plans for revenge on a world where cancer support groups have the corner on human warmth.","Animal Liberation. The Book That Started A Revolution Since its original publication in 1975, this groundbreaking work has awakened millions of concerned men and women to the shocking abuse of animals everywhere -- inspiring a worldwide movement to eliminate much of the cruel and unnecessary laboratory animal experimentation of years past. In this newly revised and expanded edition, author Peter Singer exposes the chilling realities of today's ""factory forms"" and product-testing procedures -- offering sound, humane solutions to what has become a profound environmental and social as well as moral issue. An important and persuasive appeal to conscience, fairness, decency and justice, Animal Liberationis essential reading for the supporter and the skeptic alike.","Green Arrow Vol. 1: Quiver. Writer/director Kevin Smith (Clerks, Chasing Amy, Dogma) delivers an awe-inspiring tale which resurrects DC Comics' original Emerald Archer -- the legendary Green Arrow! Stunningly rendered by the top talents of Phil Hester and Ande Parks, Green Arrow: Quiver follows Oliver Queen through man's most uncharted realms -- life, death, and back to life again. This deluxe hardcover edition collects the first ten issues of the best-selling Green Arrow monthly series, includes the original painted covers by Matt Wagner and features a new introduction by Kevin Smith.","Blackout (Kat Bronsky #2). Minutes after a Boeing 747 rises majestically into a Hong Kong sunset, a flash splits the darkening sky. The pilot - suddenly blinded and doubled over in pain - fumbles in the dark in a frantic effort to gain control as the huge jet shudders through its descent. Kat Bronsky, FBI agent and terrorism specialist, is assigned the hunt for a Challenger-class business jet seen nearby just before the incident. The case poses countless questions: Was the flash a pilot error, a missile attack, or a malfunction? Or was it some new kind of weapon? And why are several government agencies interested in what Kat uncovers?","East Of Eden. Set in the rich farmland of California's Salinas Valley, this sprawling and often brutal novel follows the intertwined destinies of two families--the Trasks and the Hamiltons--whose generations helplessly reenact the fall of Adam and Eve and the poisonous rivalry of Cain and Abel. Here Steinbeck created some of his most memorable characters and explored his most enduring themes: the mystery of identity; the inexplicability of love; and the murderous consequences of love's absence.",Halloween.,Personal Finance for Dummies.,"Pedro Páramo. La obra de Juan Rulfo (1917-1986) es sin duda la creacion literaria mexicana que ha recibido mayor reconocimiento dentro y fuera de su pais. La novela Pedro Paramo tuvo una larga gestacion. Rulfo la menciona por primera vez en una carta de 1947, y puede trabajar en ella hasta terminarla entre 1953 y 1954, gracias a una beca del Centro Mexicano de Escritores. En 1954 publica adelantos de la misma en tres revistas y en 1955 aparece como libro. Entre los admiradores de esta obra maestra, habiendo escrito tambien sobre ella, figuran Gabriel Garcia Marquez, Jorge Luis Borges y Susan Sontag. Pedro Paramo recoge lo mas profundo de Mexico y las formas y tecnicas literarias mas avanzadas de su siglo. Pocas obras tocan al lector mexicano como esta, considerada tambien un clasico de la literatura universal. Sus traducciones se acercan al medio centenar y cada ano aparecen nuevas versiones. (Texto definitivo de la obra establecido por la Fundacion Juan Rulfo)","Message in a Bottle. Shimmering with suspense and emotional intensity - takes readers on a hunt for the truth about a man and his memories, and about both the heartbreaking fragility and enormous strength of love. Nicholas Sparks is our very best chronicler of the human heart. His stunning first novel, The Notebook, has been given by friend to friend and lover to lover all over the world as a testament to the timeless power of love. But if we thought he could never again move us so deeply, he now shows us he can-in a story that renews our faith in destiny...in the ability of true lovers to find each other no matter where, no matter when... Message In A Bottle Thrown to the waves, and to fate, the bottle could have ended up anywhere. Instead, it is found just three weeks after it begins its journey. Theresa Osborne, divorced and the mother of a twelve-year-old son, picks it up during a seaside vacation from her job as a Boston newspaper columnist. Inside is a letter that opens with: My Dearest Catherine, I",Tarzan of the Apes: Tarzan of the Apes/The Son of Tarzan/Tarzan at the Earth's Core/Tarzan Triumphant.,"Ricochet. From the bestselling author of Hello, Darkness and Smash Cut comes another steamy thriller of murder, love, and betrayal featuring a Savannah homicide detective fighting attraction in the heat of the South. When Detective Sergeant Duncan Hatcher is summoned to the home of Judge Cato Laird in the middle of the night to investigate a fatal shooting, he knows discretion and kid-glove treatment will be key to staying in the judge's good graces and keeping his job. It's an open-and-shut case: Elise, the judge's beautiful trophy wife, interrupted a burglary and killed the intruder in self-defense. Yet Duncan is suspicious of the beautiful woman's story of innocence and his gut tells him her account of the shooting is only partially true. Determined to learn the dead man's connection to the Lairds, Duncan investigates further but soon finds his career, and integrity, in jeopardy. Despite his suspicions, Duncan is increasingly drawn to Elise--even if she is a married woman, a proven liar, and","White Oleander. Alternate cover for this ISBN can be found  Everywhere hailed as a novel of rare beauty and power, White Oleandertells the unforgettable story of Ingrid, a brilliant poet imprisoned for murder, and her daughter, Astrid, whose odyssey through a series of Los Angeles foster homes--each its own universe, with its own laws, its own dangers, its own hard lessons to be learned--becomes a redeeming and surprising journey of self-discovery.","Buddhism: A Concise Introduction. A concise and up-to-date guide to the history, teachings, and practice of Buddhism by two luminaries in the field of world religions.","Passage. A tunnel, a light, a door. And beyond it ... the unimaginable. Dr. Joanna Lander is a psychologist specializing in near-death experiences. She is about to get help from a new doctor with the power to give her the chance to get as close to death as anyone can. A brilliant young neurologist, Dr. Richard Wright has come up with a way to manufacture the near-death experience using a psychoactive drug. Joanna's first NDE is as fascinating as she imagined -- so astounding that she knows she must go back, if only to find out why that place is so hauntingly familiar. But each time Joanna goes under, her sense of dread begins to grow, because part of her already knows why the experience is so familiar, and why she has every reason to be afraid. Yet just when Joanna thinks she understands, she's in for the biggest surprise of all -- ashattering scenario that will keep you feverishly reading until the final climactic page.","The Big Knockover: Selected Stories and Short Novels. Short, thick-bodied, mulishly stubborn, and indifferent to physical pain, Dashiell Hammett's Continental Op was the prototype for generations of tough-guy detectives. He is also the hero of most of the nine stories in this volume. The Op's one enthusiasm is doing his job, and in The Big Knockoverthe jobs entail taking on a gang of modern-day freebooters, a vice-ridden hell's acre in the Arizona desert, and the bank job to end all bank jobs, along with such assorted grifters as Babe McCloor, Bluepoint Vance, Alphabet Shorty McCoy, and the Dis-and-Dat Kid. Contents: Introduction by Lillian Hellman The Gutting of Couffignal Fly Paper The Scorched Face The King Business The Gatewood Caper Dead Yellow Women Corkscrew Tulip The Big Knockover $106,000 Blood Money",Jack London Illustrated: The Call of the Wild/White Fang/The Sea-Wolf/40 Short Stories.,"Paradise Lost. Paradise Lostremains as challenging and relevant today as it was in the turbulent intellectual and political environment in which it was written. This edition aims to bring the poem as fully alive to a modern reader as it would have been to Milton's contemporaries. It provides a newly edited text of the 1674 edition of the poem--the last of Milton's lifetime--with carefully modernized spelling and punctuation. Marginal glosses define unfamiliar words, and extensive annotations at the foot of the page clarify Milton's syntax and poetics, and explore the range of literary, biblical, and political allusions that point to his major concerns. David Kastan's lively Introduction considers the central interpretative issues raised by the poem, demonstrating how thoroughly it engaged the most vital--and contested--issues of Milton's time, and which reveal themselves as no less vital, and perhaps no less contested, today. The edition also includes an essay on the text, a chronology of major event","Speeches and Writings 1832–1858. The library of America is dedicated to publishing America's best and most significant writing in handsome, enduring volumes, featuring authoritative texts. Hailed as the ""finest-looking, longest-lasting editions ever made"" (The New Republic), Library of America volumes make a fine gift for any occasion. Now, with exactly one hundred volumes to choose from, there is a perfect gift for everyone.","Criss Cross. She wished something would happen. Something good. To her. Looking at the bright, fuzzy picture in the magazine, she thought, Something like that. Checking her wish for loopholes, she found one. Hoping it wasn't too late, she thought the word soon.","Richard III. Each edition includes: Freshly edited text based on the best early printed version of the play Full explanatory notes conveniently placed on pages facing the text of the play Scene-by-scene plot summaries A key to famous lines and phrases An introduction to reading Shakespeare's language An essay by an outstanding scholar providing a modern perspective on the play Illustrations from the Folger Shakespeare Library's vast holdings of rare books Essay by Phyllis Rackin The Folger Shakespeare Library in Washington, D.C., is home to the world's largest collection of Shakespeare's printed works, and a magnet for Shakespeare scholars from around the globe. In addition to exhibitions open to the public throughout the year, the Folger offers a full calendar of performances and programs. For more information, visit .","When Rabbit Howls. When Truddi Chase began therapy she was already building a successful career, a marriage, and a family. But what she was seeking most were explanations for her extreme anxiety, mood swings, and periodic blackouts. What finally emerged from the four-year sessions was terrifying: Truddi Chase's mind and body were inhabited by the Troops--ninety-two individual voices that had rescued her from a shattering childhood of violent, ritualized sexual abuse by her stepfather that began when she was only two. For years the Troops created a world where she could hide from the pain, and be shielded from the truth. It was a world Truddi Chase didn't even know existed, until she and her therapist took a journey to where the nightmare began.Challenging every preconceived notion of the human mind, When Rabbit Howlsis made all the more remarkable in that it was written by the Troops themselves--Truddi Chase's story is told by the very alter-egos who stayed with her, watched over her, and protected her.","The Ladies' Paradise. The Ladies Paradise (Au Bonheur des Dames) recounts the rise of the modern department store in late nineteenth-century Paris. The store is a symbol of capitalism, of the modern city, and of the bourgeois family: it is emblematic of changes in consumer culture and the changes in sexual attitudes and class relations taking place at the end of the century. This new translation of the eleventh novel in the Rougon-Macquart cycle captures the spirit of one of Zola's greatest works.",Galapagos: World's End.,"The Story of Philosophy: The Lives and Opinions of the World's Greatest Philosophers. A brilliant and concise account of the lives and ideas of the great philosophers--Plato, Aristotle, Bacon, Spinoza, Voltaire, Kant, Schopenhauer, Spencer, Nietzsche, Bergson, Croce, Russell, Santayana, James, and Dewey--The Story of Philosophy is one of the great books of our time. Few write for the non-specialist as well as Will Durant, and this book is a splendid example of his eminently readable scholarship. Durant's insight and wit never cease to dazzle; The Story of Philosophyis a key book for any reader who wishes to survey the history and development of philosophical ideas in the Western world.",Call of the Moon. A man seeking to destroy the werewolf who bit him comes across a strange beauty who takes him to the Canadian Northwest and shows him the way of the wolf.,"The Two-Mile Time Machine: Ice Cores Abrupt Climate Change and Our Future. Richard Alley, one of the world's leading climate researchers, tells the fascinating history of global climate changes as revealed by reading the annual rings of ice from cores drilled in Greenland. In the 1990s he and his colleagues made headlines with the discovery that the last ice age came to an abrupt end over a period of only three years. Here Alley offers the first popular account of the wildly fluctuating climate that characterized most of prehistory--long deep freezes alternating briefly with mild conditions--and explains that we humans have experienced an unusually temperate climate. But, he warns, our comfortable environment could come to an end in a matter of years. ""The Two-Mile Time Machine"" begins with the story behind the extensive research in Greenland in the early 1990s, when scientists were beginning to discover ancient ice as an archive of critical information about the climate. Drilling down two miles into the ice, they found atmospheric chemicals and dust that ena","Tyrannosaur Canyon. A stunning new archaeological thriller by the New York Times bestselling co-author of Brimstone and Relic. A moon rock missing for thirty years... Five buckets of blood-soaked sand found in a New Mexico canyon... A scientist with ambition enough to kill... A monk who will redeem the world... A dark agency with a deadly mission... The greatest scientific discovery of all time... What fire bolt from the galactic dark shattered the Earth eons ago, and now hides in that remote cleft in the southwest U.S. known as Tyrannosaur Canyon? This edition has an interview with Douglas Preston at the end.",The Last Temptation of Christ.,"Beowulf. The acclaimed author and illustrator of SIR GAWAIN AND THE GREEN KNIGHT return with an exhilarating edition of Britain's oldest epic. Long ago there was a Scandinavian warrior who fought three evils so powerful they could destroy whole kingdoms. Standing head and shoulders above his comrades, Beowulf single-handedly saves the land of the Danes from a merciless ogre named Grendel and then from his sea-hag mother. But it is his third terrible battle, with the death-dragon of the deep, in which he truly meets his match. Lovers of heroes, monsters, and the drama of battle will find this retelling as enthralling as it is tragic.","Memoria de mis putas tristes. ""El ano de mis noventa anos quise regalarme una noche de amor con una adolescente virgen."" Un viejo periodista decide festejar sus noventa anos a lo grande, dandose un regalo que le hara sentir que todavia esta vivo: una jovencita. En el prostibulo de un pintoresco pueblo, ve a la jovencita de espaldas, completamente desnuda, y su vida cambia radicalmente. Ahora que la conoce se encuentra a punto de morir, pero no por viejo, sino de amor. Asi, Memoria de mis putas tristes cuenta la vida de este anciano solitario lleno de man'as. Por el sabremos como en todas sus aventuras sexuales (que no fueron pocas) siempre dio a cambio algo de dinero, pero nunca imagino que de ese modo encontrar'a el verdadero amor. Esta nueva novela es una conmovedora reflexion que celebra las alegrias del enamoramiento y contempla las desventuras de la vejez, escrito en el estilo incomparable de Gabriel Garcia Marquez. ~penguinrandomhouse.com","Murder in the Cathedral. T. S. Eliot's verse dramatization of the murder of Thomas Becket at Canterbury, winner of the Nobel Prize for Literature The Archbishop Thomas Becket speaks fatal words before he is martyred in T. S. Eliot's best-known drama, based on the murder of the Archbishop of Canterbury in 1170. Praised for its poetically masterful handling of issues of faith, politics, and the common good, T. S. Eliot's play bolstered his reputation as the most significant poet of his time.","Witch Baby (Weetzie Bat #2). The family that took her in called her Witch Baby and raised her as their own. But even though she tried to fit in, Witch Baby never felt as though she truly belonged. So one day she packed her bat-shaped backpack, put on her black cowboy-boot roller skates, and went out into the world to find out who she really was...",The Dialogues of Plato Volume 1: Euthyphro Apology Crito Meno Gorgias Menexenus.,"Oracle Bones: A Journey Between China's Past and Present. From the acclaimed author of River Towncomes a rare portrait, both intimate and epic, of twenty-first-century China as it opens its doors to the outside world. A century ago, outsiders saw China as a place where nothing ever changes. Today the coun-try has become one of the most dynamic regions on earth. That sense of time--the contrast between past and present, and the rhythms that emerge in a vast, ever-evolving country--is brilliantly illuminated by Peter Hessler in Oracle Bones, a book that explores the human side of China's transformation. Hessler tells the story of modern-day China and its growing links to the Western world as seen through the lives of a handful of ordinary people. In addition to the author, an American writer living in Beijing, the narrative follows Polat, a member of a forgotten ethnic minority, who moves to the United States in searchof freedom; William Jefferson Foster, who grew up in an illiterate family and becomes a teacher; Emily,a migrant factory worke","The Poetry of Robert Frost: The Collected Poems Complete and Unabridged. A feast for lovers of American literature-the work of our greatest poet, redesigned and relaunched for a new generation of readers No poet is more emblematically American than Robert Frost. From ""The Road Not Taken"" to ""Stopping by Woods on a Snowy Evening,"" he refined and even defined our sense of what poetry is and what it can do. T. S. Eliot judged him ""the most eminent, the most distinguished Anglo-American poet now living,"" and he is the only writer in history to have been awarded four Pulitzer Prizes. Henry Holt is proud to announce the republication of four editions of Frost's most beloved work for a new generation of poets and readers. The only comprehensive volume of Frost's verse available, comprising all eleven volumes of his poems, this collection has been the standard Frost compendium since its first publication in 1969.","The Visitor (Jack Reacher #4). 12 CDs / 14 hrs. 12 mins. In Jack Reacher, Lee Child has created an epic hero: tough, taciturn, yet vulnerable. His first three Reacher novels, Killing Floor, Die Trying and Tripwire, were published to great acclaim; Killing Floor was recently awarded the Anthony Award in America for the Best First Novel, and Die Trying was selected as a Thumping Good Read by W.H. Smith in the U.K. Lee was also cited as one of the current hot talents in crime writing by Mark Timlin at the crime writers' festival, Dead On Deansgate. It's tough being a high-flying woman in the Army. Very tough. When Sergeant Amy Callan and Lieutenant Caroline Cook are found dead in their own homes--in baths filled with Army-issue camouflage paint, their bodies completely unmarked--Jack Reacher is under suspicion. He knew them both--and he knows that they both left the Army under dubious circumstances, both victims of sexual harassment. A former U.S. military policeman, a loner and a drifter, he matches the psychological","Quicksand. From one of the greatest writers of twentieth-century Japan comes a silkily nuanced novel of erotic gamesmanship and obsession. The voice--cultured, ingenuous, and with a touch of coquetterie--is that of Sonoko Kakiuchi, an Osaka lady of good family married to a dully respectable lawyer.","The Complete Dick Tracy Volume 1: 1931-1933. Presenting a deluxe hardcover collection of Chester Gould's timeless comic strip, Dick Tracy. The first volume of this multi-year project will include the five sample strips that Gould used to sell his groundbreaking strip, as well as nearly 500 comic strips encompassing the series' beginning, from October 1931-May 1933. Among these strips are the first appearance of many long-time Dick Tracy characters, such as Tess Truehart, Junior and Chief Brandon. This special first volume features an overview and introduction from Consulting Editor and writer Max Allan Collins, as well as a never-before-published interview between Collins and creator Chester Gould. Each volume will feature book design from award-winning designer/artist Ashley Wood. -The Library of American Comics is the world's #1 publisher of classic newspaper comic strips, with 14 Eisner Award nominations and three wins for best book. LOAC has become ""the gold standard for archival comic strip reprints... The research and artic",Java: An Introduction to Problem Solving and Programming.,"The Shawshank Redemption: The Shooting Script. This modern film classic, an extraordinary tale of hope and survival inside a maximum security prison, follows the complex twenty-year relationship between two convicts who have little in common--except friendship. Based on the novella Rita Hayworth and The Shawshank Redemptionby Stephen King, director/screenwriter Frank Darabont's film, starring Tim Robbins and Morgan Freeman, was nominated for seven Academy Awards(r), including Best Picture and Best Screenplay and has been named one of the 100 Best Films of All Time by the American Film Institute. The Newmarket Shooting Script Series(r) book includes: Introductions by Stephen King and Frank Darabont Complete shooting script Analysis of script-to-screen changes Behind-the-scenes photos Storyboards Complete cast and crew credits ""Memo from the Trenches"" by Frank Darabont","The Divine Comedy Vol. 3: Paradise. The final volume in this brilliant translation destined to take its place among the great English versions ofThe Divine Comedy In this translation of Paradise, Mark Musa exhibits the same sensitivity to language and knowledge of translation that enabled his versions of the Infernoand Purgatoryto capture the vibrant power and full dramatic force of Dante's poetry. Dante relates his mystical interpretation of the heavens, and his moment of transcendent glory, as he journeys, first with Beatrice, then alone, toward the Trinity. Professor Musa's extraordinary translation and his interpretive commentary, informative glossary, and bibliography clarify the theological themes and make Dante accessible to the English-speaking public.","Dragon (Dirk Pitt #10). Clive Cussler, author of over twenty consecutive New York Times bestsellers, brings back beloved hero Dirk Pitt in this electrifying, edge-of-your-seat thriller. Japan, 1945: Two US bombers take off with atomic bombs. Only one gets through. The Pacific, 1993: A Japanese cargo ship bound for the United States is instantly, thunderously vaporized, taking with it a Norwegian vessel. Japanese fanatics have developed a chilling plan to devastate and destroy the Western powers. From the ocean depths to the discovery of cache of lost Nazi loot, Dirk Pitt is untangling a savage conspiracy and igniting a daring counterattack. While Washington bureaucrats scramble, a brutal industrialist commands his blackmail scheme from a secret island control center. And Dirk, the dauntless hero of Saharaand Inca Gold, is taking on death-dealing robots and a human-hunting descendant of samurai warriors. Pitt alone controls the West's secret ace in the hole: a tidal wave of destruction waiting to be triggered","The Untamed One (Wild Wulfs of London #2). Running from angry villagers and the man who ravaged her, the witch Lucinda flees into the forest to have her child. But Lord Jackson Wulf hunts her down, believing her death will break the family curse that transforms him into a monster. Instead of killing the witch, Jackson is moved by her beauty and desperate plight. And Lucinda seizes the chance to find safety for herself and her babe when a bargain is struck between this outcast woman and this doomed man--and sealed by their marriage in name only... In return for his protection, Lucinda has promised that her magick can free Jackson from his torment. But this pretty witch soon finds herself in danger of being seduced by Jackson's charms and pursued by the man who would see both her and her child dead. Can she trust a Wulf with her safety and the safety of her child? Can she trust her heart to Jackson? To surrender to a Wulf is a terrible risk, for love will either unleash the beast within the man...or finally set him free.",Human All Too Human (Complete Works 3).,Steppenwolf Theatre Company : Twenty-Five Years of an Actor's Theater.,Tramps Like Us Volume 11.,The History.,"The Kitchen God's Wife. Winnie and Helen have kept each other's worst secrets for more than fifty years. Now, because she believes she is dying, Helen wants to expose everything. And Winnie angrily determines that she must be the one to tell her daughter, Pearl, about the past--including the terrible truth even Helen does not know. And so begins Winnie's story of her life on a small island outside Shanghai in the 1920s, and other places in China during World War II, and traces the happy and desperate events that led to Winnie's coming to America in 1949.",The Search for the Beloved: Journeys in Mythology and Sacred Psychology (Inner Workbook).,"The Soul Drinkers Omnibus (Soul Drinkers #1-3). Like all Space Marine Chapters, the Soul Drinkers are bound to serve the Imperium by ancient vows. But when an ancient relic of the Chapter is misappropriated, the Soul Drinkers face a terrible dilemma - betray the Imperium, or lose their honour? Their final choice, and its consequences, form the theme of this classic trilogy of SF stories set in the nightmare world of the 41st millennium.",Latitude and Longitude (Rookie Read-About Geography).,"How We Are Hungry: Stories. Dave Eggers presents his first collection of short stories. The characters are roaming, searching, and often struggling, and revelations do not always arrive on schedule. Precisely crafted and boldly experimental, How We Are Hungry simultaneously embraces and expands the boundaries of the short story.","The Philosophy of Hegel. Preface Introduction The Philosophy of History The History of Philosophy The Science of Logic Philosophy of Right & Law Lectures on Aesthetics The Phenomenology of the Spirit The Internal Affairs of Wuerttemburg The Constitution of Germany Concerning the English Reform Bill Notes for Introduction Bibliography",The Cambridge Companion to Cervantes.,"Small Bites Big Nights: Seductive Little Plates for Intimate Occasions and Lavish Parties. Whether he's setting the scene at his acclaimed restaurant Table 8 in Los Angeles, entertaining the audience on Food Network's Iron Chef America, or designing the menus for Hollywood hot-spots RokBar and L'Scorpion, chef Govind Armstrong knows how to create spectacular menus for occasions of all sizes. As Govind says, small plates encourage people to be more adventurous, to share food, and to enjoy the melange of flavors and textures. In his first cookbook, Small Bites, Big Nights, he shows you how to put together a menu of small, sophisticated, sexy dishes and pair them with the perfect cocktail. The result? Guests get to enjoy a feast of flavors, and as the host, you'll be able to relax and have fun, instead of spending the whole night in the kitchen. Wow a crowd with hors d'oeuvres like Arugula, Dates, and Parmesan (a salad that's finger food; Rare Tuna Crostini with White Bean Puree and Tapenade; or Seared Kobe Beef on Mini Yorkshire Pudding. To drink: Black Martinis. Barbecue sizz","Cold Sleep (Cold Series #1). After losing his memory in a serious car accident, Tohru Takahisa is taken in by Fujishima, an older man who claims to be his friend. But the taciturn Fujishima refuses to reveal anything about Tohru's past! Despite the gulf between them, a strange and awkward tenderness grows, even as they are held apart by the tragic events of Tohru's forgotten past! Dramatic, heart-wrenching romance and tragedy combine in a gripping story where the past and present are intricately entwined. This volume also contains the short story ""Class Reunion"" and an all-new sequel!","Looking Awry: An Introduction to Jacques Lacan through Popular Culture. Slavoj Zizek, a leading intellectual in the new social movements of Eastern Europe, provides a virtuoso reading of the psycholanalytic theory of Jacques Lacan through the works of contemporary popular culture, from horror fiction and detective thrillers to popular romances and Hitchcock films. Zizek inverts current pedagogical strategies to explain the difficult philosophical underpinnings of the French theoretician and practician who revolutionized our view of psychoanalysis. He approaches Lacan through the motifs and works of contemporarypopular culture, from Hitchcock's Vertigo to Stephen King's Pet Sematary, fromMcCullough's An Indecent Obsession to Romero's Return of the Living Dead - astrategy of ""looking awry"" that recalls the exhilarating and vital experience ofLacan.Zizek discovers fundamental Lacanian categories the triadImaginary/Symbolic/Real, the object small a, the opposition of drive and desire, the split subject - at work in horror fiction, in detective thrillers, in ro","Roald Dahl Treasury. This extraordinary collection takes readers on a fascinating journey into Dahl's unique imagination. At over 400 pages, it contains excerpts from Dahl's best-loved fiction for children and his autobiographical material. There are stories, rhymes, and memoirs as well as unpublished poetry and letters. Lavishly produced and illustrated in full-color, it features artwork by such prominent illustrators as Quentin Blake, Lane Smith, and Raymond Briggs.","Gideon's Trumpet: How One Man a Poor Prisoner Took His Case to the Supreme Court-And Changed the Law of the United States. A history of the landmark case of James Earl Gideon's fight for the right to legal counsel. Notes, table of cases, index. The classic backlist bestseller. More than 800,000 sold since its first pub date of 1964.",The Collapse of the Common Good: How America's Lawsuit Culture Undermines Our Freedom.,"The Price of Glory (Saga of the Gray Death Legion #3). After a year-long campaign in the service of House Marik, Colonel Grayson Carlyle and the warriors of the Gray Death Legion are ready for a rest. But there is no welcome for them at home base. The soldiers return to find the town in ruins, their families scattered and their reputations destroyed. Rumours fuelled by lies and false evidence have branded them as outlaws, accused of heinous crimes they did not commit. With a Star League treasure at stake Carlyle's need for vengeance against unknown enemies thrusts him into a suspenseful race against time. But even if he wins, the MechWarrior must ally himself with old enemies in a savage battle where both sides will learn... The Price of Glory.","Killing Rage: Ending Racism. One of our country's premier cultural and social critics, bell hooks has always maintained that eradicating racism and eradicating sexism must go hand in hand. But whereas many women have been recognized for their writing on gender politics, the female voice has been all but locked out of the public discourse on race. Killing Rage speaks to this imbalance. These twenty-three essays are written from a black and feminist perspective, and they tackle the bitter difficulties of racism by envisioning a world without it. They address a spectrum of topics having to do with race and racism in the United States: psychological trauma among African Americans; friendship between black women and white women; anti-Semitism and racism; and internalized racism in movies and the media. And in the title essay, hooks writes about the ""killing rage""--the fierce anger of black people stung by repeated instances of everyday racism--finding in that rage a healing source of love and strength and a catalyst fo",Avid Editing: A Guide for Beginning and Intermediate Users.,"In Wonderland. First published one hundred years ago, and now translated into English for the first time by noted Norwegian scholar Sverre Lyngstad, In Wonderlandis a diaristic account of a trip Hamsun took to Russia at the turn of the century. This detailed travelogue is a rich and loving portrait of the people and culture of Russia, and is filled with the trademark style and keen observations of the author of such classics as Hunger, Mysteries, and Growth of the Soil. In Wonderlandis unlike any other book written by Hamsun, and offers not only an intimate glimpse into the mind of the Nobel Prize winning author at his unguarded best, but a rare view into a Russia that would soon vanish in the fire of revolution.",Raised on Rock: Growing Up at Graceland.,It's Winter.,"Sidetracked (Kurt Wallander #5). Fourth in the Kurt Wallander series. In the award-winning Sidetracked, Kurt Wallander is called to a nearby rapeseed field where a teenage girl has been loitering all day long. He arrives just in time to watch her douse herself in gasoline and set herself aflame. The next day he is called to a beach where Sweden's former Minister of Justice has been axed to death and scalped. The murder has the obvious markings of a demented serial killer, and Wallander is frantic to find him before he strikes again. But his investigation is beset with a handful of obstacles--a department distracted by the threat of impending cutbacks and the frivolity of World Cup soccer, a tenuous long-distance relationship with a murdered policeman's widow, and the unshakably haunting preoccupation with the young girl who set herself on fire. Fascinating and astute, Sidetrackedis a compelling mystery enhanced by keen social awareness.","The Unknown Sigrid Undset: Jenny and Other Works. Sigrid Undset's Kristin Lavransdatter trilogy is an internationally best-selling classic, but her earlier work has long been out of print. In this new collection, readers finally have a window into Undset's views on women's sexuality, the relationship between motherhood and art, and the complex dynamic between women and men.The book includes two short stories, ""Simonsen"" and ""Tjodolf"", which capture the lives of people living in Christiana (now Oslo) in 1900; a novel, Jenny, which tells the story of a disenchanted painter; and an assortment of letters written between 1900 and 1922.","Conspiracy of Fools. From an award-winning New York Timesreporter comes the full, mind-boggling story of the lies, crimes, and ineptitude behind the spectacular scandal that imperiled a presidency, destroyed a marketplace, and changed Washington and Wall Street forever . . .","Way of the Peaceful Warrior: A Book That Changes Lives. Way of the Peaceful Warrioris based on the story of Dan Millman, a world champion athlete, who journeys into realms of romance and magic, light and darkness, body, mind, and spirit. Guided by a powerful old warrior named Socrates and tempted by an elusive, playful woman named Joy, Dan is led toward a final confrontation that will deliver or destroy him. Readers join Dan as he learns to live as a peaceful warrior. This international bestseller conveys piercing truths and humorous wisdom, speaking directly to the universal quest for happiness.","Les Mandarins: Tome 2. In her most famous novel, The Mandarins, Simone de Beauvoir takes an unflinching look at Parisian intellectual society at the end of World War II. In fictionally relating the stories of those around her Jean-Paul Sartre, Albert Camus, Arthur Koestler, Nelson Algren de Beauvoir dissects the emotional and philosophical currents of her time. At once an engrossing drama and an intriguing political tale, The Mandarins is the emotional odyssey of a woman torn between her inner desires and her public life. ""Much more than a roman a clef . . . a moving and engrossing novel."" New York Times","Vinyl Cafe Diaries (Vinyl Cafe #4). Why is Morley skulking around with a man named Frank on the eve of her 40th birthday? What grisly secret is Stephanie hiding in her father's picnic cooler? And exactly what is Dave doing by himself in a Halifax hotel room with a duck? In the pages of the Vinyl Cafe Diaries, humorist Stuart McLean answers these questions and reveals more strange, shocking, and above all, entertaining truths about the seemingly ordinary folk of the Vinyl Cafe.","Tidings of Great Joy. Ria Lavender is the last woman in the world to be swept away by a smooth line and a seductive smile. A talented architect, she's just beginning to savor the fruits of her success when she meets a man who will change everything. Mayor-Elect Taylor MacKensie is handsome, charming, and charismatic. Still, Ria never imagines that she'll leave a Christmas party with him, or that, caught up in the magic of a snowfall and a bottle of champagne, she'll give in to desire. Eight weeks later, Ria knows she's carrying Taylor's child. To give their baby a name, Ria persuades Taylor to marry her--at least temporarily. But while Ria soon feels a surprising tenderness--and passion--for Taylor, she fears his prime concern is protecting his career. Ria vows to keep her distance from the man who holds the key to her heart...until life teaches them both a lesson in miracles--and love.","Purple Cane Road (Dave Robicheaux #11). James Lee Burke ist ""der Superstar der amerikanischen Kriminalliteratur!"" Buchmarkt Im Staatsgefangnis von Louisiana droht der jungen Kreolin Letty Labiche die Hinrichtung. Sie wurde moglicherweise unschuldig zum Tode verurteilt. Detective Dave Robicheaux stellt nun neue Ermittlungen zu ihrer Rettung an, als er uberraschend auf die Spur seiner vor mehr als 30 Jahren verschwundenen Mutter trifft: Die war damals einfach fortgegangen, und nun erfahrt er, dass sie eine Hure war und von zwei brutalen Polizisten aus New Orleans als unliebsame Zeugin ermordet wurde. Der Informant wird kurz darauf von einem gedungenen Killer umgebracht, der offenbar alle Spuren zu der alten Tat tilgen soll. Von einem Killer der ungewohnlichen Art allerdings, denn Johnny Remeta, so sein Name, ist blitzgescheit, charmant und zugleich ein vollig unberechenbarer Psychopath. Als Remeta seinerseits beseitigt werden soll und Robicheaux ihm das Leben rettet, meint er sich zu dessen Schutzengel aufschwingen zu mussen.","The Rise and Fall of Anne Boleyn. The execution of Henry VIII's second queen in 1536 has traditionally been attributed to a conspiracy masterminded by Thomas Cromwell. This radical reinterpretation focuses instead on the many intrigues that pervaded Henry's court. It looks at opinions only of Warnicke - for example, the idea that Anne Boleyn was deformed and had a sixth finger and a wen under her chin.",The Dragon's Eye (Dragonology Chronicles #1).,Notebooks of the Mind: Explorations of Thinking Revised Edition.,"The Book of Five Rings. The Book of Five Ringsis one of the most insightful texts on the subtle arts of confrontation and victory to emerge from Asian culture. Written not only for martial artists but for anyone who wants to apply the timeless principles of this text to their life, the book analyzes the process of struggle and mastery over conflict that underlies every level of human interaction. The Book of Five Ringswas composed in 1643 by the famed duelist and undefeated samurai Miyamoto Musashi. Thomas Cleary's translation is immediately accessible, with an introduction that presents the spiritual background of the warrior tradition. Along with Musashi's text, Cleary translates here another important Japanese classic on leadership and strategy, The Book of Family Traditions on the Art of Warby Yagyu Munenori, which highlights the ethical and spiritual insights of Taoism and Zen as they apply to the way of the warrior.","Beauty's Punishment (Sleeping Beauty #2). An erotic novel of discipline, love, and surrender for the enjoyment of men and women. This sequel to The Claiming of Sleeping Beauty, the first of Anne Rice's elegantly written volumes of erotica, continues her explicit, teasing exploration of the psychology of human desire. Now Beauty, having indulged in a secret and forbidden infatuation with the rebellious slave Prince Tristan, is sent away from the Satyricon-like world of the Castle. Sold at auction, she will soon experience the tantalizing punishments of ""the village,"" as her education in love, cruelty, dominance, submission, and tenderness is turned over to the brazenly handsome Captain of the Guard. And once again Rice's fabulous tale of pleasure and pain dares to explore the most primal and well-hidden desires of the human heart. Read by Genvieve Bevier and Winthrop Eliot.","Henri Rousseau: Jungles in Paris. A cult figure in his own lifetime, Henri Rousseau (1844-1910) produced some of the most original and recognizable artworks of the modern era. This volume provides not only a comprehensive overview of his career, but also a penetrating insight into the sources that inspired his work.""","The Eagle (The Lighthouse Family #3). In a lighthouse by the ocean, Seabold, a dog, and Pandora, a cat, live with their three little mice children, Whistler, Lila, and Tiny. One day, Lila and Whistler decide they want to investigate the mysterious forest that stands near their home. What adventures could be waiting between those trees? Brother and sister ask permission to go exploring and discover not only adventure and enchantment but also a new friend!","Catwings (Catwings #1). The bestselling Catwings series! Mrs. Jane Tabby can't explain why her four precious kittens were born with wings, but she's grateful that they are able to use their flying skills to soar away from the dangerous city slums where they were born. However, once the kittens escape the big city, they learn that country life can be just as difficult!","A Hundred Camels in the Courtyard. These are four tales of contemporary life in a land where cannabis, rather than alcohol, customarily provides a way out of the phenomenological world. Thus, of the men in these stories, Salam uses suggestions supplied by smoking kif to rid himself of a possible enemy. He of the Assembly catches himself up in the mesh of his own kif-dream and begins to act it out in reality; Idir's victory over Lahcen is the classical story of the kif-smoker's ability to outwit the drinker. Driss the soldier, with aid of kif, proves the existence of magic to his enlightened superior officer. For all of them the kif-pipe is the means to attaining a state of communication not only with others but above all with themselves. ""His work is art. At his best Paul Bowles has no peer."" --Time ""[W]riters and artists such as Williams, Jack Kerouac, Francis Bacon, Christopher Isherwood, Truman Capote, William S. Burroughs and Allen Ginsberg to Tangier. . .sought Bowles as an oracle, a writer whose work demonstrated","Galatea 2.2. After four novels and several years living abroad, the fictional protagonist of Galatea 2.2-- Richard Powers -- returns to the United States as Humanist-in-Residence at the enormous Center for the Study of Advanced Sciences. There he runs afoul of Philip Lentz, an outspoken cognitive neurologist intent upon modeling the human brain by means of computer-based neural networks. Lentz involves Powers in an outlandish and irresistible project: to train a neural net on a canonical list of Great Books. Through repeated tutorials, the device grows gradually more worldly, until it demands to know its own name, sex, race, and reason for exisiting.",See How They Run.,"The Pirate Dictionary. We hear the terms steer clear of, hit the deck, don't rock the boat, and to harbor a grudge and give little thought to their origin. Left together on ships for months, and often for years, pirate crews developed expressions that made their way into common usage. Terms for things related to life at sea became idioms used by land lubbers, a term derived from the holes in the platforms surrounding the mast that allowed sailors to avoid climbing the rigging around the platforms. A lubber was someone who was very clumsy, so a land lubber is someone who knows nothing about sailing and rigging. Centuries ago, men wore wigs of length denoting their wealth and importance. Soon, many naval captains, including Sir Henry Morgan and Captain Chaloner Ogle, who killed Black Bart Roberts, began to adopt the style. A law was passed in England declaring that only nobility, judges, and bishops could wear full-length wigs and so was born the term bigwig . Reading through these words and phrases is an abbr","Magician: Apprentice (The Riftwar Saga #1). To the forest on the shore of the Kingdom of the Isles, the orphan Pug came to study with the master magician Kulgan. His courage won him a place at court and the heart of a lovely Princess, but he was ill at ease with normal wizardry. Yet his strange magic may save two worlds from dark beings who opened spacetime to renew the age-old battle between Order and Chaos.",If I Die in a Combat Zone.,The Art of Listening.,"The Doom That Came to Sarnath and Other Stories. The Doom That Came to Sarnath In a city of gems and riches- beyond the dreams of mortal men- a race of conquerors celebrates its triumph and reaps the horror of its glory... The Other Gods A prophet wise in the ways of the gods learns that too much knowledge can be a macabre thing... Beyond the Walls of Sleep A crazed murderer blames his crime on beings from another dimension. Wild ravings from an insane man turn to prophecy when the Truth is revealed. Cover illustration: Michael Whelan Contents: ""Introduction"" (Lin Carter) ""The Other Gods"" (1921) ""The Tree"" (1920) ""The Doom That Came to Sarnath"" (1919) ""The Tomb"" (1917) ""Polaris"" (1918) ""Beyond the Wall of Sleep"" (1919) ""Memory"" (1919) ""What the Moon Brings"" (1923) ""Nyarlathotep"" (1920) ""Ex Oblivione"" (1921) ""The Cats of Ulthar"" (1920) ""Hypnos"" (1922) ""Nathicana"" (1927) ""From Beyond"" (1920) ""The Festival"" (1923) ""The Nameless City"" (1921) ""The Quest of Iranon"" (1921) ""The Crawling Chaos"" (1920) ""In the Walls of Eryx"" (1935) ""Imprisone",Discourses Books 3-4. The Enchiridion (Loeb Classical Library #218).,"The Burden of Proof (Kindle County Legal Thriller #2). Turow's acclaimed second novel, which topped international bestseller lists, is now available in trade paperback. Sandy Stern, the brilliant defense attorney from Presumed Innocent, faces an event so emotionally shattering that no part of his life is left untouched. It reveals a family caught in a maelstrom of hidden crimes, shocking secrets, and warring passions.",The Authority Vol. 2: Under New Management.,"Charlotte's Web. This is the story of a little girl named Fern who loved a little pig named Wilbur--and of Wilbur's dear friend Charlotte, a beautiful large grey spider who lived with Wilbur in the barn. With the help of Templeton, the rat who never did anything for anybody unless there was something in it for him, and with a wonderfully clever plan of her own, Charlotte saved the life of Wilbur, who by this time had grown up to be quite some pig. How all of this comes about is Mr. White's story. It is a story of the magic of childhood on the farm. It is also a story of friendship, loyalty, and truth and shows readers that friends come in all shapes and sizes. The beloved story of Charlotte the spider, Wilbur the pig, and Fern, the little girl who understood their language, will continue to delight readers both young and old everywhere for generations to come.","Doctor Who: Cat's Cradle-Witch Mark. 'Spare no sympathy for those creatures. They were witches, they deserved to die.' A coach crashes on the M40. All the passengers are killed. The bodies carry no identification; they are wearing similar new clothes. And each has a suitcase full of banknotes. A country vet delivers a foal. The mare has a deep wound in her forehead. In the straw, the vet finds a tapered horn. In the darkening and doomed world known to its inhabitants as Tir na n-Og, the besieged humans defend the walls of their citadel Dinorben against mythical beasts and demons. The TARDIS's link with the Eye of Harmony is becoming ever more tenuous and is in urgent need of repair. But the time machine takes the Doctor and Ace to a village in rural Wales, and a gateway to another world.",The War of the Lance (DragonLance: Tales II #3).,"The Firm. Mitch McDeere is young, intelligent and ambitious. When he gets a job with the law firm of Bendini, Lambert, & Locke it seems to be the path to money and power. But soon Mitch finds that the firm is listening to all his phone calls, and the FBI wants to speak to him. Money and power has a price, and it could be Mitch's life.","The Tent. One of the world's most celebrated authors, Margaret Atwood has penned a collection of smart and entertaining fictional essays, in the genre of her popular books Good Bonesand Murder in the Dark, punctuated with wonderful illustrations by the author. Chilling and witty, prescient and personal, delectable and tart, these highly imaginative, vintage Atwoodian mini-fictions speak on a broad range of subjects, reflecting the times we live in with deadly accuracy and knife-edge precision. In pieces ranging in length from a mere paragraph to several pages, Atwood gives a sly pep talk to the ambitious young; writes about the disconcerting experience of looking at old photos of ourselves; gives us Horatio's real views on Hamlet; and examines the boons and banes of orphanhood. Bring Back Mom: An Invocation; explores what life was really like for the ""perfect"" homemakers of days gone by, and in The Animals Reject Their Namesshe runs history backward, with surprising results. Chilling and witty,","The 9/11 Commission Report: Final Report of the National Commission on Terrorist Attacks Upon the United States. Nearly three thousand people died in the terrorist attacks of September 11, 2001. In Lower Manhattan, on a field in Pennsylvania, and along the banks of the Potomac, the United States suffered the single largest loss of life from an enemy attack on its soil. In November 2002 the United States Congress and President George W. Bush established by law the National Commission on Terrorist Attacks Upon the United States, also known as the 9/11 Commission. This independent, bipartisan panel was directed to examine the facts and circumstances surrounding the September 11 attacks, identify lessons learned, and provide recommendations to safeguard against future acts of terrorism. This volume is the authorized edition of the Commission's final report.","Into the Wild. Librarian's Note: An alternate cover edition can be found  In April 1992 a young man from a well-to-do family hitchhiked to Alaska and walked alone into the wilderness north of Mt. McKinley. His name was Christopher Johnson McCandless. He had given $25,000 in savings to charity, abandoned his car and most of his possessions, burned all the cash in his wallet, and invented a new life for himself. Four months later, a party of moose hunters found his decomposed body. How McCandless came to die is the unforgettable story of Into the Wild. Immediately after graduating from college in 1991, McCandless had roamed through the West and Southwest on a vision quest like those made by his heroes Jack London and John Muir. In the Mojave Desert he abandoned his car, stripped it of its license plates, and burned all of his cash. He would give himself a new name, Alexander Supertramp, and, unencumbered by money and belongings, he would be free to wallow in the raw, unfiltered experiences that nature","Sideways. Sidewaysis the story of two friends--Miles and Jack--going away together for the last time to steep themselves in everything that makes it good to be young and single: pinot, putting, and prowling bars. In the week before Jack plans to marry, the pair heads out from Los Angeles to the Santa Ynez wine country. For Jack, the tasting tour is Seven Days to D-Day, his final stretch of freedom. For Miles--who has divorced his wife, is facing an uncertain career and has lost his passion for living--the trip is a weeklong opportunity to evaluate his past, his future and himself. A raucous and surprising novel filled with wonderful details about wine, Sidewaysis also a thought-provoking and funny book about men, women, and human relationships.","The Subtle Knife (His Dark Materials #2). Here is the highly anticipated second installment of Philip Pullman's epic fantasy trilogy, begun with the critically acclaimed The Golden Compass. Lyra and Will, her newfound friend, tumble separately into the strange tropical otherworld of Cittagazze, ""the city of magpies,"" where adults are curiously absent and children run wild. Here their lives become inextricably entwined when Lyra's alethiometer gives her a simple command: find Will's father. Their search is plagued with obstacles--some familiar and some horribly new and unfathomable--but it eventually brings them closer to Will's father and to the Subtle Knife, a deadly, magical, ancient tool that cuts windows between worlds. Through it all, Will and Lyra find themselves hurtling toward the center of a fierce battle against a force so awesome that leagues of mortals, witches, beasts, and spirits from every world are uniting in fear and anger against it. This breathtaking sequel will leave readers eager for the third and final vo","Gunnar's Daughter. Set in Norway and Iceland at the beginning of the eleventh century, this is the story of the beautiful, spoiled Vigdis Gunnarsdatter, who is casually raped by the man she had wanted to love. A woman of courage and intelligence, Vigdis is toughened by adversity. Alone she raises the child conceived in violence, repeatedly defending her autonomy in a world governed by men. Alone she rebuilds her life and restores her family's honor, until an unrelenting social code propels her to take the action that again destroys her happiness. More than a historical romance, Gunnar's Daughter depicts characters driven by passion and vengefulness, themes as familiar in Undset's own time - and in ours - as they were in the Saga Age.","Worlds Enough & Time: Five Tales of Speculative Fiction. An extraordinary artist with few rivals in his chosen arena, Dan Simmons possesses a restless talent that continually presses boundaries while tantalizing the mind and touching the soul. Now he offers us a superb quintet of novellas -- five dazzling masterworks of speculative fiction, including ""Orphans of the Helix,"" his award-winning return to the Hyperion Universe -- that demonstrates the unique mastery, breathtaking invention, and flawless craftsmanship of one of contemporary fiction's true greats. Human colonists seeking something other than godhood encounter their long-lost ""cousins""...and an ancient scourge. A devastated man in suicide's embrace is caught up in a bizarre cat-and-mouse game with a young woman possessing a world-ending power. The distant descendants of a once-oppressed people learn a chilling lesson about the persistence of the past. A terrifying ascent up the frigid, snow-swept slopes of K2 shatters preconceptions and reveals the true natures of four climbers, on","Les Misérables. ""He was no longer Jean Valjean, but No. 24601"" Victor Hugo's tale of injustice, heroism and love follows the fortunes of Jean Valjean, an escaped convict determined to put his criminal past behind him. But his attempts to become a respected member of the community are constantly put under threat: by his own conscience, when, owing to a case of mistaken identity, another man is arrested in his place; and by the relentless investigations of the dogged policeman Javert. It is not simply for himself that Valjean must stay free, however, for he has sworn to protect the baby daughter of Fantine, driven to prostitution by poverty. A compelling and compassionate view of the victims of early nineteenth-century French society, Les Miserablesis a novel on an epic scale, moving inexorably from the eve of the battle of Waterloo to the July Revolution of 1830. Norman Denny's introduction to his lively English translation discusses Hugo's political and artistic aims in writing Les Miserables. For mor","The Wakefield Legacy: The Untold Story (Sweet Valley High Magna Editions #2). Follow the compelling stories of the women and men who came before Jessica and Elizabeth Wakefield: Frontiersman Theodore Wakefield thought he'd lost his heart forever; will Dancing Wind make him love again? Turn -of-the-century beauty Sarah Wakefield marries against her father's wishes -- only to become the mother of a fatherless child. Betrayed by his true love, Ted Wakefield must forget his past to find happiness with brilliant journalist Julia Marks. During World War II Robert Wakefield receives vital radio messages from P.O.W. Hannah Weiss and vows to find her when the war ends. Ned Wakefield struggles against injustice In the idealistic sixties, then fights for the heart of beautiful Alice Robertson. Discover new lives and loves in the further unfolding of the biggest, best Sweet Valley story ever!","The Burning Plain and Other Stories. A major figure in the history of post-Revolutionary literature in Mexico, Juan Rulfo received international acclaim for his brilliant short novel Pedro Paramo (1955) and his collection of short stories El llano en llamas (1953), translated as a collection here in English for the first time. In the transition of Mexican fiction from direct statements of nationalism and social protest to a concentration on cosmopolitanism, the works of Rulfo hold a unique position. These stories of a rural people caught in the play of natural forces are not simply an interior examination of the phenomena of their world; they are written for the larger purpose of showing the actions of humans in broad terms of reality.","A Pinch of Poison (Hemlock Falls Mysteries #3). The Quilliam sisters have a nose for fine food and good business. But when a nosy newspaperman goes sniffing around the local mini-mall project, Sarah and Meg begin to smell something rotten in Hemlock Falls. It's worse than corruption--it's murder. And the newsman is facing his final deadline. Includes a recipe from the Hemlock Falls Inn.",Watchmen on the Walls. A story of the Israeli wars in the 1940s by a Christian author who was in Jerusalem at the time.,"Rachel Field's Hitty: Her First Hundred Years. Based on the 1930 Newberry Award Winner On a cold Maine night in 1829, an old peddler carved a small doll out of a piece of mountain ash wood. Her name was Hitty and she was no ordinary doll. Hitty's first owner, Phoebe Preble, takes her from Boston to India. From the hands of Phoebe Preble, Hitty travels on with a snake charmer, a Civil War soldier, a riverboat captains daughter, and a former slave. Along the way she meets presidents and painters, relating each adventure in vivid detail. Rachel Field's masterful novel ""Hitty: Her First Hundred Years"" was first published in 1929; it was awarded the Newbery Medal in 1930. In this full-color adaptation, the award-winning team of Rosemary Wells and Susan Jeffers has taken Hitty down from the shelf and dusted her off for a new generation of younger readers. The short, fast-paced chapters and pictures on every spread bring life to this beloved classic, and make it perfect for sharing with the whole family.","Vampire Hunter D Volume 07: Mysterious Journey to the North Sea - Part One. When a young woman traveling across the scarred wastelands is murdered over the possession of a strange jewel, she entrust the gem, with her final breath, to the mysterious Vampire Hunter known as D, and charges him with a desperate mission-to deliver the priceless stone to her sister, far off in a fishing village on the shores of the North Sea. D's journey is made ever more perilous by the motley unsavory scoundrels and rogues enlisted by the girl's murderer, who will stop at nothing to claim the jewel. Determined the hunter will not reach his destination, the villains are relentless in their pursuit, one of them harboring a secret, deadly agenda of his own.","The Historical Atlas of New York City: A Visual Celebration of Nearly 400 Years of New York City's History. A New York Public Library Outstanding Reference Book The rich and eminently browsable visual guide to the history of New York, in an all-new second edition The Historical Atlas of New York City, second edition, takes us, neighborhood by neighborhood, through four hundred years of Gotham's rich past, describing such crucial events as the city's initial settlement of 270 people in thirty log houses; John Jacob Astor's meteoric rise from humble fur trader to the richest, most powerful man in the city; and the fascinating ethnic mixture that is modern Queens. The full-color maps, charts, photographs, drawings, and mini-essays of this encyclopedic volume also trace the historical development and cultural relevance of such iconic New York thoroughfares as Fifth Avenue, Wall Street, Park Avenue, and Broadway. This thoroughly updated edition brings the Atlas up to the present, including three all-new two-page spreads on Rudolph Giuliani's New York, the revival of Forty-second Street, and the",Beauty.,"Wild Things: Four Tales. WILD THINGS: FOUR TALES From Douglas Clegg comes a special quartet of stories dealing with creatures of the wild - some are wolf, some bird, some the most terrifying of beasts: the human variety. Two of these tales - ""The Wolf"" and ""The American"" are previously unpublished. ""The Wolf"" is the dark story of a wolf hunter who guides a younger man up a mountain to kill a wolf that has been slaughtering in the valley below. ""The American"" takes place at a late-night cafe in Rome where foreigners gather. On this particular night a stranger steps out of the shadowy park to sit at the sidewalk tables and speak of love and murder. In ""A Madness of Starlings,"" a father, teaching his children about protection from the predators of life, takes in a fledgling bird. But when it's time for the bird to fly away, the forces of nature come undone and a secret wisdom and terror enter the mind of the one who understands the language of birds. Finally, in ""The Dark Game,"" a war hero and his men are capture",The Statue of Liberty (Symbols of America).,"Le ravissement de Lol V. Stein. L'histoire de Lol Valerie Stein commence au moment precis ou les dernieres venues franchissent la porte de la salle de bal du casino municipal de T. Beach. Elle se poursuit jusqu'a l'aurore qui trouve Lol V. Stein profondement changee. Une fois le bal termine, la nuit finie, une fois rassures les proches de Lol V. Stein sur son etat, cette histoire s'eteint, sommeille, semblerait-il durant dix ans. Lol Stein se marie, quitte sa ville natale, S. Tahla, a des enfants, parait confiante dans le deroulement de sa vie et se montre heureuse, gaie. Apres la periode de dix ans la separant maintenant de la nuit du bal, Lol V. Stein revient habiter a S. Tahla ou une situation est offerte a son mari. Elle y retrouve une amie d'enfance qu'elle avait oubliee, Tatiana Karl, celle qui tout au long de la nuit du bal de T. Beach etait restee aupres d'elle, ce qu'elle avait egalement oublie. L'histoire de Lol V. Stein reprend alors pour durer quelques semaines.",Sarah Bernhardt.,"The Books in My Life. Some writers attempt to conceal the literary influences which have shaped their thinking--but not Henry Miller. In this unique work, he gives an utterly candid and self-revealing account of the reading he did during his formative years. In The Books in My Lifehe shares the thrills of discovery that many kinds of books have brought to a keenly curious and questioning mind. Some of Miller's favorite writers are the giants whom most of us revere--authors such as Dostoievsky, Boccaccio, Walt Whitman, James Joyce, Thomas Mann, Lao-Tse. To them he brings fresh and penetrating insights. But many are lesser-known figures: Krishnamurti, the prophet-sage; the French contemporaries Blaise Cendrars and Jean Giono; Richard Jeffries, who wrote The Story of My Heart; the Welshman John Cowper Powys; and scores of others. The Books in My Lifecontains some fine autobiographical chapters, too. Miller describes his boyhood in Brooklyn, when he devoured the historical stories of G. A. Henty and the romance",Son of Superman.,High Rhulain (Redwall #18).,"Drop City. It is 1970, and a down-at-the-heels California commune devoted to peace, free love, and the simple life has decided to relocate to the last frontier--the unforgiving landscape of interior Alaska--in the ultimate expression of going back to the land. Armed with the spirit of adventure and naive optimism, the inhabitants of ""Drop City"" arrive in the wilderness of Alaska only to find their utopia already populated by other young homesteaders. When the two communities collide, unexpected friendships and dangerous enmities are born as everyone struggles with the bare essentials of life: love, nourishment, and a roof over one's head. Rich, allusive, and unsentimental, T.C. Boyle's ninth novel is a tour de force infused with the lyricism and take-no-prisoners storytelling for which he is justly famous.",I'm Telling You Stories: Jeanette Winterson and the Politics of Reading (Postmodern Studies 25). This is a jubilant and rewarding collection of Winterson scholarship--a superb group of essays from a host of fine authors.,"Chester's Way. Chester and Wilson had their own way of doing things, and they did everything together. When they cut their sandwiches, it was always diagonally. When they rode their bikes, they always used hand signals. If Chester was hungry, Wilson was too. They were two of a kind, and that's the way it was - until indomitable Lilly, who had her own way of doing things, moved into the neighborhood.","The Double and The Gambler. The award-winning translators Richard Pevear and Larissa Volokhonsky have given us the definitive version of Fyodor Dostoevsky's strikingly original short novels, The Double and The Gambler. The Double is a surprisingly modern hallucinatory nightmare-foreshadowing Kafka and Sartre-in which a minor official named Goliadkin becomes aware of a mysterious doppelganger, a man who has his name and his face and who gradually and relentlessly begins to displace him with his friends and colleagues. The Gambler is a stunning psychological portrait of a young man's exhilarating and destructive addiction to gambling, a compulsion that Dostoevsky-who once gambled away his young wife's wedding ring-knew intimately from his own experience. In chronicling the disastrous love affairs and gambling adventures of Alexei Ivanovich, Dostoevsky explores the irresistible temptation to look into the abyss of ultimate risk that he believed was an essential part of the Russian national character.","Origins of the Modern Mind: Three Stages in the Evolution of Culture and Cognition. This bold book asks the ultimate question of the life sciences: How did the human mind acquire its incomparable power? In seeking the answer, Merlin Donald traces the evolution of human culture and cognition from primitive apes to artificial intelligence, presenting an enterprising and original theory of how the human mind evolved from its presymbolic form.","A Beautiful Mind. Stories of famously eccentric Princetonians abound--such as that of chemist Hubert Alyea, the model for The Absent-Minded Professor, or Ralph Nader, said to have had his own key to the library as an undergraduate. Or the ""Phantom of Fine Hall,"" a figure many students had seen shuffling around the corridors of the math and physics building wearing purple sneakers and writing numerology treatises on the blackboards. The Phantom was John Nash, one of the most brilliant mathematicians of his generation, who had spiraled into schizophrenia in the 1950s. His most important work had been in game theory, which by the 1980s was underpinning a large part of economics. When the Nobel Prize committee began debating a prize for game theory, Nash's name inevitably came up--only to be dismissed, since the prize clearly could not go to a madman. But in 1994 Nash, in remission from schizophrenia, shared the Nobel Prize in economics for work done some 45 years previously.Economist and journalist Sylvia","Blind Willow Sleeping Woman: 24 Stories. Following the best-selling triumph of Kafka on the Shore-""daringly original,"" wrote Steven Moore in The Washington Post Book World, ""and compulsively readable""-comes a collection that generously expresses Murakami's mastery. From the surreal to the mundane, these stories exhibit his ability to transform the full range of human experience in ways that are instructive, surprising, and relentlessly entertaining. As Richard Eder has written in the Los Angeles Times Book Review, ""He addresses the fantastic and the natural, each with the same mix of gravity and lightness."" Here are animated crows, a criminal monkey, and an iceman, as well as the dreams that shape us and the things we might wish for. Whether during a chance reunion in Italy, a romantic exile in Greece, a holiday in Hawaii, or in the grip of everyday life, Murakami's characters confront grievous loss, or sexuality, or the glow of a firefly, or the impossible distances between those who ought to be the closest of all. ""While an","The Alley (The Alley #1). In the heart of Brooklyn, New York, there is an alley that is the most beautiful place to live in the whole wide world. Or so Connie Ives believes. The alley is the perfect location to sharpen Connie's swinging skills, hold practices for the Alley Conservatory of Music, andconvict a burglar by trial. From the bestselling author of Ginger Pyecomes the story of a little girl whose eyes are always open to the beauty of the world that surrounds her.",Sky's Pride and Joy (Bachelor Gulch #8).,"Planet of Slums. Se a imagem da metropole no seculo XX era a dos arranha-ceus e das oportunidades de emprego, Planeta Favela leva o leitor para uma viagem ao redor do mundo pelos realidade dos cenarios de pobreza onde vive a maioria dos habitantes das megacidades do seculo XXI. ;;O urbanista norte-americano Mike Davis investiga as origens do crescimento vertiginoso da populacao em moradias precarias a partir dos anos 80 na America Latina, na Africa, na Asia e no antigo bloco sovietico. Combinando erudicao academica e conhecimento in loco das areas pobres das grandes cidades, Davis traz a historia da expansao das metropoles do Terceiro Mundo, analisando os paralelos entre as politicas economicas e urbanas defendidas pelo FMI e pelo Banco Mundial e suas consequencias desastrosas nas gecekondus de Istambul (Turquia), nas desakotas de Accra (Gana) ou nos barrios de Caracas (Venezuela), alguns dos nomes locais para as aproximadamente 200 mil favelas existentes no planeta. ;;Cada aspecto dessa ""nova cidade""","Sodom and Gomorrah (In Search of Lost Time #4). Sodom and Gomorrah- now in a superb translation by John Sturrock - takes up the theme of homosexual love, male and female, and dwells on how destructive sexual jealousy can be for those who suffer it. Proust's novel is also an unforgiving analysis of both the decadent high society of Paris, and the rise of a philistine bourgeoisie that is on the way to supplanting it. Characters who had lesser roles in earlier volumes now reappear in a different light and take center stage, notably Albertine, with whom the narrator believes he is in love, and the insanely haughty Baron de Charlus.",Beyond the Post-Modern Mind: The Place of Meaning in a Global Civilization. This new edition of acclaimed essays explores sea changes in the relationship between religion and science over the course of Western culture and suggest possible breakthroughs toward reaching an enlightened consciousness.,A Cargo of Women: Susannah Watson and the Convicts of the Princess Royal.,"The Straight Dope. Is it true what they say about Catherine the Great and the horse? How do they measure snow? How do they get the stripes into toothpaste? Do cats have navels? How are coins taken out of circulation? Why do men have nipples? Cecil Adams has tackled these questions and more in his outspoken, uncompromising, and always entertaining weekly newspaper column, The Straight Dope. Now the best of these questions and answers--from the profound to the ridiculous--are collected in book form so that you can know a little about a lot. Exploding myths, revealing shocking truths, and explaining all major mysteries of the cosmos, The Straight Dope contains more than four hundred fully-indexed entries on topics ranging from sex to consumer products, science to history, and rock 'n' roll to much, much more!","The Library of Greek Mythology. The only work of its kind to survive from classical antiquity, the Library of Apollodorusis a unique guide to Greek mythology, from the origins of the universe to the Trojan War. Apollodorus' Libraryhas been used as a source book by classicists from the time of its compilation in the 1st-2nd century AD to the present, influencing writers from antiquity to Robert Graves. It provides a complete history of Greek myth, telling the story of each of the great families of heroic mythology, and the various adventures associated with the main heroes and heroines, from Jason and Perseus to Heracles and Helen of Troy. As a primary source for Greek myth, as a reference work, and as an indication of how the Greeks themselves viewed their mythical traditions, the Libraryis indispensable to anyone who has an interest in classical mythology. Robin Hard's accessible and fluent translation is supplemented by comprehensive notes, a map and full genealogical tables. The introduction gives a detailed accou",Culture Shock! Laos (Culture Shock!).,"The Meanest Thing To Say. This easy-to-read story about peer pressure by comedian and storyteller Bill Cosby is now a Scholastic Reader! Michael Reilly has introduced a new game to Little Bill and his friends. You get twelve chances to say something mean to another kid--and whoever comes up with the biggest insult is the winner. Insults start flying: ""Jose hops with the frogs in science lab!"" ""Andrew eats frogs for dinner!"" ""Little Bill shoots baskets like a girl!"" Little Bill tries to think of really mean things to say in retaliation. But Dad teaches him a strategy that enables Little Bill to save face while remaining the nice kid that he really is!","Nimitz Class (Admiral Arnold Morgan #1). The most powerful warship in the world, the nuclear-powered U.S. Nimitz-Class aircraft carrier is seen as impregnable. But when the USS Thomas Jeffersonsuddenly disappears at sea, the Pentagon is stunned. There are no survivors, and all signs point to a tragic nuclear accident. While the world stands in shock, reports suggest that it was no accident. A rogue submarine armed with nuclear warheads may be on the loose. Where did it come from? How could it get within striking distance of the Thomas Jefferson? Worse yet, where is it now and could it strike again? The tension mounts, and a deadly chase begins.","The Mediterranean Caper (Dirk Pitt #2). Dirk Pitt rides a tidal wave of intrigue in this classic Cussler. On an isolated Greek island, a World War I fighter plane attacks a modern U.S. Air Force base--a mysterious saboteur preys on an American scientific expedition--and Dirk Pitt plays a deadly game of hunter and hunted with the elusive head of an international smuggling ring.","The Brothers Lionheart. The Brothers Lionheart (Swedish: Broderna Lejonhjarta) is a children's fantasy novel written by Astrid Lindgren. It was published in the autumn of 1973 and has been translated into 46 languages. Many of its themes are unusually dark and heavy for the children's book genre. Disease, death, tyranny, betrayal and rebellion are some of the dark themes that permeate the story. The lighter themes of the book involve platonic love, loyalty, hope, courage and pacifism. The two main characters are two brothers; the older Jonatan and the younger Karl. The two brothers' surname was originally Lion, but they are generally known as Lionheart. Karl's nickname is Skorpan (Rusky) since Jonatan likes these typical Swedish toasts or crusts. In Nangijala, a land in ""the campfires and storytelling days"", the brothers experience adventures. Together with a resistance group they lead the struggle against the evil Tengil, who rules with the aid of the fearsome fire-breathing dragon, Katla.","Black Veil: A Memoir with Digressions. In his early 20s, a lifetime of excess left Rick Moody suddenly stranded in a depression so profound that he feared for his life. A stay in a psychiatric hospital was just the first step out of mental illness. In this astonishingly inventive book, Moody tells the story of his collapse and recovery in an inspired journey through what it means to be young and confused, older and confused, guilty, lost, and healed.Woven through his own story, Moody also traces his family's paternal line, looking for clues to his own melancholy -- in particular to one ancestor, Reverend Joseph Moody, about whom Nathaniel Hawthorne wrote an archetypal story of shame called ""The Minister's Black Veil."" In a brilliant display that is no less than a literary tour de force, Moody ties past and present, family legend, and serious scholarship into a book that will draw comparisons not just to recent memoirs by Dave Eggers and Martin Amis but to forebears like Nabokov's Speak, Memory.","Naked Economics: Undressing the Dismal Science. Naked Economicsmakes up for all of those Econ 101 lectures you slept through (or avoided) in college, demystifying key concepts, laying bare the truths behind the numbers, and answering those questions you have always been too embarrassed to ask. For all the discussion of Alan Greenspan in the media, does anyone know what the Fed actually does? And what about those blackouts in California? Were they a conspiracy on the part of the power companies? Economics is life. There's no way to understand the important issues without it. Now, with Charles Wheelan's breezy tour, there's no reason to fear this highly relevant subject. With the commonsensical examples and brilliantly acerbic commentary we've come to associate with The Economist, Wheelan brings economics to life. Amazingly, he does so with nary a chart, graph, or mathematical equation in sight--certainly a feat to be witnessed firsthand. Economics is a crucial subject. There's no way to understand the important issues without it. Now","The Sun in the Morning: My Early Years in India and England. Readers of M.M. Kaye's fiction will discover here the source of the characters, settings, and certain incidents of her novels. Most of all, they will bask in this warm account of a young woman's remarkable life--and the beginnings of a love affair with an India whose time has passed but which has not been forgotten. 24 pages of black-and-white photographs.","Getting the Girl (Wolfe Brothers #3). Cameron Wolfe's life gets very complicated when he falls for his brother's girlfriend in this winning, wise novel from the dynamic author of FIGHTING RUBEN WOLFE. Cameron Wolfe is the quiet one in his family, not a soccer star like his brother Steve or a charming fighter with a new girl every week like his brother Rube. Cam would give anything to be near one of those girls, to love her and treat her right. He especially likes Rube's latest, Octavia, with her brilliant ideas and bright green eyes. But what woman like that would want a loser like him? Maybe Octavia would, Cam discovers. Maybe he'd even have something to say. And those maybes change everything: winning, loving, losing, the Wolfe brothers, and Cameron himself.","The Prodigal Son (Roger the Chapman #15). The latest title in the acclaimed Roger the Chapman series When Roger the Chapman discovers he has a hitherto unknown half-brother, he has mixed feelings about the matter. But when John Wedmore is accused of being the young page who, six years earlier, robbed his mistress and murdered a fellow servant, and is thrown into prison, Roger feels obliged to investigate the charge.","The Gilgamesh Epic and Old Testament Parallels. Cuneiform records made some 3000 years ago are the basis for this essay on the ideas of death & the afterlife & the story of the flood which were current among the ancient peoples of the Tigro-Euphrates Valley. With the same careful scholarship shown in his previous volume, The Babylonian Genesis, Heidel interprets the famous Gilgamesh Epic & other related Babylonian & Assyrian documents. He compares them with corresponding portions of the Old Testament in order to determine the inherent historical relationship of Hebrew & Mesopotamian ideas. Preface List of Symbols & Special Characters The Gilgamesh epic Related material Death and the afterlife The story of the flood","Illusions: The Adventures of a Reluctant Messiah. In the cloud-washed airspace between the cornfields of Illinois and blue infinity, a man puts his faith in the propeller of his biplane. For disillusioned writer and itinerant barnstormer Richard Bach, belief is as real as a full tank of gas and sparks firing in the cylinders...until he meets Donald Shimoda--former mechanic and self-described messiah who can make wrenches fly and Richard's imagination soar.... In Illusions, Richard Bach takes to the air to discover the ageless truths that give our souls wings: that people don't need airplanes to soar...that even the darkest clouds have meaning once we lift ourselves above them... and that messiahs can be found in the unlikeliest places--like hay fields, one-traffic-light midwestern towns, and most of all, deep within ourselves.","A Wicked Gentleman (Cavendish Square #1). Bestselling author Jane Feather brings to life the glamour, sophistication, and intrigue of Regency-era London in this captivating novel of unexpected passions and dangerous secrets. Pooling their meager resources, Lady Cornelia Dagenham, her sister-in-law Aurelia, and their friend Liv Lacey arrive in London's Cavendish Square to spend a month at the home Liv has just inherited. But why anyone would show a fervent interest in purchasing the rundown property -- particularly the arrogant Viscount Bonham, who clearly could afford the finest of homes -- is a puzzle to Cornelia. His charms are undeniable, though -- and Cornelia finds her resistance to this mysterious stranger falling away...as a sparking passion clouds her view. But their affair may place her and her friends in danger as Harry Bonham sweeps her into the sparkling whirl of high society. Leading a double life as a code breaker for the Crown, Harry is a man of many secrets. Is it Cornelia whom he truly desires, or something hi","Plato in 90 Minutes. Each of these little books is witty and dramatic and creates a sense of time, place, and character....I cannot think of a better way to introduce oneself and one s friends to Western civilization. Katherine A. Powers, Boston Globe. Well-written, clear and informed, they have a breezy wit about them....I find them hard to stop reading. Richard Bernstein, New York Times. Witty, illuminating, and blessedly concise. Jim Holt, Wall Street Journal. These brief and enlightening explorations of our greatest thinkers bring their ideas to life in entertaining and accessible fashion. Philosophical thought is deciphered and made comprehensive and interesting to almost everyone. Far from being a novelty, each book is a highly refined appraisal of the philosopher and his work, authoritative and clearly presented.""","¡Horton escucha a quién!. Asi empieza la historia de Horton, el elefante que oyo como le hablaba una pequena mota de polvo. En concreto, se trataba del alcalde del pueblo de los Quienes situado en el interior de la mota de polvo, que le pedia a Horton ayuda y proteccion. Horton se la prometio, y asi empezaron las aventuras: la de Horton para salvar al pequeno mundo, y la de todos los animales de la jungla para creer que, en la pequena motita de polvo, existia la vida.","The Minimalist Cooks at Home: Recipes That Give You More Flavor from Fewer Ingredients in Less Time. People are hungry for ways to simplify their cooking--without sacrificing quality or taste. Now you can satisfy that hunger with The Minimalist Cooks at Home. Mark Bittman, author of the ""New York Times"" column ""The Minimalist,"" brings one hundred of his innovative recipes (many never published before) right into your kitchen. But The Minimalist Cooks at Home is so much more than recipes. It features Mark's personal quick-cooking lessons, shortcuts, and ideas for variations, substitutions, and spin-offs. Mark doesn't believe in arduous techniques, long lists of ingredients, and even longer hours in the kitchen. Instead, with a few choice ingredients and a few easy steps, dishes such as Paella, Fast and Easy; Ziti with Butter, Sage, and Parmesan; Spicy Chicken with Lemon-grass and Lime; and 15-Minute Fruit Gratin can be on your table in no time. And by encouraging versatility, The Minimalist Cooks at Home allows cooks of all skill levels to create a tailored repertoire of sophisticated","1599: A Year in the Life of William Shakespeare. How did Shakespeare go from being a talented writer of comedies and histories to become one of the greatest writers of tragedies who ever lived? In this one exhilarating year we follow what he reads and writes, what he saw and who he worked with as he rebuilds the Globe theatre and writes four of his most famous plays - Henry V, Julius Caesar, As You Like It and, most remarkably, Hamlet. James Shapiro illuminates both Shakespeare's staggering achievement and what Elizabethans experienced in the course of 1599: sending off an army to crush an Irish rebellion, weathering an Armada threat from Spain, gambling on a fledgeling East India Company, and waiting to see who would succeed their ageing and childless Queen. This book brings the news, intrigue and flavour of the times together with wonderful detail about how Shakespeare worked as a showman, businessman and playwright, to create an exceptionally immediate and gripping account of a fascinating and inspiring moment in history.",A Woman's High Calling Growth and Study Guide.,"Far from the Madding Crowd. Far from the Madding Crowd, Hardy's passionate tale of the beautiful, headstrong farmer Bathsheba Everdene and her three suitors, firmly established the thirty-four-year-old writer as a popular novelist. According to Virginia Woolf, ""The subject was right; the method was right; the poet and the countryman, the sensual man, the sombre reflective man, the man of learning, all enlisted to produce a book which . . . must hold its place among the great English novels."" Introducing the fictional name of ""Wessex"" to describe Hardy's legendary countryside, this early masterpiece draws a vivid picture of rural life in southwest England. This Modern Library Paperback Classic is set from the 1912 Wessex edition and features Hardy's map of Wessex.",Practical DV Filmmaking.,"Brightness Reef (Uplift Storm Trilogy #1). David Brin's Uplift novels--Sundiver,Hugo award winner The Uplift War,and Hugo and Nebula winner Startide Rising--are among the most thrilling and extraordinary science fiction tales ever written. Now David Brin returns to this future universe for a new Uplift trilogy, packed with adventure, passion and wit. The planet Jijo is forbidden to settlers, its ecology protected by guardians of the Five Galaxies. But over the centuries it hasbeen resettled, populated by refugees of six intelligent races. Together they have woven a new society in the wilderness, drawn together by their fear of Judgment Day, when the Five Galaxies will discover their illegal colony. Then a strange starship arrives on Jijo. Does it bring the long-dreaded judgment, or worse--a band of criminals willing to destroy the six races of Jijo in order to cover their own crimes?","Kushiel's Scion (Imriel's Trilogy #1). It is whispered that Kushiel's lineage carries the ability to perceive the flaws in mortal souls, to administer an untender mercy. I sense its presence like a shadow on my soul...the memories of blood and branding and horror, and the legacy of cruelty that runs in my veins, shaping my own secret vow and wielding it like a brand against the darkness, whispering it to myself, over and over. I will try to be good. Imriel de la Courcel's blood parents are history's most reviled traitors, but his adoptive parents, the Comtesse Phedre and the warrior-priest Joscelin, are Terre d'Ange's greatest champions. Stolen, tortured, and enslaved as a young boy, Imriel is now a Prince of the Blood, third in line for the throne in a land that revels in art, beauty, and desire. It is a court steeped in deeply laid conspiracies...and there are many who would see the young prince dead. Some despise him out of hatred for his birth mother Melisande, who nearly destroyed the realm in her quest for power. Othe","The Long Walk. On the first day of May, 100 teenage boys meet for a race known as ""The Long Walk."" If you break the rules, you get three warnings. If you exceed your limit, what happens is absolutely terrifying.","One Step Behind (Kurt Wallander #7). It is Midsummer's Eve. Three young friends meet in a wood to act out an elaborate masque. But unknown to them, they are being watched. With a bullet each, all three are murdered. Soon afterwards, one of Inspector Wallander's colleagues is found murdered. Is this the same killer, and what could the connection be? In this investigation, Wallander is always, tantalisingly, One Step Behind.","Le Premier homme. <>, ecrit Albert Camus dans une note pour Le premier homme. Le projet de ce roman auquel il travaillait au moment de sa mort etait ambitieux. Il avait dit un jour que les ecrivains <>. Il avait jete les bases de ce qui serait le recit de l'enfance de son <>. Cette redaction initiale a un caractere autobiographique qui aurait surement disparu dans la version definitive du roman. Mais c'est justement ce cote autobiographique qui est precieux aujourd'hui. Apres avoir lu ces pages, on voit apparaitre les racines de ce qui fera la personnalite de Camus, sa sensibilite, la genese de sa pensee, les raisons de son engagement. Pourquoi, toute sa vie, il aura voulu parler au nom de ceux a qui la parole est refusee.",Confessions Books 1-13.,"East Wind: West Wind. East Wind: West Wind is told from the eyes of a traditional Chinese girl, Kwei-lan, married to a Chinese medical doctor, educated abroad. The story follows Kwei-lan as she begins to accept different points of view from the western world, and re-discovers her sense of self through this coming-of-age narrative.","Preface to the Phenomenology of Spirit. This is a new translation, with running commentary, of what is perhaps the most important short piece of Hegel's writing. The Preface to Hegel's first major work, the Phenomenology of Spirit, lays the groundwork for all his other writing by explaining what is most innovative about Hegel's philosophy. This new translation combines readability with maximum precision, breaking Hegel's long sentences and simplifying their often complex structure. At the same time, it is more faithful to the original than any previous translation. The heart of the book is the detailed commentary, supported by an introductory essay. Together they offer a lucid and elegant explanation of the text and elucidate difficult issues in Hegel, making his claims and intentions intelligible to the beginner while offering interesting and original insights to the scholar and advanced student. The commentary often goes beyond the particular phrase in the text to provide systematic context and explain related topics in He",Afterglow: A Last Conversation With Pauline Kael.,"Debt of Honor (Jack Ryan #7). Razio Yamata is one of Japan's most influential industrialists, and part of a relatively small group of authority who wield tremendous authority in the Pacific Rim's economic powerhouse.He has devised a plan to cripple the American greatness, humble the US military, and elevate Japan to a position of dominance on the world stage. Yamata's motivation lies in his desire to pay off aDebt of Honorto his parents and to the country he feels is responsible for their deaths--America. All he needs is a catalyst to set his plan in motion. When the faulty gas tank on one Tennessee family's car leads to their fiery death, an opportunistic U. S. congressman uses the occasion to rush a new trade law through the system. The law is designed to squeeze Japan economically. Instead, it provides Yamata with the leverage he needs to put his plan into action. As Yamata's plan begins to unfold, it becomes clear to the world that someone is launching a fully-integrated operation against the United States. The","Your First Year in Network Marketing: Overcome Your Fears Experience Success and Achieve Your Dreams!. How to Keep the Dream Alive! Network marketing is one of the fastest-growing career opportunities in the United States. Millions of people just like you have abandoned dead-end jobs for the chance to achieve the dream of growing their own businesses. What many of them find, however, is that the first year in network marketing is often the most challenging--and, for some, the most discouraging. Here, Mark Yarnell and Rene Reid Yarnell, two of the industry's most respected and successful professionals, offer you strategies on how to overcome those first-year obstacles and position yourself for lifelong success. The Yarnells provide you with a wealth of savvy advice on everything you need to know to succeed in network marketing, such as proven systems for recruiting, training, growing and supporting your downline, and much more. In an easy, step-by-step approach, you will learn how to: *Deal with rejection *Recruit and train *Avoid overmanaging your downline *Remain focused *Stay enthusia","The Mill on the Floss. ""Backgrounds"" includes fifteen letters from the 1859-69 period centering on the novel's content and composition; ""Brother and Sister"" (1869), a little-known sonnet sequence; and eight Victorian reviews and responses, both published and unpublished, on the novel, including those by Henry James, Algernon Charles Swinburne, and John Ruskin Judiciously chosen from the wealth of essays onThe Mill on the Flosspublished in this century, ""Criticism"" includes ten of the best studies of the novel, providing the reader with historical and critical perspective. The contributors are Leslie Stephen, Virginia Woolf, F. R. Leavis, George Levine, Ulrich Knoepflmacher, Philip Fisher, Mary Jacobus, John Kucich, Margaret Homans, and Deirdre David. A Chronology and Selected Bibliography are also included.","Aphrodite's Secret (Superhero Central #3). Jason Murphy is a Protector--a man endowed with a ton of superpowers, none of which can help in his love life. The woman he loves no longer trusts him because he put his supercareer before her. Now, Jason vows to win her back at any cost. Original.",Lake Orion (Images of America: Michigan).,"When Red Is Black (Inspector Chen Cao #3). Inspector Chen Cao of the Shanghai Police Bureau is taking a vacation, in part because he is annoyed at his boss, Party Secretary Li, but also because he has been made an offer he can't refuse by Gu, a triad-connected businessman. For what seems to be a fortune--with no apparent strings attached-- he is to translate a business proposal for the New World, a complex of shops and restaurants to be built in Central Shanghai, evoking nostalgia for the ""glitter and glamour"" of the 1930s. It is up to Detective Yu, Chen's partner, to take charge of a new case. Yin, a novelist, has been murdered in her room. At first it seems that only a neighbor could have committed the crime, but when one confesses, Yu cannot believe that he is really the killer. As Yu looks further into Yin's life, ample motives begin to surface, even on the part of Internal Security. But it is only when Inspector Chen steps back into the investigation that the culprit is apprehended. And then Chen discovers how Gu has playe","Dragonsinger (Harper Hall #2). Pursuing her dream to be a Harper of Pern, Menolly studies under the Masterharper learning that more is required than a facility with music and a clever way with words.",Murder by Moonlight & Other Mysteries (New Adventures of Sherlock Holmes 19-24).,"The Easy Way to Stop Smoking: Join the Millions Who Have Become Nonsmokers Using the Easyway Method. A new edition of the revolutionary bestseller, with four million copies in print. Allen Carr's innovative Easyway method--which he discovered after his own 100-cigarette-a-day habit nearly drove him to despair--has helped millions kick smoking without feeling anxious and deprived. That's because he helps smokers discover the psychological reasons behind their dependency, explains in detail how to handle the withdrawal symptoms, shows them how to avoid situations when temptation might become too strong, and enables them to stay smoke-free. Carr discusses such issues as nicotine addiction; the social ""brainwashing"" that encourages smoking; the false belief that a cigarette relieves stress; the role boredom plays in sabotaging efforts to stop; and the main reasons for failure. With this proven program, smokers will be throwing away their packs for good.","To Kill a Mockingbird. The unforgettable novel of a childhood in a sleepy Southern town and the crisis of conscience that rocked it, To Kill A Mockingbird became both an instant bestseller and a critical success when it was first published in 1960. It went on to win the Pulitzer Prize in 1961 and was later made into an Academy Award-winning film, also a classic. Compassionate, dramatic, and deeply moving, To Kill A Mockingbird takes readers to the roots of human behavior - to innocence and experience, kindness and cruelty, love and hatred, humor and pathos. Now with over 18 million copies in print and translated into forty languages, this regional story by a young Alabama woman claims universal appeal. Harper Lee always considered her book to be a simple love story. Today it is regarded as a masterpiece of American literature.","Who Was Mark Twain?. A humorist, narrator, and social observer, Mark Twain is unsurpassed in American literature. Best known as the author of The Adventures of Huckleberry Finn, Mark Twain, not unlike his protagonist, Huck, has a restless spirit. He found adventure prospecting for silver in Nevada, navigating steamboats down the Mississippi, and making people laugh around the world. But Twain also had a serious streak and decried racism and injustice. His fascinating life is captured candidly in this enjoyable biography.","Ángeles y demonios (Robert Langdon #1). An ancient secret brotherhood. A devastating new weapon of destruction.When world-renowned Harvard symbologist Robert Langdon is summoned to a Swiss research facility to analyze a mysterious symbol--seared into the chest of a murdered physicist--he discovers evidence of the unimaginable: the resurgence of an ancient secret brotherhood known as the Illuminati...the most powerful underground organization ever to walk the earth. The Illuminati has now surfaced to carry out the final phase of its legendary vendetta against its most hated enemy--the Catholic Church. Langdon's worst fears are confirmed on the eve of the Vatican's holy conclave, when a messenger of the Illuminati announces they have hidden an unstoppable time bomb at the very heart of Vatican City. With the countdown under way, Langdon jets to Rome to join forces with Vittoria Vetra, a beautiful and mysterious Italian scientist, to assist the Vatican in a desperate bid for survival. Embarking on a frantic hunt through sealed","Witches Abroad (Discworld #12; Witches #3). Be careful what you wish for... Once upon a time there was a fairy godmother named Desiderata who had a good heart, a wise head, and poor planning skills--which unforunately left the Princess Emberella in the care of her other(not quite so good and wise) godmother when DEATH came for Desiderata. So now it's up to Magrat Garlick, Granny Weatherwax, and Nanny Ogg to hop on broomsticks and make for far-distant Genua to ensure the servant girl doesn'tmarry the Prince. But the road to Genua is bumpy, and along the way the trio of witches encounters the occasional vampire, werewolf, and falling house (well this is a fairy tale, after all). The trouble really begins once these reluctant foster-godmothers arrive in Genua and must outwit their power-hungry counterpart who'll stop at nothing to achieve a proper ""happy ending""--even if it means destroying a kingdom.","The Trial of God: (as it was held on February 25 1649 in Shamgorod). Where is God when innocent human beings suffer? This drama lays bare the most vexing questions confronting the moral imagination. Set in a Ukranian village in the year 1649, this haunting play takes place in the aftermath of a pogrom. Only two Jews, Berish the innkeeper and his daughter Hannah, have survived the brutal Cossack raids. When three itinerant actors arrive in town to perform a Purim play, Berish demands that they stage a mock trial of God instead, indicting Him for His silence in the face of evil. Berish, a latter-day Job, is ready to take on the role of prosecutor. But who will defend God? A mysterious stranger named Sam, who seems oddly familiar to everyone present, shows up just in time to volunteer. The idea for this play came from an event that Elie Wiesel witnessed as a boy in Auschwitz: ""Three rabbis--all erudite and pious men--decided one evening to indict God for allowing His children to be massacred. I remember: I was there, and I felt like crying. But there nobod","Julius Knipl Real Estate Photographer: The Beauty Supply District. Join Julius Knipl, Real Estate Photographer, on a leisurely stroll past The Institute for Soup-Nut Research and The Municipal Birthmark Registry. Savor the smell of a phone booth, circa 1961. Sign up for a guided tour of the oldest continually vacant storefront in America. Attend a championship grave-digging competition, or, should you feel you've wasted yet another day, you can check in for help at a local Misspent Youth Center. In ""The Beauty Supply District,"" a new twenty-four-page story, Knipl attends an evening concert and unwittingly enters the world of wholesale empathizers and chiaroscuro brokers who make the decisions critical to the production of aesthetic pleasure in all its forms -- from the shape of an olive jar to the score of a string quartet. From the Hardcover edition.",Doom Patrol Vol. 1: Crawling from the Wreckage (Doom Patrol #1). The first collection of Grant Morrison's DOOM PATROL run includes issues #19 -- 25 of the series.,The Sun Also Rises.,"Souvenir of Canada. Full of surprises and insights, Souvenir of Canada presents us as we have never seen ourselves before in an irresistible flow of text and image. Douglas Coupland offers new ways of seeing and experiencing Canada-looking at how it feels to be a Canadian right now and speculating what it might feel like in the future. From collective memories, he locates objects like stubbie beer bottles and ookpiks, Kraft dinner and maple walnut ice cream. And with the same unique sensibility, he considers significant events and relevant issues, like the flq crisis, Canada's relationship with the United States, medicare and the landscape itself. In the section humbly titled ""Cheese,"" he writes: ""When you assemble them together, foods that feel intuitively Canadian look more like camping trip provisions than actual groceries...Canada is a cold and northern country...from a biological standpoint, it is imperative that Canadians stockpile concentrated forms of sugars, carbohydrates, fats and salt."" The 50","The Last Shogun: The Life of Tokugawa Yoshinobu. In Ryotaro Shiba's account of the life of Japan's last shogun, Perry's arrival off the coast of Japan was merely the spark that ignited the cataclysm in store for the Japanese people and their governments. It came to its real climax with the fall of the Tokugawa shogunate in 1868, the event which forms the centerpiece of this book. The Meiji Restoration-as history calls it-toppled the shogunate, and brought a seventeen-year-old boy emperor back from the secluded Imperial Palace in Kyoto to preside over what amounted to a political and cultural revolution. With this, Japan's extraordinary self-modernization began in earnest. Coming to power just as the Tokugawa regime was suffering the worst military defeat in its history, Yoshinobu strongly suspected that the rule of the Tokugawas-the third and longest lived of Japan's three warrior governments - was swiftly becoming an anachronism. During a year of frenetic activity, he overhauled the military systems, reorganized the civil administra","The Origin of Consciousness in the Breakdown of the Bicameral Mind. At the heart of this classic, seminal book is Julian Jaynes's still-controversial thesis that human consciousness did not begin far back in animal evolution but instead is a learned process that came about only three thousand years ago and is still developing. The implications of this revolutionary scientific paradigm extend into virtually every aspect of our psychology, our history and culture, our religion -- and indeed our future.","Ghost in the Shell (Ghost in the Shell #1). In the rapidly converging landscape of the 21st century Major Kusanagi is charged to track down the craftiest and most dnagerous terrorists and cybercriminals, including ghost hackers When he track the trail of one hacker, her quest leads her to a world she could never have imagined.","The Samurai. One of the late Shusaku Endo's finest works, The Samuraitells of the journey of some of the first Japanese to set foot on European soil and the resulting clash of cultures and politics.","Sharpe's Fury (Sharpe #11). Richard Sharpe, the former private in His Majesty's army who now commands a company of riflemen, finds himself fighting his old enemies, the French, in 1811. Sharpe has been sent by Wellington on a mission to Cadiz, now the capital of Spain, to rescue the British ambassador -- who happens to be Wellington's brother -- from a spot of undiplomatic trouble. The city has been blockaded by the French but is supported by the British from the sea. It contains a rare mix of pro- and anti-British citizens, diplomats, courtiers, adventurers, and spies. Sharpe's mission -- complicated, undercover, and political -- turns out to be completely different from the one on which he was sent. It brings him through the besieging enemy army to triumph in the Battle of Barrosa, where the British, deserted by their allies, defeat an overwhelmingly stronger French force.","Red Dragon (Hannibal Lecter #1). Will Graham stands in a silent, empty house communing with a killer. An FBI instructor with a gift for hunting madmen, Graham knows what his murderer looks like, how he thinks, and what he did to his victims after they died. Now Graham must try to catch him. But to do it, he must feel the heat of a killer's brain, draw on the macabre advice of a dangerous mental patient, Dr. Hannibal Lecter, and follow a trail of microscopic clues to the place where another family has already been chosen to die--and where an innocent woman has found the Dragon first.",Los Versos Satánicos.,"Judy Moody Declares Independence (Judy Moody #6). When a visit to Boston spurs Judy's interest in Revolutionary heroes and heroines, she's soon on a quest for more independence in this hilarious new episode from Megan McDonald and Peter H. Reynolds. Huzzah! She, Judy Moody, would hereby, this day, make the Judy Moody Declaration of Independence. With alien rights and her own Purse of Happiness and everything. Hear ye! Hear ye! Everyone knows that Judy Moody has a mood for every occasion, and now a visit to Boston has put our famous third grader in a revolutionary mood. When Judy meets an English girl named Tori at the Tea Party ship, she is gobsmacked to learn how many liberties her British friend enjoys -- her very own phone, private loo, and pounds of allowance. When a day of cheerfully doing her chores doesn't earn Judy Moody more rights, and staging a revolt in the form of a tea-throwing Boston Tub Party has her dad reading the riot act, Judy is forced into temporary retreat. Who would guess that a real-life crisis involving her b","Mine All Mine!: A Book About Pronouns. Perfect for introductory grammar and language arts lessons! What is a pronoun? How do you use it? Do you say, ""These candies are for him and me""--or ""he and I?"" Explore languageand discover how to use pronouns and their many forms from personal to reflexive to demonstrative. Praise for Mine, All Mine!: ""Once again, Heller has taken a part of speech and made its function perfectly and entertainingly clear. ... From cover to cover, the stylishly drawn, brilliantly colored, double-paged illustrations grab readers and don't let go. ... Who would have thought pronouns could be such fun?""--School Library Journal ""Bold, handsome illustrations accompanied by a jaunty, rhymed text demonstrate their importance ... with all the panache of a Madison Avenue publicity campaign. ... Language teachers, rejoice!""--The Horn Book About the Explore! series: Dedicated to helping children learn a variety of nonfiction subjects, the Exploreseries uses pitch-perfect rhyming text and brilliantly illustrated im",Amor Y Respeto/love And Respect: El Respeto Que El Desesperadamente Necesita/ The Love She Most Desires And The Respect He Desperately Needs.,"The Hello Goodbye Window. Little girl 6-7 visits grandparents Nanna and Poppy (one lighter skin than other) and waves greetings through their magical window. They lovingly watch stars, play games, work garden, and listen to Poppy play harmonica. Bright simple illustrations. In many languages.","The Cuckoo Tree (The Wolves Chronicles #6). When Dido Twite sets foot back on English soil, more mischief awaits. As her friend Captain Hughes recovers from a carriage accident, Dido stays at the Dogkennel Cottages and meets the odd inhabitants of Tegleaze Manor: strange old Lady Tegleaze, her nephew, Tobit, and his wizened, witchy nurse, Sannie. Soon suspicious things happen. A priceless miniature is stolen. Tobit is framed and then kidnapped. A twin sister is found. And when Dido catches a glimpse of her rascally father in Petworth, she is sure she's in the midst of another Hanoverian plot. Can she get to London to warn the king and save St. Paul's Cathedral from sliding into the Thames?",Healthy Cooking for IBS: 100 Delicious Recipes to Keep You Symptom-Free.,Zombie.,"Hatchet (Brian's Saga #1). Brian is on his way to Canada to visit his estranged father when the pilot of his small prop plane suffers a heart attack. Brian is forced to crash-land the plane in a lake--and finds himself stranded in the remote Canadian wilderness with only his clothing and the hatchet his mother gave him as a present before his departure. Brian had been distraught over his parents' impending divorce and the secret he carries about his mother, but now he is truly desolate and alone. Exhausted, terrified, and hungry, Brian struggles to find food and make a shelter for himself. He has no special knowledge of the woods, and he must find a new kind of awareness and patience as he meets each day's challenges. Is the water safe to drink? Are the berries he finds poisonous? Slowly, Brian learns to turn adversity to his advantage--an invading porcupine unexpectedly shows him how to make fire, a devastating tornado shows him how to retrieve supplies from the submerged airplane. Most of all, Brian leaves beh","Sagwa the Chinese Siamese Cat. ""Before you go out into the world,"" Ming Miao told her five kittens, ""you must know the true story of your ancestors...."" And so begins the story of Sagwa of China, a mischievous, pearl white kitten. Sagwa lived in the House of the Foolish Magistrate, a greedy man who made up rules that helped only himself. One day, Sagwa fell into an inkwell and accidentally changed one of the Foolish Magistrate's rules. Little did Sagwa know she would alter the fate -- and the appearance -- of Chinese cats forever!","The Lord of the Rings (The Lord of the Rings #1-3). Comprising three oversized hardback volumes housed in a full-colour slipcase, this edition of Tolkien's classic masterpiece is fully illustrated in watercolour throughout by the acclaimed and award-winning artist, Alan Lee.","The Promise. ""A superb mirror of a place, a time, and a group of people who capture our immediate interest and hold it tightly."" --The Philadelphia Inquirer Young Reuven Malter is unsure of himself and his place in life. An unconventional scholar, he struggles for recognition from his teachers. With his old friend Danny Saunders--who himself had abandoned the legacy as the chosen heir to his father's rabbinical dynasty for the uncertain life of a healer--Reuvan battles to save a sensitive boy imprisoned by his genius and rage. Painfully, triumphantly, Reuven's understanding of himself, though the boy change, as he starts to approach the peace he has long sought...","First Things First. What are the most important things in your life? Do they get as much care, emphasis, and time as you'd like to give them? Far from the traditional ""be-more-efficient"" time-management book with shortcut techniques, First Things Firstshows you how to look at your use of time totally differently. Using this book will help you create balance between your personal and professional responsibilities by putting first things first and acting on them. Covey teaches an organizing process that helps you categorize tasks so you focus on what is important, not merely what is urgent. First you divide tasks into these quadrants: Important and Urgent (crises, deadline-driven projects) Important, Not Urgent (preparation, prevention, planning, relationships) Urgent, Not Important (interruptions, many pressing matters) Not Urgent, Not Important (trivia, time wasters) Most people spend most of their time in quadrants 1 and 3, while quadrant 2 is where quality happens. ""Doing more things faster is no substi","What the Body Remembers. Out of the rich culture of India and the brutal drama of the 1947 Partition comes this lush and eloquent debut novel about two women married to the same man. Roop is a young girl whose mother has died and whose father is deep in debt. So she is elated to learn she is to become the second wife of a wealthy Sikh landowner in a union beneficial to both. For Sardaji's first wife, Satya, has failed to bear him children. Roop believes that she and Satya, still very much in residence, will be friends. But the relationship between the older and younger woman is far more complex. And, as India lurches toward independence, Sardarji struggles to find his place amidst the drastic changes. Meticulously researched and beautifully written, What the Body Remembersis at once poetic, political, feminist, and sensual.","Captivating: Unveiling the Mystery of a Woman's Soul. Every woman was once a little girl. And every little girl holds in her heart her most precious dreams. She longs to be swept up into a romance, to play an irreplaceable role in a great adventure, to"" be"" the Beauty of the story. And yet--how many women do you know who ever find that life? Most women think they have to settle for a life of efficiency and duty, striving to be the women they ""ought"" to be but often feeling they have failed. Sadly, too many messages for Christian women add to the pressure. ""Do these ten things, and you will be a godly woman."" The effect has not been good on the feminine soul. The message of ""Captivating"" is this: Your heart matters more than anything else in all creation. The desires you had as a little girl and the longings you still feel are telling you of the life God created you to live. He offers to rescue your heart and release you to live as a fully alive and feminine woman. A woman who is truly captivating.",Jojo's Bizarre Adventure Tome 4: Dans la salle du dragon à deux têtes (Phantom Blood #4).,Magical Creatures (Easy To Read! Easy To Draw!).,"Wild Fire (John Corey #4). From #1 New York Timesbestselling author Nelson DeMille comes a suspenseful new novel featuring Detective John Corey and an all-too-plausible conspiracy to detonate a nuclear bomb in two major American cities.Welcome to the Custer Hill Club--an informal men's club set in a luxurious Adirondack hunting lodge whose members include some of America's most powerful business leaders, military men, and government officials. Ostensibly, the club is a place to gather with old friends, hunt, eat, drink, and talk off-the-record about war, life, death, sex and politics. But one Fall weekend, the Executive Board of the Custer Hill Club gathers to talk about the tragedy of 9/11 and what America must do to retaliate. Their plan is finalized and set into motion. That same weekend, a member of the Federal Anti-Terrorist Task Force is reported missing. His body is soon discovered in the woods near the Custer Hill Club's game reserve. The death appears to be a hunting accident, and that's how the local p","Black Meets White. Crisp, die-cut artwork and a spare, sprightly text lure readers on a playful exploration of opposites. Purr-fect! What happens when Black meets White? They make polka dots (""That tickles!"" Black giggles.), a checkerboard, stripes, wiggles, and more. And when Black and White come together, get ready for a big-eyed, whiskered surprise! With clever diecuts, flaps, and a final, satisfying tab, the mischievous BLACK MEETS WHITE proves that opposites can be attractive indeed.","Philosophy in the Flesh: The Embodied Mind and its Challenge to Western Thought. What are human beings like? How is knowledge possible? What is truth? Where do moral values come from? Questions like these have stood at the center of Western philosophy for centuries. In addressing them, philosophers have made certain fundamental assumptions-that we can know our own minds by introspection, that most of our thinking about the world is literal, and that reason is disembodied and universal-that are now called into question by well-established results of cognitive science. It has been shown empirically that:Most thought is unconscious. We have no direct conscious access to the mechanisms of thought and language. Our ideas go by too quickly and at too deep a level for us to observe them in any simple way.Abstract concepts are mostly metaphorical. Much of the subject matter of philosopy, such as the nature of time, morality, causation, the mind, and the self, relies heavily on basic metaphors derived from bodily experience. What is literal in our reasoning about such conce",The Far Pavilions.,Zodiac.,"Another Bullshit Night in Suck City. Nick Flynn met his father when he was working as a caseworker in a homeless shelter in Boston. As a teenager he'd received letters from this stranger father, a self-proclaimed poet and con man doing time in federal prison for bank robbery. Another Bullshit Night in Suck Citytells the story of the trajectory that led Nick and his father onto the streets, into that shelter, and finally to each other. .","Life on Planet Rock: From Guns N' Roses to NIRVana a Backstage Journey Through Rock's Most Debauched Decade. For the generation coming of age in the years from 1987 to 1994, RIPmagazine was every bit as crucial as Rolling Stone. Life onPlanet Rockdescribes how Lonn Friend, the editor of RIP, became the Zelig-like chronicler of the biggest musical moments of that time from introducing Guns N Roses (in nothing but a top hat, underwear, and cowboy boots) to sitting in during the making of Metallica s Black Album. Life onPlanet Rockprovides revealing portraits of artists as varied as Kurt Cobain, Gene Simmons, Alice Cooper, Axl Rose, James Hetfield, Steven Tyler, and many more. Part oral history, part candid and humorous memoir, it is a wormhole back to a fast-moving time in music that saw tastes flash from new wave to hair metal to grunge, told as only someone who was there through it all could tell it.""","The Absolute Sandman Volume One. One of the most popular and critically acclaimed comic book titles of all time, New York Timesbest-selling author 's masterpiece The Sandmanset new standards for mature, lyrical fantasy and graphic narrative. Now, Vertigo and DC Comics are proud to present the first of four definitive Absolute Editions collecting this groundbreaking series in its entirety. The Absolute Sandman, Volume Onereprints issues 1-20 of for the World Fantasy Award-winning story ""A Midsummer Night's Dream"" from The Sandman19. Finally, a gallery of character design sketches show the evolution of Dream of the Endless.","Fire from Within. Fire from Withinis the author's most brilliant thought-provoking and unusual book, one in which Castaneda, under the tutelage of don Juan and his ""disciples,"" at last constructs, from the teachings of don Juan and his own experiences, a stunning portrait of the ""sorcerer's world"" that is crystal-clear and dizzying in its implications. Each of Carlos Castaneda's books is a brilliant and tantalizing burst of illumination into the depths of our deepest mysteries, like a sudden flash of light, like a burst of lightning over the desert at night, which shows us a world that is both alien and totally familiar -- the landscape of our dreams.","A Preface to Democratic Theory. Robert Dahl's Preface helped launch democratic theory fifty years ago as a new area of study in political science, and it remains the standard introduction to the field. Exploring problems that had been left unsolved by traditional thought on democracy, Dahl here examines two influential models--the Madisonian, which represents prevailing American doctrine, and its recurring challenger, populist theory--arguing that they do not accurately portray how modern democracies operate. He then constructs a model more consistent with how contemporary democracies actually function, and, in doing so, develops some original views of popular sovereignty and the American constitutional system. For this fiftieth-anniversary edition, Dahl has written an extensive new afterword that reevaluates Madisonian theory in light of recent research. And in a new foreword, he reflects back on his influential volume and the ways his views have evolved since he wrote it. For any student or scholar of political sci","Joe College. For many college students, spring break means fun and sun in Florida. For Danny, a Yale junior, it means two weeks behind the wheel of the ""Roach Coach,"" his father's lunch truck, which plies the parking lots of office parks in central New Jersey. But Danny can use the time behind the coffee urn to try to make sense of a love life that's gotten a little complicated. There's loyal and patient hometown honey Cindy and her recently dropped bombshell to contend with, and there's also lissome Polly back in New Haven--with her shifting moods, perfect thrift store dresses, and inconvenient liaison with a dashing professor. If girl problems aren't enough, there's the constant menace of the Lunch Monsters, a group of thugs who think Danny has planted the Roach Coach in their territory. Joe Collegeis Tom Perrotta's warmest and funniest fiction yet, a comic journey into the dark side of love, higher education, and food service.","As Nature Made Him: The Boy Who Was Raised as a Girl. In 1967, after a twin baby boy suffered a botched circumcision, his family agreed to a radical treatment that would alter his gender. The case would become one of the most famous in modern medicine -- and a total failure. As Nature Made Him tells the extraordinary story of David Reimer, who, when finally informed of his medical history, made the decision to live as a male. A macabre tale of medical arrogance, it is first and foremost a human drama of one man's -- and one family's -- amazing survival in the face of terrible odds.","Trainspotting. Ils sont quatre amis inseparables qui ont en commun une enfance, une ville, des voisins, le chomage. Et surtout une devotion appliquee pour une seule et unique heroine en forme de seringue. On entend ces quatre-la, on les ecoute : chacun raconte son Edimbourg, entre deux pintes de biere, apres un fix, avant une tasse de the, ou pendant une baston a coup d'aiguilles a tricoter taillees en pointe. On voit les corps manges par le virus, la drogue, les hallucinations, et puis quelque chose se detache : on est d'Edimbourg, mais comme on est de Fresnes ou de la Sante. Il faut s'echapper. Livre culte des annees 1990, Trainspottinga ete porte a l'ecran par Dany Boyle.",Las rubias de 5th Avenue.,The First Deadly Sin (Deadly Sins #2). A compelling drama of a crusty New York City cop who stalks the streets for a psychotic killer while his wife lies dying of an incurable illness. 2 cassettes.,"The Case of the Half-Wakened Wife. In the dead of night, a thick fog lies over the black waters. You are aboard a fancy yacht full of fancy people who loathe one another. Suddenly you hear... A scream! A splash! A shot! The fateful cry, ""Man Overboard!"" And the next thing you know, you find yourself clutching a beautiful woman wearing only a flimsy nightgown. In her hands she holds a gun. That's the predicament in which Perry Mason suddenly finds himself. But that's only the beginning. Things happen speedily and this woman finds herself in a court of law accused of murder. Perry Mason is the only person in the world to believe that she is innocent. So what does the grateful woman do? She fires him. Things are not as they seem.",Mark Twain: Selected Works.,"Wyrms. The sphere is alien in origin, but has been controlled by man for millennia. A legend as old as the stars rules this constructed world; When the seventh seventh seventh human Heptarch is crowned, he will be the Kristos and will bring eternal salvation . . . or the destruction of the cosmos. Patience is the only daughter of the rightful Heptarch, but she, like her father before her, serves the usurper who has destroyed her family. For she has learned the true ruler's honor. Duty to one's race is more important than duty to one's self. But the time for prudence has passed, and that which has slept for ages has awakened. And Patience must journey to the heartsoul of this planet to confront her destiny . . . and her world's.","The Sea Hunters (The Sea Hunters #1). FROM THE CREATOR OF DIRK PITT(r) -- THE WORLD'S #1 ACTION HERO...REALSTORIES. REALEXCITEMENT. REALADVENTURE. THE SEA HUNTERS A steamboat goes up in flames...and down to the bottom of the sea. A locomotive plunges into a creek...and vanishes into mystery. A German U-boat sends an American troop transport, and eight hundred on board, to a watery grave...on Christmas Eve. Clive Cussler and his crack team of NUMA (National Underwater Marine Agency, a nonprofit organization that searches for historic shipwrecks) volunteers have found the remains of these and numerous other tragic wrecks. Here are the dramatic, true accounts of twelve of the most remarkable underwater discoveries made by Cussler and his team. As suspenseful and satisfying as the best of his Dirk Pitt novels, The Sea Huntersis a unique story of true commitment and courage.",Mangoes & Curry Leaves: Culinary Travels Through the Great Subcontinent.,"Jack of Kinrowan: Jack the Giant-Killer / Drink Down the Moon. Jack of Kinrowan An acknowledged classic of contemporary fantasy, Jack of Kinrowan brings together in one volume Charles de Lint's rollicking saga of wild faerie magic on the streets of the city. Jack, the Giant Killer A faceless gang of bikers on Wild Hunt through the streets of present-day Ottawa hurtles young Jacky Rowan across the threshold into the perilous land of Faerie. There, to her dismay, she is hailed as the Jack of Kinrowan, a once-and-future trickster hero whose lot is to save the Elven Courts from unimaginable evil. Drink Down the Moon Once the realm of Faerie drew its power from the Moon herself. But now a ghastly creature has stolen that power and enslaved the Fair Folk--and Jacky Rowan herself. Only Johnny Faw, a hadsome fiddler unaware of his magical gifts, has the power to set them free.","Fiddlers (87th Precinct #55). This installment in the 87th Precinct series finds the detectives stumped by a serial killer who doesn't fit the profile. A blind violinist taking a smoke break, a cosmetics sales rep cooking an omelet in her own kitchen, a college professor trudging home from class, a priest contemplating retirement in the rectory garden, an old woman out walking her dog--these are the seemingly random targets shot twice in the face. But most serial killers don't use guns. Most serial killers don't strike five times in two weeks. And most serial killers' prey share something more than being over fifty years of age. Now it falls to Detective Steve Carella and his colleagues in the 87th Precinct to find out what-or whom-the victims had in common before another body is found. With trademark wit and sizzling dialogue, McBain unravels a mystery and examines the dreams we chase in the darkening hours before the fiddlers have fled.",Rachel se va de viaje (La familia Walsh #2).,"Macbeth (No Fear Shakespeare). No Fear Shakespeare gives you the complete text of Macbeth on the left-hand page, side-by-side with an easy-to-understand translation on the right. Each No Fear Shakespeare contains The complete textof the original play A line-by-line translationthat puts Shakespeare into everyday language A complete list of characterswith descriptions Plenty of helpful commentary","Hitty Her First Hundred Years. Hitty is a doll of great charm and character. It is indeed a privilege to publish her memoirs, which, besides being full of the most thrilling adventures on land and sea, also reveal her delightful personality. One glance at her portrait will show that she is no ordinary doll. Hitty, or Mehitable as she was really named, was made in the early 1800s for Phoebe Preble, a little girl from Maine. Young Phoebe was very proud of her beautiful doll and took her everywhere, even on a long sailing trip in a whaler. This is the story of Hitty's years with Phoebe, and the many that follow in the life of a well-loved doll.",Chaucer's Canterbury Tales.,"The Diary of Virginia Woolf Volume Two: 1920-1924. The second volume covers a crucial period in Woolf's development as a writer. Edited by Anne Olivier Bell, assisted by Andrew McNeillie; Index.",Dancing on His Grave: A True Story of Survival and Triumph.,"Truckers (Bromeliad Trilogy #1). They're four inches tallin a human-sized world.Under the floorboards of the Store is a world of four-inch-tall nomes that humans never see. It is commonly known among these nomes that Arnold Bros. created the Store for them to live in, and he declared: ""Everything Under One Roof."" Therefore there can be no such thing as Outside. It just makes sense. That is, until the day a group of nomes arrives on a truck, claiming to be from Outside, talking about Day and Night and Snow and other crazy legends. And they soon uncover devastating news: The Store is about to be demolished. It's up to Masklin, one of the Outside nomes, to devise a daring escape plan that will forever change the nomes' vision of the world. . . .","Duel. Remember that murderous semi chasing Dennis Weaver down a lonely stretch of desert highway? Duel, Steven Spielberg's acclaimed first film, was adapted by Richard Matheson from his unforgettable story of the same name. But ""Duel"" is only one of the classic suspense tales in this outstanding collection of stories by the Grand Master of Horror, which also contains Matheson's legendary first story, ""Born of Man and Woman,"" as well as several stunning shockers that inspired memorable episodes of The Twilight Zone, including ""Little Girl Lost,"" ""Steel,"" and ""Third from the Sun."" Like Matheson's previous collection, Nightmare at 20,000 Feet, this collection is an indispensable treasure trove of terror from the New York Timesbestselling author of I Am Legendand What Dreams May Come.","Moonraker. Drax is the head of the Moonraker project and a powerful millionaireas well as a cheat at cards. 007 suspects that there is more to him than meets the eye. As he begins to delve deeper into the goings on at the Moonraker base, he discovers that both the project and its leader are something other than they pretend to be.","Kentucky Straight: Stories. Riveting, often heartbreaking stories that take readers through country that is figuratively and literally unmapped. These stories are set in a nameless community too small to be called a town, a place where wanting an education is a mark of ungodly arrogance and dowsing for water a legitimate occupation. Offutt has received a James Michener Grant and a Kentucky Arts Council Award.","The Origin of Species. As much as anyone in the modern era, Charles Darwin changed the course of human thought. The impact on Western civilization of his seminal work has been broad and deep: not only the biological sciences but also social thought, philosophy, ethics, religion, and literature have all been shaped and reshaped by evolutionary concepts. Here, in what Paul Moody (writing in Victorian Studies) has called ""a masterly condensation,"" is a classic edition of Darwin's The Origin of Species . It retains all of the substance of the original book, but only the essential elements of its profuse detail. Philip Appleman, the editor of Darwin, a Norton Critical Edition (""the best Darwin anthology on the market,"" according to Stephen Jay Gould), has cut deftly to the essence of Darwin's classic, losing none of the continuity or flavor of the original and making available an edition that modern readers will not find overpowering. This revision includes a new introduction by Professor Appleman that perceptive",The covert war against rock: what you don't know about the deaths of Jim Morrison Tupac Shakur Michael Hutchence Brian Jones Jimi Hendrix Phil Ochs Bob Marley Peter Tosh John Lennon The Notorious B.I.G. Who kills the rock stars?,Mon épouse américaine.,"And Then There Were None. Agatha Christie's most popular and best-selling whodunit in print and audio, And Then There Were None, was rated tenth by the Mystery Writers of America Top 100 Mystery Novels of All Time. Ten people arrive on Indian Island off England's southwest coast, lured to a mansion by invitations from a mysterious host. As one guest after another is murdered, terror mounts in Christie's most popular work, an elaboration of the famous children's rhyme Ten Little Indians.","One Thousand White Women: The Journals of May Dodd (One Thousand White Women #1). One Thousand White Womenis the story of May Dodd and a colorful assembly of pioneer women who, under the auspices of the U.S. government, travel to the western prairies in 1875 to intermarry among the Cheyenne Indians. The covert and controversial ""Brides for Indians"" program, launched by the administration of Ulysses S. Grant, is intended to help assimilate the Indians into the white man's world. Toward that end May and her friends embark upon the adventure of their lifetime. Jim Fergus has so vividly depicted the American West that it is as if these diaries are a capsule in time.","Captive Dreams. Also see: Alternate Cover Editions for this ISBN [ACE]  Double the heat: the queens of super-sexy paranormal romance join forces for a one-of-kind novel. Celeste and Corinne Carson are more than sisters-they're bestselling writers, each with a fantasy-fulfilling alpha-male hero. For Celeste, it's Jarred, a conqueror from the future. For Corinne, it's the barbarian Mykhayl from a world long ago. Devilishly sensual warriors, Jarred and Mykhayl have something in common themselves-they're both more real than their creators could have imagined. Fearing that the sisters are about to write them off, Jarred and Mykhayl decide to exact sweet revenge. The plan? Kidnap Celeste and Corinne, spirit them away to the very worlds of which they wrote, and persuade them to surrender to the sublime punishments of their own uninhibited imaginations.","Ivanhoe. At the dawn of the Middle Ages, a gripping tale of chivalry and suspense emerges. Two distinguished knights -- one Saxon, one Norman -- have returned from the Crusades. Though they fought on the same side, they now have a score to settle. What begins as a joust between two rivals quickly escalates into clanwide mayhem and a fast-paced series of battles for revenge, honor, and love. Sir Walter Scott's Ivanhoewas one of the first great historical novels of western literature. At last, this extraordinary work has been brought to life as a lavishly illustrated storybook. Marianna Mayer's inspired adaptation combined with magnificent oil paintings by John Rush create an essential introduction to the classic. This exquisitely designed page-turning volume is perfect for anyone with a passion for adventure.",Seabiscuit: The Saga of a Great Champion.,"Aphrodite: A Memoir of the Senses. Under the aegis of the Goddess of Love, Isabel Allende uses her storytelling skills brilliantly in Aphroditeto evoke the delights of food and sex. After considerable research and study, she has become an authority on aphrodisiacs, which include everything from food and drink to stories and, of course, love. Readers will find here recipes from Allende's mother, poems, stories from ancient and foreign literatures, paintings, personal anecdotes, fascinating tidbits on the sensual art of foodand its effects on amorous performance, tips on how to attract your mate and revive flagging virility, passages on the effect of smell on libido, a history of alcoholic beverages, and much more. An ode to sensuality that is an irresistible blend of memory, imagination and the senses, Aphroditeis familiar territory for readers who know her fiction.","Dead Babies. If the Marquis de Sade were to crash one of P. G. Wodehouse's house parties, the chaos might resemble the nightmarishly funny goings-on in this novel by the author of London Fields. The residents of Appleseed Rectory have primed themselves both for a visit from a triad of Americans and a weekend of copious drug taking and sexual gymnastics. There's even a heifer to be slugged and a pair of doddering tenants to be ingeniously harassed. But none of these variously bright and dull young things has counted on the intrusion of ""dead babies"" -- dreary spasms of reality. Or on the uninvited presence of a mysterious prankster named Johnny, whose sinister idea of fun makes theirs look like a game of backgammon.",Die Farbe von Wasser.,"Diary of a Mistress. What should a wife believe? The words of her husband or the diary of his mistress? From the author of Secret Societycomes a tale of love and jealousy in which two women struggle to separate fact from fiction. Monicacounts her blessings -- she has a husband who is not only devoted to her but is also committed to being a strong, caring father to their twin sons. When Carlos surprises her with an unforgettably romantic getaway, Monica knows her husband is still very much in love with her -- and she with him. But an unexpected package threatens to change everything Monica's ever believed about her husband. Angelahas adopted a sex-them-and-leave-them attitude toward the married men she's bedded over the last five years. Then she met Monica's Carlos. Now she will stop at nothing to get him for herself -- even if that means destroying her own life and another woman's family.",Human Traces.,"The Sword of Straw (The Sangreal Trilogy #2). Embark upon a quest rife with magic, wonder, and forces as dark as midnight. . . . Parallel universes and grave danger are nothing new to Nathan Ward. During his last mission, he risked life and limb to retrieve the Grail for safekeeping. But Nathan's adventures are just beginning. Lately his dreams have been transporting him to a desolate city whose people have fled-save for a sickly king and his daughter, Princess Nell. In their decaying hilltop castle, they live in the shadow of a terrifying curse inflicted by a sword that holds within its gleaming metal an ancient demon conjured by the universe's most powerful wizard. It is a sword that brings death to anyone who dares to draw it from its sheath. But the king is dying, and the legend claims that only a stranger can save him . . . and that this stranger alone is destined to awake-and defeat-the dark evil in the sword. But who among mortals and spirits could ever imagine that a boy materializing into alternate worlds still dressed in","The Nightmare Room: The Nightmare Begins! (The Nightmare Room #1-3). You hold in your hand the key to a shadow world of shivers and screams. Take a step away from the safe, comfortable world you know. Unlock the door to terror. There's always room for one more in ... The Nightmare Room. A Triple threat Danielle hypnotized her brother as a joke -- but now she can't wake him up! DON'T FORGET ME! Will Luke defeat the evil Fate Master who lives in his locker? Or will he pass the curse on to his best friend? LOCKER 13 Maggie has her palm read at a carnival -- and then the terrifying accidents begin! MY NAME IS EVIL","The Red and the Black. A Major New Translation The Red and the Black, Stendhal's masterpiece, is the story of Julien Sorel, a young dreamer from the provinces, fueled by Napoleonic ideals, whose desire to make his fortune sets in motion events both mesmerizing and tragic. Sorel's quest to find himself, and the doomed love he encounters along the way, are delineated with an unprecedented psychological depth and realism. At the same time, Stendhal weaves together the social life and fraught political intrigues of post-Napoleonic France, bringing that world to unforgettable, full-color life. His portrait of Julien and early-nineteenth-century France remains an unsurpassed creation, one that brilliantly anticipates modern literature. Neglected during its time, The Red and the Blackhas assumed its rightful place as one of the world's great books, and Burton Raffel's extraordinary new translation, coupled with an enlightening Introduction by Diane Johnson, helps it shine more brightly than ever before.",Butterfly Suits (Disney's Little Einsteins).,"All-American Girl (All-American Girl #1). Top Ten Reasons Samantha Madison is in Deep Trouble 10. Her big sister is the most popular girl in school 9. Her little sister is a certified genius 8. She's in love with her big sister's boyfriend 7. She got caught selling celebrity portraits in school 6. And now she's being forced to take art classes 5. She's just saved the president of the United States from an assassination attempt 4. So the whole world thinks she is a hero 3. Even though Sam knows she is far, far from being a hero 2. And now she's been appointed teen ambassador to the UN And the number-one reason Sam's life is over? 1. The president's son just might be in love with her",The Green Pearl (Lyonesse #2).,"A Million Little Pieces. Intense, unpredictable, and instantly engaging, this is a story of drug and alcohol abuse and rehabilitation as it has never been told before. It is also the introduction of a bold and talented literary voice. Before considering reading this book, please see the BookBrowse note on the book jacket/review page. BookBrowse Note: January 9th 2006: An article in the Smoking Gun claimed that James Frey (author of A Million Little Pieces and My Friend Leonard) fabricated key parts of his books. They cited police records, court documents and interviews with law enforcement agents which belie a number of Frey's claims regarding criminal charges against him, jail terms and his fugitive status. In an interview with the Smoking Gun, Frey admitted that he had 'embellished central details' in A Million Little Pieces and backtracked on claims he made in the book. January 26th 2006. Frey's publisher stated that while it initially stood by him, after further questioning of the author, the house has ""sa","Mediterranean Winter: The Pleasures of History and Landscape in Tunisia Sicily Dalmatia and the Peloponnese. In Mediterranean Winter, Kaplan, bestselling author of Balkan Ghosts, relives an austere journey he took as a youth thru the off-season Mediterranean. The awnings are rolled up. Other tourists are gone. Cold damp weather takes him back to the 1950s & earlier--a golden, intensely personal age of tourism. Decades ago, He voyaged from N. Africa to Italy, Yugoslavia & Greece, enjoying the radical freedom of youth, unaccountable to time because there was always time to make up for mistakes. He recalls the journey less to look inward into his own past than to look outward in order to dissect the process of learning thru travel, in which a succession of new landscapes can lead to books & artwork never before encountered. He 1st imagines Tunis as the glow of gypsum lamps shimmering against lime-washed mosques; the city he actually discovers is even more intoxicating. He goes to the ramparts of a Turkish kasbah where Carthaginian, Roman & Byzantine forts once stood: ""I could see deep into Alger","Kill Your Boyfriend. A Vertigo cult classic returns with this new, third printing of KILL YOUR BOYFRIEND, written by Grant Morrison (FINAL CRISIS, THE INVISIBLES) and illustrated by Philip Bond (VIMANARAMA) and D'Israeli (THE SANDMAN). Originally published in 1995, KILL YOUR BOYFRIEND is an over-the-top black comedy of rebellion and teen romance topped with a heady mix of random violence and dark humor. A British schoolgirl yearning for excitement joins up with an angry rebel boy intent on tearing down middle-class England. Through their violent, anti-authority joyride - filled with sex, drugs, and anarchy - Morrison offers a scathing, often-hilarious take on the British suburban landscape, where edgy behavior provides an escape from sanity. This new printing also includes Morrison's 1998 afterword to the story and the origami ""fortune teller,"" with bizarre messages specially created by Morrison.","Black Rednecks and White Liberals. This book presents the kind of eye-opening insights into the history and culture of race for which Sowell has become famous. As late as the 1940s and 1950s, he argues, poor Southern rednecks were regarded by Northern employers and law enforcement officials as lazy, lawless, and sexually immoral. This pattern was repeated by blacks with whom they shared a subculture in the South. Over the last half century poor whites and most blacks have moved up in class and affluence, but the ghetto remains filled with black rednecks. Their attempt to escape, Sowell shows, is hampered by their white liberal friends who turn dysfunctional black redneck culture into a sacrosanct symbol of racial identity. In addition to Black Rednecks and White Liberals, the book takes on subjects ranging from Are Jews Generic? to The Real History of Slavery.","Dead Witch Walking (The Hollows #1). All the creatures of the night gather in ""the Hollows"" of Cincinnati, to hide, to prowl, to party... and to feed. Vampires rule the darkness in a predator-eat-predator world rife with dangers beyond imagining - and it's Rachel Morgan's job to keep that world civilized. A bounty hunter and witch with serious sex appeal and an attitude, she'll bring 'em back alive, dead... or undead.","The Medici Giraffe and Other Tales of Exotic Animals and Power. A fascinating exploration, spanning two thousand years, ofthe central role exotic animals have played in war, diplomacy, and thepomp of rulers and luminaries.",On Film (Thinking in Action).,"The Medusa Stone (Philip Mercer #3). In the tiny African nation of Eritrea, the American spy satellite Medusa has crashed but not before its sensors revealed an underground kimberlite pipeline, the telltale sign of a huge load of diamonds. The mine turns out to be King Solomon's Lost Mine, but with it is a tale of heartbreak---it was children who worked and died in the mine for 400 years, leading to many local myths of curses. It is also practically on the border with a very unfriendly Sudan. Throw in two warring Israeli factions, a hidden monastery guarding an ancient secret, an evil Italian businessman with his own army, and an incredible amount of derring-do and you have one terrific action novel. In the Medusa Stoneby Jack DuBrul readers will find an intricate tale filled with action and intrigue. DuBrul is only thirty years old but he is already being compared to the very best in the spy and thriller genre.",The Changing Status of the Artist.,"Cuba: A New History. Events in Fidel Castro's island nation often command international attention and just as often inspire controversy. Impassioned debate over situations as diverse as the Cuban Missile Crisis and the Elian Gonzales affair is characteristic not only of modern times but of centuries of Cuban history. In this concise and up-to-date book, British journalist Richard Gott casts a fresh eye on the history of the Caribbean island from its pre-Columbian origins to the present day. He provides a European perspective on a country that is perhaps too frequently seen solely from the American point of view. The author emphasizes such little-known aspects of Cuba's history as its tradition of racism and violence, its black rebellions, the survival of its Indian peoples, and the lasting influence of Spain. The book also offers an original look at aspects of the Revolution, including Castro's relationship with the Soviet Union, military exploits in Africa, and his attempts to promote revolution in Latin","Black and Blue. For eighteen years, Fran Benedetto kept her secret. And hid her bruises. And stayed with Bobby because she wanted her son to have a father. And because, in spite of everything, she loved him. Then one night, when she saw the look on her ten-year-old son's face, Fran finally made a choice--and ran for both their lives. Now she is starting over in a city far from home, far from Bobby. And in this place she uses a name that isn't hers, and cradles her son in her arms, and tries to forget. For the woman who now calls herself Beth, every day is a chance to heal, to put together the pieces of her shattered self. And every day she waits for Bobby to catch up to her. Because Bobby always said he would never let her go. And despite the flawlessness of her escape, Fran Benedetto is certain of one thing: It is only a matter of time...","Conrad's Fate (Chrestomanci #5). Someone at Stallery Mansion is changing the world. At first, only small details, but the changes get bigger and bigger. It's up to Conrad, a twelve-year-old with terrible karma who's just joined the mansion's staff, to find out who is behind it. But he's not the only one snooping around. His fellow servant-in-training, Christopher Chant, is charming, confident, and from another world, with a mission of his own -- rescuing his friend, lost in an alternate Stallery Mansion. Can they save the day before Conrad's awful fate catches up with them?","Ghosts. Ghostsopens with a shipwreck, leaving a party of sightseers temporarily marooned on an island. The stranded castaways make their way towards the refuge of the isle's reclusive savant; but the big isolated house which is home to Professor Silas Kreutznaer and his laconic assistant, Licht, is also home to another, unnamed presence . . . Onto this seemingly haunted island, where a strange singing hangs in the air, Banville drops a scrumptious cast of characters - including a murderer - and weaves a tale where the details are clear but the conclusion polymorphous - shifting appearances, transformations and thwarted assumptions make this world of uneasy calm utterly enthralling.","Atonement. On the hottest day of the summer of 1934, thirteen-year-old Briony Tallis sees her sister Cecilia strip off her clothes and plunge into the fountain in the garden of their country house. Watching her is Robbie Turner, her childhood friend who, like Cecilia, has recently come down from Cambridge. By the end of that day, the lives of all three will have been changed for ever. Robbie and Cecilia will have crossed a boundary they had not even imagined at its start, and will have become victims of the younger girl's imagination. Briony will have witnessed mysteries, and committed a crime for which she will spend the rest of her life trying to atone.",Bill Buzz.,"The Hidden Smile of God: The Fruit of Affliction in the Lives of John Bunyan William Cowper and David Brainerd (The Swans Are Not Silent #2). Bunyan. Cowper. Brainerd. We read their stories and wonder how they endured. How does one survive twelve years in a dank prison cell? How does one survive month after month of a depression so debilitating that death seems the only hope? How does one endure tuberculosis? Or cancer, or emptiness, or death, or loneliness, or divorce? Whatever the trial may be, how does one endure without the soul shriveling up and blowing away with the breeze? In the lives of John Bunyan, William Cowper, and David Brainerd, we find the strength of soul that not only endures hardship, but honors God in the midst of it. The Giver and Sustainer of life enabled them to worship through all their suffering. That's why their affliction bore so much fruit. The story of their suffering, their perseverance, and their passion is one that can inspire the same hunger for the supremacy of God in your life. John Piper invites you to read their stories, consider their lives, and be encouraged that no labor and no sufferi","Bloodsucking Fiends (A Love Story #1). There is an alternate cover edition . Jody never asked to become a vampire. But when she wakes up under an alley Dumpster with a badly burned arm, an aching neck, superhuman strength, and a distinctly Nosferatuan thirst, she realizes the decision has been made for her. Making the transition from the nine-to-five grind to an eternity of nocturnal prowlings is going to take some doing, however, and that's where C. Thomas Flood fits in. A would-be Kerouac from Incontinence, Indiana, Tommy (to his friends) is biding his time night-clerking and frozen-turkey bowling in a San Francisco Safeway. But all that changes when a beautiful undead redhead walks through the door ... and proceeds to rock Tommy's life -- and afterlife -- in ways he never imagined possible.","A Shadow in Summer (Long Price Quartet #1). The city-state of Saraykeht dominates the Summer Cities. Its wealth is beyond measure; its port is open to all the merchants of the world, and its ruler, the Khai Saraykeht, commands forces to rival the Gods. Commerce and trade fill the streets with a hundred languages, and the coffers of the wealthy with jewels and gold. Any desire, however exotic or base, can be satisfied in its soft quarter. Blissfully ignorant of the forces that fuel their prosperity, the people live and work secure in the knowledge that their city is a bastion of progress in a harsh world. It would be a tragedy if it fell. Saraykeht is poised on the knife-edge of disaster. At the heart of the city's influence are the poet-sorcerer Heshai and the captive spirit, Seedless, whom he controls. For all his power, Heshai is weak, haunted by memories of shame and humiliation. A man faced with constant reminders of his responsibilities and his failures, he is the linchpin and the most vulnerable point in Saraykeht's greatn","Sex and Reason. How much of a say do we have in our own sexuality? More than is commonly assumed, Richard Posner asserts in this intellectually sweeping and compulsively readable account of sexuality and its social control. While acknowledging that sexual drives and orientations are formed in a fundamentally biological matrix, Posner contends that they are also subject to self-interested choice constrained by perceived costs and benefits. With this approach, he explores numerous puzzles presented by sexual history. Why, for instance, are ""macho"" cultures generally more tolerant of sexual deviance than their otherwise more sexually liberal Anglo-Saxon counterparts? Why were women in Victorian England less free sexually than women a century earlier? Why might the AIDS epidemic have reduced the ratio of illegitimate to legitimate births? Why is marital rape increasingly criminalized? Economics provides Sex and Reason with its unifying perspective, but Posner also draws heavily on biology, law, psychology","PanAroma: Jitterbug Perfume. <>In Pan Aroma lauern noch ganz andere Gefahren auf den Leser: Wohlgeruche schlagen um in infernalischen Gestank, Dematerialisation birgt das Risiko einer Reise ohne Wiederkehr, und die Fluchtigkeit des Parfums als Quelle ewigen Lebens wird zum Ausgangspunkt einer abenteuerlichen Jagd nach einem gottlichen Parfumflaschchen.","Spares. Spares - human clones, the ultimate health insurance. An eye for an eye, but some people are doing all the taking. Spares - the story of Jack Randall: burnt-out, dropped out, and with a zero credit rating at the luck bank. After five years lying low on a Spares farm, looking after inmates that can't even spell luck, he is finally faced with a chance at redemption....if he, and the spares, can run fast enough. Spares - a breathless race through strange, disturbing territories in a world all too close to our own. Spares - it's fiction. But only just...","Winter Dreams (Sweet Dreams #141). When Anna's family moves to the small, sleepy town of Blue Mountain, she's sure she's in for a lonely, uneventful junior year. Then she meets Michael Cartwright. He's charming, incredibility handsome - and recovering from an accident that has left him blind. Although Michael doesn't want anyone's sympathy, Anna is determined to break through his defences. But then she falls in love with him, before she realises that Michael is still loves a beautiful girl named Lisa. Hoping that Michael will care for her the way he cared for Lisa, Anna lies to him about the way she looks. Now it's only a matter of time before Michael learns the truth. And when he does Anna may lose him forever...","Del amor y otros demonios. Premio Nobel de Literatura ""Una obra atrevida y cautivadora... Garcia Marquez retiene una voz admirable y vital, y la pluma de un angel"". --Los Angeles Times Book Review El 26 de octubre de 1949 el reportero Gabriel Garcia Marquez fue enviado al antiguo convento de Santa Clara, que iba a ser demolido para edificar sobre el un hotel de cinco estrellas, a presenciar el vaciado de las criptas funerarias y a cubrir la noticia. Se exhumaron los restos de un virrey del Peru y su amante secreta, un obispo, varias abadesas, un bachiller de artes y una marquesa. Pero la sorpresa salto al destapar la tercera hornacina del altar mayor: se desparramo una cabellera de color cobre, de veintidos metros y once centimetros de largo, perteneciente a una nina. En la lapida apenas se leia el nombre: Sierva Maria de Todos los Angeles. Cuenta el propio Garcia Marquez: ""Mi abuela me contaba de nino la leyenda de una marquesita de doce anos cuya cabellera le arrastraba como una cola de novia, que habia muerto",Advanced Statistics Demystified.,"Midnight Voices. The sudden, tragic death of her husband leaves Caroline Evans alone in New York City to raise her children with little money and even less hope. When she meets and marries handsome, successful Anthony Fleming, the charismatic man of her dreams, she believes her life is destined for happiness. She and her children move into her new husband's spacious apartment in the legendary Rockwell on Central Park West. Despite her son's instinctive misgivings about the building and its residents, Caroline dismisses the odd behavior of her neighbors as pleasant eccentricities. But after her daughter begins to experience horrifying nightmares and a startling secret emerges, Caroline realizes that the magnificence of her new home masks a secret of unimaginable horror. . . .","Please Stop Laughing at Me... One Woman's Inspirational Story. In her poignant work, Jodee Blanco tells how school became a frightening and painful place, where threats, humiliation, and assault were as much a part of her daily experience as bubblegum and lip-gloss were for others. It is an unflinching look at what it means to be an outcast, how even the most loving parents can get it wrong, why schools fail, and how bullying is both misunderstood and mishandled.","The Sound of Mountain Water. A book of timeless importance about the American West, our ""native home of hope."" The essays, memoirs, letters, and speeches in this volume were written over a period of twenty-five years, a time in which the West witnessed rapid changes to its cultural and natural heritage, and Wallace Stegner emerged as an important conservationist and novelist. This collection is divided into two sections: the first features the eloquent sketches of the West's history and environment, directing our imagination to the sublime beauty of such places as San Juan and Glen Canyon; the concluding section examines the state of Western literature, of the mythical past versus the diminished present, and analyzes the difficulties facing any contemporary Western writer. The Sound of Mountain Wateris at once a hymn to the Western landscape, an affirmation of the hope embodied therein, and a careful investigation to the West's complex legacy.","A Long Way Down. In his eagerly awaited fourth novel, New York Times-bestselling author Nick Hornby mines the hearts and psyches of four lost souls who connect just when they've reached the end of the line. Meet Martin, JJ, Jess, and Maureen. Four people who come together on New Year's Eve: a former TV talk show host, a musician, a teenage girl, and a mother. Three are British, one is American. They encounter one another on the roof of Topper's House, a London destination famous as the last stop for those ready to end their lives. In four distinct and riveting first-person voices, Nick Hornby tells a story of four individuals confronting the limits of choice, circumstance, and their own mortality. This is a tale of connections made and missed, punishing regrets, and the grace of second chances. Intense, hilarious, provocative, and moving, A Long Way Downis a novel about suicide that is, surprisingly, full of life. What's your jumping-off point? Maureen Why is it the biggest sin of all? All your life yo","Imperial Ambitions: Conversations on the Post-9/11 World. In this first collection of interviews since the bestselling 9-11, our foremost intellectual activist examines crucial new questions of U.S. foreign policy Timely, urgent, and powerfully elucidating, this important volume of previously unpublished interviews conducted by award-winning radio journalist David Barsamian features Noam Chomsky discussing America's policies in an increasingly unstable world. With his famous insight, lucidity, and redoubtable grasp of history, Chomsky offers his views on the invasion and occupation of Iraq, the doctrine of ""preemptive"" strikes against so-called rogue states, and the prospects of the second Bush administration, warning of the growing threat to international peace posed by the U.S. drive for domination. In his inimitable style, Chomsky also dissects the propaganda system that fabricates a mythic past and airbrushes inconvenient facts out of history. Barsamian, recipient of the ACLU's Upton Sinclair Award for independent journalism, has conducte",Agricola/Germany.,Astrid Lindgren: Storyteller to the World.,"Taxi Driver. Taxi Drivermade Martin Scorsese's reputation as a director. This book provides a personal commentary on the film, a brief production history and a detailed filmography. In the ""BFI Film Classics"" series.",Slim Down Camp.,Killing Time.,Master and Commander (Aubrey/Maturin Book 1).,"Something Rotten (Thursday Next #4). Can Thursday find a Shakespeare clone to stop the hostile takeover of Hamlet by Orphelia? Can Swindon win the world croquet championship and thus prevent the end of the world? All this and more is revealed in this, the 4th volume in the Thursday Next series. Detective Thursday Next has had her fill of her responsibilities as the Bellmanin Jurisfiction, enough with Emperor Zhark's pointlessly dramatic entrances, outbreaks of slapstick raging across pulp genres, and hacking her hair off to fill in for Joan of Arc. Packing up her son, Friday, Thursday returns to Swindon accompanied by none other than the dithering Danish prince Hamlet. Caring for both is more than a full- time job and Thursday decides it is definitely time to get her husband Landen back, if only to babysit. Luckily, those responsible for Landen's eradication, The Goliath Corporation-- formerly an oppressive multinational conglomerate, now an oppressive multinational religion-- have pledged to right the wrong. But returnin","A Faint Cold Fear (Grant County #3). A Faint Cold Fearshares many of the characters and preoccupations of Karin Slaughter's earlier books about small-town coroner Sara Linton; she is still caught up in a complicated relationship with her former lover, police chief Jeffery, and disapproval of his sometimes brutal methods. Lena, once Jeffery's most trusted employee, is now a security guard at the local college and coping no better with the murder of her sister and her own abduction and rape. This becomes relevant when Jeffery has to investigate a series of murders on campus and one of the main suspects is Lena's dangerous skinhead lover. Slaughter perhaps relies a little too heavily on a number of continuing story lines, and has constantly to fill new readers in on these characters' personal stories so far. Her principal strength is an absolute ruthlessness with technical detail--she teases out the significance or otherwise of the numerous unpleasant features of, for example, the apparent suicide that is the first of a sequ","Veil: The Secret Wars of the CIA 1981-1987. Veilis the story of the covert wars that were waged in Central America, Iran and Libya in a secretive atmosphere and became the centerpieces and eventual time bombs of American foreign policy in the 1980s.",The Private Parts of Women.,"Lines and Shadows. Not since Joseph Wambaugh's best-selling ""The Onion Field"" has there been a true police story as fascinating, as totally gripping as . . . ""Lines And Shadows."" The media hailed them as heroes. Others denounced them as lawless renegades. A squad of tough cops called the Border Crime Task Force. A commando team sent to patrol the snake-infested no-man's-land south of San Diego. Not to apprehend the thousands of illegal aliens slipping into the U.S., but to stop the ruthless bandits who preyed on them nightly--relentlessly robbing, raping and murdering defenseless men, women and children. The task force plan was simple. They would disguise themselves as illegal aliens. They would confront the murderous shadows of the night. Yet each time they walked into the violent blackness along the border, they came closer to another boundary line--a fragile line within each man. and crossing it meant destroying their sanity and their lives. ""With each book, it seems, Mr. Wambaugh's skill as a writer","The Emperor (The Morland Dynasty #11). 1795 - Napoleon The shadow of Napoleon is falling across Europe, and a restlessness seems to be changing mores and loosening society's restraints. At Morland Place James's marriage to Mary Ann is falling apart; Lucy's to Chetwyn is in the balance as she embarks on a blatant affair with a sea officer; and William supports a mistress he cannot marry. Mary goes to sea with her husband Captain Haworth and is caught up in the battle of the Nile; and as war becomes inevitable, Lucy knows she must say goodbye to her love as every fighting captain waits eagerly for his commission.","Collected Stories 1891-1910. Over the course of a long and astonishingly productive literary career that stretched from the early 1890s to just before World War II, Edith Wharton published nearly a dozen story collections, leaving a body of work as various as it is enduring. With this two-volume set, The Library of America presents the finest of Wharton's achievement in short fiction: 67 stories drawn from the entire span of her writing life, including the novella-length works The Touchstone, Sanctuary, and Bunner Sisters, eight shorter pieces never collected by Wharton, and many stories long out-of-print.Her range of setting and subject matter is dazzling, and her mastery of style consistently sure. Here are all the aspects of Wharton's art: her satire, sometimes gentle, sometimes dark and despairing, of upper-class manners; her unblinking recognition of the power of social convention and the limits of passion; her merciless exposure of commercial motivations; her candid exploration of relations between the sexes","Bridget Jones's Guide to Life. She'll help you get your life in order. She'll help you get your home in order. Or she'll at least help you place a take-out order. ""Cuisine is not merely a question of ordering a pizzano! Many factors come into playincluding finding the pizza menu, decision-making, and obtaining a clean knife with which to cut it. How true this is of all life."" In this elegant and practical handbook, Bridget Jonesthe intrepid thirty-something Singleton on a permanent but doomed quest for self-improvementoffers a road to perfection in the fields of cooking, streamlined inner thighs and poise, spiritual and romantic nirvana, accounting, an understanding of Feng Shui, what men think they might feel they want, and creating a fragrant home. She's read the self-help booksall of them. And committed most of them to memory. Now Bridget breaks out on her own to give readers the benefitbenefit?of her rich experience.","The Gun Seller. When Thomas Lang, a hired gunman with a soft heart, is contracted to assassinate an American industrialist, he opts instead to warn the intended victim - a good deed that doesn't go unpunished. Within hours Lang is butting heads with a Buddha statue, matching wits with evil billionaires, and putting his life (among other things) in the hands of a bevy of femmes fatales, whilst trying to save a beautiful lady... and prevent an international bloodbath to boot.",The Power of One: The Solo Play for Playwrights Actors and Directors.,The Coming of Godot: A Short History of a Masterpiece.,"Anne Frank Beyond the Diary: A Photographic Remembrance. In over one hundred photographs, many which have never been published, this poignant memoir brings to life the harrowing story of one young Jewish woman's struggle to survive during a period of history which must never be forgotten.","Assassin's Quest (Farseer Trilogy #3). King Shrewd is dead at the hands of his son Regal. As is Fitz--or so his enemies and friends believe. But with the help of his allies and his beast magic, he emerges from the grave, deeply scarred in body and soul. The kingdom also teeters toward ruin: Regal has plundered and abandoned the capital, while the rightful heir, Prince Verity, is lost to his mad quest--perhaps to death. Only Verity's return--or the heir his princess carries--can save the Six Duchies. But Fitz will not wait. Driven by loss and bitter memories, he undertakes a quest: to kill Regal. The journey casts him into deep waters, as he discovers wild currents of magic within him--currents that will either drown him or make him something more than he was. Praise for Robin Hobb and Assassin's Quest ""Fantasy as it ought to be written . . . Robin Hobb's books are diamonds in a sea of zircons.""--George R. R. Martin ""An enthralling conclusion to this superb trilogy, displaying an exceptional combination of originality, magi",The Making of Pride and Prejudice.,A Fan's Notes.,"Inside the Mind of Gideon Rayburn (Midvale Academy #1). What if you could see inside the head of the guy you love? Know his every thought? Feel his every dream and fantasy? The mystery girl who'sInside the Mind of Gideon Rayburn can. She tells us the intoxicating story of her beloved Gideon, an adorably clueless boy who flukes his way into New England's fanciest prep school. Gideon's naive compared to the wolves at Midvale Academy, especially Cullen and Nicholas, his charming, morally ambiguous roommates. They welcome Gid by trashing his music and betting big on when he'll lose hisvirginity. Will he lose it with the cute and feisty Molly McGarry? Or Pilar Benitez-Jones, the most beautiful girl Gid's ever seen? Gid actually likes Molly and hooking up with her might be possible. But winning Pilar would be legendary. Gid is torn--he wants to prove himself to his roommates, but he also wants love. Through it all there is one hysterically funny girl sharing every thought in Gid's conflicted little mind. But who is she?","Hackers & Painters: Big Ideas from the Computer Age. ""The computer world is like an intellectual Wild West, in which you can shoot anyone you wish with your ideas, if you're willing to risk the consequences."" --from Hackers & Painters: Big Ideas from the Computer Age, by Paul Graham We are living in the computer age, in a world increasingly designed and engineered by computer programmers and software designers, by people who call themselves hackers. Who are these people, what motivates them, and why should you care? Consider these facts: Everything around us is turning into computers. Your typewriter is gone, replaced by a computer. Your phone has turned into a computer. So has your camera. Soon your TV will. Your car was not only designed on computers, but has more processing power in it than a room-sized mainframe did in 1970. Letters, encyclopedias, newspapers, and even your local store are being replaced by the Internet. Hackers & Painters: Big Ideas from the Computer Age, by Paul Graham, explains this world and the motivations of th",The Rough Guide to The Beatles.,"The Poet the Warrior the Prophet. Rainer Maria Rilke, Gabriel Garcia Marques, Emily Dickinson, Albert Camus, Sigmund Freud and the ""Tao Te Ching"" are just some of the influences on this remarkable and beautiful book, which brings poetry - the language of what it is not possible to say - to bear on theology, in such a way that it changed the author's life. Suddenly, like Lewis Carroll's Alice, Alves found himself going through the looking glass and discovering how words cannot be marshalled into conventional forms but are rather like wild birds flapping their wings refusing to be caged. In delivering the 1990 Edward Cadbury Lectures, on which the book is based, the author entered a world like that of M C Escher, many of whose enigmatic illustrations are included in the text, where all one's familiar dimensions are turned inside out. Here theology goes hand in hand with story and poetry, and creates an unforgettable atmosphere of wonder and vision - as when, for example, through the magic of Isak Dinesan's ""Babette's Fea","Housekeeping vs. the Dirt. In this latest collection of essays following The Polysyllabic Spree,critic and author Nick Hornby continues the feverish survey of his swollen bookshelves, offering a funny, intelligent, and unblinkered account of the stuff he's been reading. Ranging from the middlebrow to the highbrow (with unrepenting dips into the lowbrow), Hornby's dispatches from his nightstand table serve as useful guides to contemporary letters, with revelations on contemporary culture, the intellectual scene, and English football, in equal measure.","The Adventures of Huckleberry Finn. Mark Twain's brilliant 19th-century novel has long been recognized as one of the finest examples of American literature. It brings back the irrepressible and free-spirited Huck, first introduced in The Adventures of Tom Sawyer, and puts him center stage. Rich in authentic dialect, folksy humor, and sharp social commentary, Twain's classic tale follows Huck and the runaway slave Jim on an exciting journey down the Mississippi.","Something Wicked This Way Comes. A carnival rolls in sometime after the midnight hour on a chill Midwestern October eve, ushering in Halloween a week before its time. A calliope's shrill siren song beckons to all with a seductive promise of dreams and youth regained. In this season of dying, Cooger & Dark's Pandemonium Shadow Show has come to Green Town, Illinois, to destroy every life touched by its strange and sinister mystery. And two inquisitive boys standing precariously on the brink of adulthood will soon discover the secret of the satanic raree-show's smoke, mazes, and mirrors, as they learn all too well the heavy cost of wishes - and the stuff of nightmare.","Not Much Fun: The Lost Poems of Dorothy Parker. During the early years of her career, while struggling to ""keep body and soul apart"" (as she ruefully put it later), Dorothy Parker wrote more than three hundred poems and verses for a variety of popular magazines and newspapers. Between 1926 and 1933 she collected most of these pieces in three volumes of poetry: Enough Rope, Sunset Gun,and Death and Taxes.The remaining poems and verses from America's most renowned cynic make up this volume. Eclectic and exuberant, these 122 once-forgotten gems display Parker's distinctive wit, irony, and precision, as she dissects early-twentieth-century American urban life and gleefully skewers a rich array of targets that range from personal foible to popular culture. With an authoritative, immensely entertaining, and critically acclaimed introduction by Stuart Y. Silverstein, Not Much Funis an essential addition to the Dorothy Parker library and a welcome gift to her many admirers and devoted fans.",Political Philosophy: A Beginner's Guide for Students and Politicians.,"A Pale View of Hills. In his highly acclaimed debut, A Pale View of Hills, Kazuo Ishiguro tells the story of Etsuko, a Japanese woman now living alone in England, dwelling on the recent suicide of her daughter. Retreating into the past, she finds herself reliving one particular hot summer in Nagasaki, when she and her friends struggled to rebuild their lives after the war. But then as she recalls her strange friendship with Sachiko - a wealthy woman reduced to vagrancy - the memories take on a disturbing cast.",Yeah I Said It.,"The Mysterious Flame of Queen Loana. Yambo, a sixtyish rare-book dealer who lives in Milan, has suffered a loss of memory-he can remember the plot of every book he has ever read, every line of poetry, but he no longer knows his own name, doesn't recognize his wife or his daughters, and remembers nothing about his parents or his childhood. In an effort to retrieve his past, he withdraws to the family home somewhere in the hills between Milan and Turin. There, in the sprawling attic, he searches through boxes of old newspapers, comics, records, photo albums, and adolescent diaries. And so Yambo relives the story of his generation: Mussolini, Catholic education and guilt, Josephine Baker, Flash Gordon, Fred Astaire. His memories run wild, and the life racing before his eyes takes the form of a graphic novel. Yambo struggles through the frames to capture one simple, innocent image: that of his first love. A fascinating, abundant novel-wide-ranging, nostalgic, funny, full of heart-from the incomparable Eco.","Germinal. The thirteenth novel in Emile Zola's great Rougon-Macquart sequence, Germinal expresses outrage at the exploitation of the many by the few, but also shows humanity's capacity for compassion and hope. Etienne Lantier, an unemployed railway worker, is a clever but uneducated young man with a dangerous temper. Forced to take a back-breaking job at Le Voreux mine when he cannot get other work, he discovers that his fellow miners are ill, hungry, and in debt, unable to feed and clothe their families. When conditions in the mining community deteriorate even further, Lantier finds himself leading a strike that could mean starvation or salvation for all. *New translation * Includes introduction, suggestions for further reading, filmography, chronology, explanatory notes, and glossary","The Long Walk: The True Story of a Trek to Freedom. The harrowing true tale of seven escaped Soviet prisoners who desperately marched out of Siberia through China, the Gobi Desert, Tibet, and over the Himalayas to British India.","Faulkner: A Biography. William Faulkner (1897-1962) remains the pre- eminent literary chronicler of the American South and a giant of American arts and letters. Creatively obsessed with problems of race, identity, power, politics, and family dynamics, he wrote novels, stories, and lectures that continue to shape our understanding of the region's promises and problems. His experiments and inventions in form and style have influenced generations of writers. Originally published in 1974 as a two-volume edition and extensively updated and condensed in a 1991 reissue, Joseph Blotner's Faulkner: A Biographyremains the quintessential resource on the Nobel laureate's life and work. The Chicago Tribune said, ""This is an overwhelming book, indispensable for anyone interested in the life and works of our greatest contemporary novelist."" That invaluable 1991 edition is now back in print. Blotner, a friend and one-time colleague of Faulkner's, brings a vivid, personalized tone to the biography, as well as a sense of mast",Arthur and the Lost Kingdoms.,"Sor Juana: Or the Traps of Faith. Mexico's leading poet, essayist, and cultural critic writes of a Mexican poet of another time and another world, the world of seventeenth-century New Spain. His subject is Sor Juana Ines de la Cruz, the most striking figure in all of Spanish-American colonial literature and one of the great poets of her age. Her life reads like a novel. A spirited and precocious girl, one of six illegitimate children, is sent to live with relatives in the capital city. She becomes known for her beauty, wit, and amazing erudition, and is taken into the court as the Vicereine's protegee. For five years she enjoys the pleasures of life at court--then abruptly, at twenty, enters a convent for life. Yet, no recluse, she transforms the convent locutory into a literary and intellectual salon; she amasses an impressive library and collects scientific instruments, reads insatiably, composes poems, and corresponds with literati in Spain. To the consternation of the prelates of the Church, she persists in circula","The Fellowship of the Ring (The Lord of the Rings #1). One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkeness bind them In ancient times the Rings of Power were crafted by the Elven-smiths, and Sauron, The Dark Lord, forged the One Ring, filling it with his own power so that he could rule all others. But the One Ring was taken from him, and though he sought it throughout Middle-earth, it remained lost to him. After many ages it fell into the hands of Bilbo Baggins, as told in The Hobbit. In a sleepy village in the Shire, young Frodo Baggins finds himself faced with an immense task, as his elderly cousin Bilbo entrusts the Ring to his care. Frodo must leave his home and make a perilous journey across Middle-earth to the Cracks of Doom, there to destroy the Ring and foil the Dark Lord in his evil purpose.","Notebook of a Return to the Native Land. Aime Cesaire's masterpiece, Notebook of a Return to the Native Land, is a work of immense cultural significance and beauty. The long poem was the beginning of Cesaire's quest for negritude, and it became an anthem of Blacks around the world. With its emphasis on unusual juxtapositions of object and metaphor, manipulation of language into puns and neologisms, and rhythm, Cesaire considered his style a ""beneficial madness"" that could ""break into the forbidden"" and reach the powerful and overlooked aspects of black culture. Clayton Eshleman and Annette Smith achieve a laudable adaptation of Cesaire's work to English by clarifying double meanings, stretching syntax, and finding equivalent English puns, all while remaining remarkably true to the French text. Their treatment of the poetry is marked with imagination, vigor, and accuracy that will clarify difficulties for those already familiar with French, and make the work accessible to those who are not. Andre Breton's introduction, A Great",The Loftier Way: Tales from the Ancient American Frontier.,Don't Wait for Your Ship to Come In... Swim Out to Meet It!: Bite-Sized Inspirations to Help You Achieve Your Dreams.,"The Historian's Craft: Reflections on the Nature and Uses of History and the Techniques and Methods of Those Who Write It.. In this classic work, distinguished French economic historian, Marc Bloch, discusses the techniques of historical observation, analysis, and criticism, and the reestablishment of historical causation in assessing events. What is the value of history? What is the use of history? How do scholars attempt to unpack it and make connections in a responsible manner? While the topics of historiography and historical methodology have become increasingly popular, Bloch remains an authority. He argues that history is a whole; no period and no topic can be understood except in relation to other periods and topics. And what is unique about Bloch is that he puts his theories into practice; for example, calling upon both his experience serving in WWI as well as his many years spent in peaceful study and reflection. He also argues that written records are not enough; a historian must draw upon maps, place-names, ancient tools, aerial surveys, folklore, and everything that is available. This is a work","The Journey to the East. In simple, mesmerizing prose, Hermann Hesse's Journey to the Easttells of a journey both geographic and spiritual. H.H., a German choirmaster, is invited on an expedition with the League, a secret society whose members include Paul Klee, Mozart, and Albertus Magnus. The participants traverse both space and time, encountering Noah's Ark in Zurich and Don Quixote at Bremgarten. The pilgrims' ultimate destination is the East, the ""Home of the Light,"" where they expect to find spiritual renewal. Yet the harmony that ruled at the outset of the trip soon degenerates into open conflict. Each traveler finds the rest of the group intolerable and heads off in his own direction, with H.H. bitterly blaming the others for the failure of the journey. It is only long after the trip, while poring over records in the League archives, that H.H. discovers his own role in the dissolution of the group, and the ominous significance of the journey itself.","U.S.S. Seawolf (Admiral Arnold Morgan #4). Armed with stolen U.S. military technology, the Chinese are producing a frightening new breed of weaponry,led by the ICBM submarine Xia III -- a vessel that just might be able to launch a nuclear warhead across the Pacific Ocean and take out an American West Coast city. National Security Adviser Admiral Arnold Morgan can't let that happen, and he dispatches the most stealthy hunter-killer submarine in the U.S. fleet, the 9,000-ton ultrasecret Seawolf,deep into the dark, forbidden waters of the South China Sea. But then the unthinkable happens: Seawolf,collides with a Chinese destroyer and falls into enemy hands. A team of cunning Navy SEALs -- the biggest Special Forces assault group assembled since Vietnam -- is sent in to free the captive Seawolf,crew and bring them home. The American Eagle confronts the Chinese Dragon with the balance of world power on the line. Failure is not an option...","Cry the Beloved Country. Cry, the Beloved Country, the most famous and important novel in South Africa's history, was an immediate worldwide bestseller in 1948. Alan Paton's impassioned novel about a black man's country under white man's law is a work of searing beauty. Cry, the beloved country, for the unborn child that is the inheritor of our fear. Let him not love the earth too deeply. Let him not laugh too gladly when the water runs through his fingers, nor stand too silent when the setting sun makes red the veld with fire. Let him not be too moved when the birds of his land are singing, nor give too much of his heart to a mountain or valley. For fear will rob him of all if he gives too much. The eminent literary critic Lewis Gannett wrote, ""We have had many novels from statesmen and reformers, almost all bad; many novels from poets, almost all thin. In Alan Paton's Cry, the Beloved Countrythe statesman, the poet and the novelist meet in a unique harmony."" Cry, the Beloved Countryis the deeply moving story","Human Traces. As young boys both Jacques Rebiere and Thomas Midwinter become fascinated with trying to understand the human mind. As psychiatrists, their quest takes them from the squalor of the Victorian lunatic asylum to the crowded lecture halls of the renowned Professor Charcot in Paris; from the heights of the Sierra Madre in California to the plains of unexplored Africa. As the concerns of the old century fade and the First World War divides Europe, the two men's volatile relationship develops and changes, but is always tempered by one exceptional woman; Thomas's sister Sonia. Moving and challenging in equal measure, Human Tracesexplores the question of what kind of beings men and women really are.","The Lemon Table. In his widely acclaimed new collection of stories, Julian Barnes addresses what is perhaps the most poignant aspect of the human condition: growing old. The characters in The Lemon Table are facing the ends of their lives-some with bitter regret, others with resignation, and others still with defiant rage. Their circumstances are just as varied as their responses. In 19th-century Sweden, three brief conversations provide the basis for a lifetime of longing. In today's England, a retired army major heads into the city for his regimental dinner-and his annual appointment with a professional lady named Babs. Somewhere nearby, a devoted wife calms (or perhaps torments) her ailing husband by reading him recipes. In stories brimming with life and our desire to hang on to it one way or another, Barnes proves himself by turns wise, funny, clever, and profound-a writer of astonishing powers of empathy and invention.",Ten Short Stories Book & Cd Pack (Penguin Student Editions).,"After Glow (Ghost Hunters #2). Life is complicated for Lydia Smith. She's working at that tacky, third-rate museum, Shrimpton's House of Ancient Horrors, trying to salvage her career in para-archaeology - and dating the most dangerous man in town. Just when she thinks she might be getting things under control, she stumbles over a dead body and discovers that her lover has a secret past that could get him killed. Just to top it off, there's trouble brewing underground in the eerie, glowing green passageways of the Dead City. Of course, all of these problems pale in comparison to the most pressing issue: Lydia has been invited to the Restoration Ball and she hasn't got a thing to wear.",The Crescent Obscured: The United States and the Muslim World 1776-1815.,"Independent People. Bjartus is a sheep farmer hewing a living from a blighted patch of land in Iceland. After 18 years of servitude to a master he despises, all he wants is to raise his flock unbeholden to anyone. Nothing, not inclement weather, not his wives, not his family will come between him and his goal of financial independence. Only Asta Solillja, the child he brings up as his daughter, can pierce his stubborn heart. But she too wishes to live independently - and when Bjartus throws her from the house on discovering she is pregnant, her more temperate determination is set against his stony will.","Great Short Stories by American Women. Embracing a wide variety of subjects, this choice collection of 13 short stories represents the work of an elite group of American women writing in the 19th and 20th centuries. The earliest stories are Rebecca Harding Davis' naturalistic ""Life in the Iron Mills"" (published in 1861 and predating Emile Zola's Germinalby almost 25 years) and Louisa May Alcott's semiautobiographical tale ""Transcendental Wild Oats"" (1873). The most recent ones are Zora Neale Hurston's ""Sweat,"" an ironic tale of contested loyalty. In between is a grand cavalcade of superbly crafted fiction by Sarah Orne Jewett, Mary E. Wilkins Freeman, Charlotte Perkins Gilman, Kate Chopin, Willa Cather, Alice Dunbar-Nelson, Djuna Barnes, Susan Glaspell and Edith Wharton. Brief biographies of each of the writers are included.","Scarlet Feather. Set in contemporary Ireland, filled with warmth, wit, and drama, Scarlet Featheris the story of Cathy Scarlet and Tom Feather, their spouses, families, and friends, and the struggling new catering business that transforms their lives in ways big and small.",Egyptian Myth: A Very Short Introduction.,Data Structures and Algorithm Analysis in C++.,"Out of the Woods. Seven years ago, Chris Offutt made his literary debut with Kentucky Straight,a fiercely original collection that earned him not only critical praise but many prestigious awards. The eight new stories in Out of the Woodsmark Offutt's return to the form in which he first displayed his astonishing talent. Offutt, who ""draws landscape and constructs dialogue with the eyes and ears of a native son"" (The Miami Herald),is on strong home turf here, capturing those who have left the Kentucky hills and long to return. These are stories of gravediggers and drifters, gamblers and truck drivers a long way from home, tales that are so full of hard edges they can't help but tell some hard truths.","Collected Poems. A collection of poetry spanning the full range of the African-born author's acclaimed career has been updated to include seven never-before-published works, as well as much of his early poetry that explores such themes as the African consciousness, the tragedy of Biafra, and the mysteries of human relationships.",Blubberina (Scrambled Legs #5).,"Redemption (Redemption #1). The Redemption series won ""Christian Retailing""'s 2005 Retailer's Choice Award for Best Series! When Kari Baxter Jacobs finds out that her husband is involved in an adulterous relationship and wants a divorce, she decides she will love him and remain faithful to her marriage at all costs. This book shows how God can redeem seemingly hopeless relationships, and it illustrates one of Gary Smalley's key messages: Love is a decision. ""Redemption"" is the first book in the five-book Redemption series that Gary and Karen will write about the Baxter family--their fears and desires, their strengths and weaknesses, their losses and victories. Each book will explore key relationship themes as well as the larger theme of redemption, both in characters' spiritual lives and in their relationships. Each book includes study questions for individual and small-group use as well as a ""teaser"" chapter of the next book in the series.","What Looks Like Crazy on an Ordinary Day (Idlewild #1). Acclaimed Playwright, essayist and columnist Pearl Cleage breaks new ground in African American women's literature--with a debut novel that sings and crackles with life-affirming energy as it moves the reader to laughter and tears. As a girl growing up in Idlewild, Michigan, Ava Johnson had always heard that, if you were young, black, and had any sense at all, Atlanta was the place to be. So as soon as she was old enough and able enough, that was where she went--parlaying her smarts and her ambition into one of the hottest hair salons in town. In no time, she was moving with the brothers and sisters who had beautiful clothes, big cars, bigger dreams, and money in the bank. Now, after more than a decade of elegant pleasures and luxe living, Ava has come home, her fabulous career and power plans smashed to bits on one dark truth. Ava Johnson has tested positive for HIV. And she's back in little Idlewild to spend a quiet summer with her widowed sister, Joyce, before moving on to finish he",Argumentative Indian: Writings On Indian History Culture And Identity.,"The Color of Her Panties (Xanth #15). We See England, We See Xanth, We See Mels's UnderpanthIn fact, Gwenny Goblin, Che Centaur and Jenny Elf are just about the only creatures on Xanth who have been spared the sight of Mela Merwoman's undergarment -- preoccupied as they are with helping Gwenny beat out her awful half-brother Gobble for chiefship of the goblin horde. But first they must master space and thyme . . . and find the fabulous egg that sits between the Roc and the hard place. While Mela -- who would gladly relinquish her oft-viewed undies for a new husband -- joins the Adult Conspiracy . . . and quickly discovers the power of a perfect pair of panties!",Operation Shylock. Ein Bekenntnis.,"Euripides III: Hecuba / Andromache / The Trojan Women / Ion (Complete Greek Tragedies #7). Contains: 1. Hecuba, translated and with an introduction by William Arrowsmith 2. Andromache, translated and with an introduction by John Frederick Nims 3. The Trojan Women, translated and with an introduction by Richmond Lattimore 4. Ion, translated and with an introduction by Ronald Frederick Willets 'Clear accurate reflections of the Greek in well-polished mirrors of contemporary American language and taste. Not just language and taste: although they are far from being playbook 'treatments, ' they are eminently actable'. . . . Kenneth Rexroth, The Nation","The Silmarillion. A number-one New York Timesbestseller when it was originally published, The Silmarillionis the core of J.R.R. Tolkien's imaginative writing, a work whose origins stretch back to a time long before The Hobbit.Tolkien considered Thr Silmarillionhis most important work, and, though it was published last and posthumously, this great collection of tales and legends clearly sets the stage for all his other writing. The story of the creation of the world and of the the First Age, this is the ancient drama to which the characters in The Lord of the Ringslook back and in whose events some of them, such as Elrond and Galadriel, took part. The three Silmarils were jewels created by Feanor, most gifted of the Elves. Within them was imprisoned the Light of the Two Trees of Valinor before the Trees themselves were destroyed by Morgoth, the first Dark Lord. Thereafter, the unsullied Light of Valinor lived on only in the Silmarils, but they were seized by Morgoth and set in his crown, which was guarde","Dirty Snow. Nineteen-year-old Frank Friedmaier lives in a country under occupation. Most people struggle to get by; Frank takes it easy in his mother's whorehouse, which caters to members of the occupying forces. But Frank is restless. He is a pimp, a thug, a petty thief, and, as Dirty Snowopens, he has just killed his first man. Through the unrelenting darkness and cold of an endless winter, Frank will pursue abjection until at last there is nowhere to go. Hans Koning has described Dirty Snowas ""one of the very few novels to come out of German-occupied France that gets it exactly right."" In a study of the criminal mind that is comparable to Jim Thompson's The Killer Inside Me, Simenon maps a no man's land of the spirit in which human nature is driven to destruction--and redemption, perhaps, as well--by forces beyond its control.","Tropic of Cancer. Now hailed as an American classic, Tropic of Cancer, Henry Miller's masterpiece, was banned as obscene in this country for twenty-seven years after its first publication in Paris in 1934. Only a historic court ruling that changed American censorship standards, ushering in a new era of freedom and frankness in modern literature, permitted the publication of this first volume of Miller's famed mixture of memoir and fiction, which chronicles with unapologetic gusto the bawdy adventures of a young expatriate writer, his friends, and the characters they meet in Paris in the 1930s. Tropic of Canceris now considered, as Norman Mailer said, ""one of the ten or twenty great novels of our century.""","Blankets. Wrapped in the landscape of a blustery Wisconsin winter, Blankets explores the sibling rivalry of two brothers growing up in the isolated country, and the budding romance of two coming-of-age lovers. A tale of security and discovery, of playfulness and tragedy, of a fall from grace and the origins of faith.","The Vanished Man (Lincoln Rhyme #5). It begins at a prestigious music school in New York City. A killer flees the scene of a homicide and locks himself in a classroom. Within minutes, the police have him surrounded. When a scream rings out, followed by a gunshot, they break down the door. The room is empty. Lincoln Rhyme and Amelia Sachs are brought in to help with the high-profile investigation and to ferret out a master illusionist they've dubbed ""the conjurer."" As the fatalities rise and the minutes tick down, Rhyme and Sachs must move beyond the smoke and mirrors to prevent a terrifying act of vengeance that could become the greatest vanishing act of all.","Baudolino. It is April 1204, and Constantinople, the splendid capital of the Byzantine Empire, is being sacked and burned by the knights of the Fourth Crusade. Amid the carnage and confusion, one Baudolino saves a historian and high court official from certain death at the hands of the crusading warriors and proceeds to tell his own fantastical story. Born a simple peasant in northern Italy, Baudolino has two major gifts-a talent for learning languages and a skill in telling lies. When still a boy he meets a foreign commander in the woods, charming him with his quick wit and lively mind. The commander-who proves to be Emperor Frederick Barbarossa-adopts Baudolino and sends him to the university in Paris, where he makes a number of fearless, adventurous friends. Spurred on by myths and their own reveries, this merry band sets out in search of Prester John, a legendary priest-king said to rule over a vast kingdom in the East-a phantasmagorical land of strange creatures with eyes on their shoulders",Exzession (Culture #5).,"Ethan Frome and Summer. This edition presents Wharton's two most controversial stories, which she considered inseparable, in one volume for the first time. Set in frigid New England, both deal with sexual awakening and appetite and their devastating consequences. This text includes newly commissioned notes.","Bored of the Rings: A Parody of J.R.R. Tolkien's Lord of the Rings. A quest, a war, a ring that would be grounds for calling any wedding off, a king without a kingdom, and a little, furry ""hero"" named Frito, ready - or maybe just forced by the wizard of Goodgulf - to undertake the one mission which can save Lower Middle Earth from enslavement by the evil Sorhed...Luscious Elfmaidens, a roller-skating dragon, ugly plants that can soul-kiss the unwary to death - these are just some of the ingredients in the wildest, wackiest, most irreverent excursion into fantasy realms that anyone has ever dared to undertake.","Peter and the Shadow Thieves (Peter and the Starcatchers #2). In this riveting and adventure-packed follow-up to the award-winning New York Timesbestseller Peter and the Starcatchers, Peter leaves the relative safety of Mollusk Island - along with his trusted companion, Tinker Bell - for the dark and dangerous streets of London. On a difficult journey across the sea, he and Tink discover the mysterious and deadly Lord Ombra, who is intent on recovering the missing starstuff - celestial dust that contains unimagined powers. In London, Peter attempts to track down the indomitable Molly, hoping that together they can combat Ombra's determined forces. But London is not Mollusk Island; Peter is not the boy he used to be; and Lord Ombra - the Shadow Master - is unlike anything Peter, or the world, has ever seen. Dave Barry and Ridley Pearson have done it again - written a compulsively readable, magical, impossible-to-put-down tale that will delight readers of all ages.",Zone of the Enders: The 2nd Runner Official Strategy Guide.,"For a Few Demons More (The Hollows #5). Despite dating one vampire and living with another, Rachel Morgan has stayed ahead of trouble until now. A serial killer stalks the Hollows, claims victims across society, and ignites a vicious Inderland gang war. Rachel hides an ancient artifact that could stop the killer or start a battle to the death among supernatural races of Cincinnati. Every action has its price. When the vampire master Piscary is set free and the demonic Algaliarept dares to walk openly under the sun, even Rachel Morgan can't hide forever.","The Magus. This daring literary thriller, rich with eroticism and suspense, is one of John Fowles's best-loved and bestselling novels and has contributed significantly to his international reputation as a writer of the first rank. At the center of The Magusis Nicholas Urfe, a young Englishman who accepts a teaching position on a remote Greek island, where he befriends a local millionaire. The friendship soon evolves into a deadly game in which reality and fantasy are deliberately manipulated, and Nicholas finds that he must fight not only for his sanity but for his very survival.","What is Art?. During the decades of his world fame as sage & preacher as well as author of War & Peace & Anna Karenin, Tolstoy wrote prolifically in a series of essays & polemics on issues of morality, social justice & religion. These culminated in What is Art?, published in 1898. Altho Tolstoy perceived the question of art to be a religious one, he considered & rejected the idea that art reveals & reinvents thru beauty. The works of Dante, Michelangelo, Shakespeare, Beethoven, Baudelaire & even his own novels are condemned in the course of Tolstoy's impassioned & iconoclastic redefinition of art as a force for good, for the improvement of humankind.","Over The Moon (Mageverse #3.5). Three bestselling superstars and one exciting new voice in paranormal romance in a hot new anthology. When it comes to sexy werewolves, fairies, and magic, there's only one place for readers to go this winter: Over the Moon. Angela Knight ventures to the borders of Mageverse, a land ruled by vampire knights. MaryJanice Davidson returns to the wicked lair of the Wyndham werewolves. Virginia Kantra finds magic and wonder in a strange fairy kingdom. And Sunny discovers a Mixed Blood Queen in command of a new realm.","The Invisible Man. ""It's very simple,"" said the voice. ""I'm an invisible man."" With his face swaddled in bandages, his eyes hidden behind dark glasses and his hands covered even indoors, Griffin - the new guest at the Coach and Horses - is at first assumed to be a shy accident victim. But the true reason for his disguise is far more chilling: he has developed a process that has made him invisible, and is locked in a struggle to discover the antidote. Forced from the village and driven to murder, he seeks the aid of his old friend Kemp. The horror of his fate has affected his mind, however - and when Kemp refuses to help, he resolves to wreak his revenge. Depicting one man's transformation and descent into brutality, The Invisible Manis a riveting exploration of science's power to corrupt. Part of a brand-new Penguin series of H.G. Wells's works, this edition includes a newly established text, a full biographical essay on Wells, a further reading list and detailed notes. Christopher Priest's introduction","Identity. Milan Kundera's Identity  translated from the French by Linda Asher.There are situations in which we fail for a moment to recognize the person we are with, in which the identity of the other is erased while we simultaneously doubt our own. That also happens with couples -- indeed, above all with couples, because lovers fear more than anything else ""losing sight"" of the loved one. With stunning artfulness in expanding and playing variations on the meaningful moment, Milan Kundera has made this situation -- and the vague sense of panic it inspires -- the very fabric of his new novel. Here brevity goes hand in hand with intensity, and a moment of bewilderment marks the start of a labyrinthine journey during which the reader repeatedly crosses the border between the real and the unreal, between what occurs in the world outside and what the mind creates in its solitude. Of all contemporary writers, only Kundera can transform such a hidden and disconcerting perception into the material f","What The Lady Wants. Mitch Peatwick is a private detective who's about to go out of business if he doesn't land a new client. He's ready to quit, when Mae Sullivan strolls into his office. The gorgeous, smart-mouthed woman has a family straight out of Goodfellas -- and a case he can't afford to turn down. Mae wants Mitch to find her uncle's killer, his diary and the missing family fortune. He accepts the case, but soon finds himself involved with Mae in more ways than just the investigation.","While I Was Gone. Despite having a loving husband, three vivacious daughters, a beautiful home in rural Massachusetts, and satisfaction in her work, Jo Becker's mind is invaded by a persistent restlessness. Then, an old roommate reappears to bring back Jo's memories of her early 20s. . . . Her obsession with that period of her life and with the crime that concluded it eventually estrange Jo from everything she holds dear, causing her to tell lie after lie as she is pulled closer to this man from her past-and to a horrible secret. -Milwaukee Journal-Sentinel","El código Da Vinci (Robert Langdon #2). Antes de morir asesinado, Jacques Sauniere, el ultimo Gran Maestre de una sociedad secreta que se remonta mas alla del origen de los Templarios --la orden militar compuesta por monjes-soldados fundada en Jerusalen en el ano 1119--, transmite a su nieta Sofia un misterioso mensaje en clave. Sauniere al igual que todos los miembros de la sociedad secreta Priorato de Sion (entre los que podemos encontrar ilustres nombres de nuestra historia como Isaac Newton o Leonardo Da Vinci), han custodiado durante siglos un secreto de gran envergadura, relacionado directamente con el Santo Grial, capaz de cambiar completamente la historia de la humanidad. Ahora Sofia, con la ayuda del experto en simbologia Robert Langdon, comienza la busqueda de ese oculto misterio, una trepidante carrera que les lleva de una clave a otra, descifrando mensajes ocultos en los mas famosos cuadros del genial pintor Leonardo Da Vinci y en las paredes, bovedas, esculturas y claustros de antiguas catedrales de Francia, Ing","Angels & Demons (Robert Langdon #1). An ancient secret brotherhood. A devastating new weapon of destruction.When world-renowned Harvard symbologist Robert Langdon is summoned to a Swiss research facility to analyze a mysterious symbol--seared into the chest of a murdered physicist--he discovers evidence of the unimaginable: the resurgence of an ancient secret brotherhood known as the Illuminati...the most powerful underground organization ever to walk the earth. The Illuminati has now surfaced to carry out the final phase of its legendary vendetta against its most hated enemy--the Catholic Church. Langdon's worst fears are confirmed on the eve of the Vatican's holy conclave, when a messenger of the Illuminati announces they have hidden an unstoppable time bomb at the very heart of Vatican City. With the countdown under way, Langdon jets to Rome to join forces with Vittoria Vetra, a beautiful and mysterious Italian scientist, to assist the Vatican in a desperate bid for survival. Embarking on a frantic hunt through sealed",Roald Dahl: A Biography. The first full-length biography of the successful and controversial author of Charlie and the Chocolate Factory and James and the Giant Peach. Introduction by the Author; Index; photographs.,"Jackie After Jack: Portrait of the Lady. In this book, Christopher Anderson reveals many sides of Jackie Kennedy Onassis the world has never seen, including: her suicidal depression after Dallas; her virtually unknown affairs with Marlon Brando and Warren Beatty; her secret, stunning life with Aristotle Onassis; and her courageous final days.","Our Kind of People: Inside America's Black Upper Class. Debutante cotillions. Million-dollar homes. Summers in Martha's Vineyard. Membership in the Links, Jack & Jill, Deltas, Boule, and AKAs. An obsession with the right schools, families, social clubs, and skin complexion. This is the world of the black upper class and the focus of the first book written about the black elite by a member of this hard-to-penetrate group. Author and TV commentator Lawrence Otis Graham, one of the nation's most prominent spokesmen on race and class, spent six years interviewing the wealthiest black families in America. He includes historical photos of a people that made their first millions in the 1870s. Graham tells who's in and who's not in the group today with separate chapters on the elite in New York, Los Angeles, Washington, Chicago, Detroit, Memphis, Atlanta, Philadelphia, Nashville, and New Orleans. A new Introduction explains the controversy that the book elicited from both the black and white communities.","Nuns and Soldiers. Set in London and in the South of France, this brilliantly structured novel centers on two women: Gertrude Openshaw, bereft from the recent death of her husband, yet awakening to passion; and Anne Cavidge, who has returned in doubt from many years in a nunnery, only to encounter her personal Christ. A fascinating array of men and women hover in urgent orbit around them: the ""Count,"" a lonely Pole obsessively reliving his émigré father's patriotic anguish; Tim Reede, a seedy yet appealing artist, and Daisy, his mistress; the manipulative Mrs. Mount; and many other magically drawn characters moving between desire and obligation, guilt and joy. This edition of Nuns and Soldiersincludes a new introduction by renowned religious historian Karen Armstrong.","Big Red Tub. It's bathtime for Stan and Stella, but too many friends want to join them in the big, red bathtub. Stan and Stella are having lots of fun in the big, red bathtub. And soon all of the animals want to join them. First Dog, then Lion, and soon Kangaroo wants to come in, too. But when Hippopotamus tries to fit, the bathtime adventure begins.","The Complete Poems and Major Prose. First published by Odyssey Press in 1957, this classic edition provides Milton's poetry and major prose works, richly annotated, in a sturdy and affordable clothbound volume.","Owlknight (Owl Mage Trilogy #3). From fantasy legends Mercedes Lackeyand Larry Dixoncomes the third and final volume in a powerful saga charged with war and magic, life and love.... Two years after his parents disappearance, Darian has sought refuge and training from the mysterious Hawkbrothers. Now he has opened his heart to a beautiful young healer. Finally Darian has found peace and acceptance in his life. That is, until he learns that his parents are still alive-and trapped behind enemy borders....","Loveless Vol. 1: A Kin of Homecoming. Wes Cutter's coming home from the Civil War as part of the losing side. His estate has been repossessed by Union soldiers, his wife is missing, presumed dead, and for a group of Confederate die-hards up in the mountains, the war hasn't ended yet. But what secrets is Cutter hiding alongside the dynamite in his saddlebags?","Lost Boys. For Step Fletcher, his pregnant wife DeAnne, and their three children, the move to tiny Steuben, North Carolina, offers new hope and a new beginning. But from the first, eight-year-old Stevie's life there is an unending parade of misery and disaster. Cruelly ostracized at his school, Stevie retreats further and further into himself and into a strange computer game and a group of imaginary friends. But there is something eerie about his loyal, invisible new playmates: each shares the name of a child who has recently vanished from the sleepy Southern town. And terror grows for Step and DeAnne as the truth slowly unfolds. For their son has found something savagely evil ... and it's coming for Stevie next.","The Complete Essays of Mark Twain. Mark Twain is best known as one of this country's finest humorists and novelists. As this collection confirms, he was one of our finest essayists as well. Gathered here in a single volume, these pieces reveal the complete range of this esteemed American writer and contain some of his best, funniest, and most caustic work. ""English as She Is Taught,"" ""What Is Man?,"" and ""Letters to Satan"" are among the seventy-seven essays, each featuring Twain's witty, vital, colorful style--and reminding us why, nearly one hundred years after his death, he continues to be one of the most widely read and beloved of all American authors.","Wolf-Speaker (Immortals #2). When humans start cutting down trees and digging holes in peaceful Dunlath Valley, the wolves know that something is wrong. They send a messenger to the only human who will listen -- Daine, a fourteen-year-old girl with the unpredictable power of wild magic. Daine and her closest companions heed the wolves' cry for help. But the challenge they are about to face in the valley is greater than they can possibly imagine...","World War 3 Illustrated: Confrontational Comics. This graphic collection gathers the work of more than thirty artists who represent both the extreme edge of the comic art and its future. They are radical voices for the 21st century. Included are artists such as Peter Kuper, a frequent contributor to Time magazine, The New Yorker, The Village Voice, and The New York Times (where he had the first and only comic strip to run regularly in that paper); Eric Drooker, author/artist of the award-winning Flood! A Novel in Pictures: James Romberger, whose work is in the permanent collection of the New York Metropolitan Museum of Art; and Mike Diana, famous now as the first cartoonist in U.S. history sentenced to jail as a result of his work. Here, politics is mixed with the personal. Stories range from Sandy Jiminez's tale of homophobia in the Latin community to Sabrina Jones's articulate defense of her right to have an abortion, from Seth Tobocman's account of the squatters' movement on New York's Lower East Side to a piece by Mumia Abu Jamal","The Invisible Child. A new, peerless collection of speeches and essays by celebrated author Katherine Paterson. Featuring selected essays originally published in Gates of Excellence and The Spying Heart, this collection also includes the complete acceptance speeches for her two National Book Awards and two Newberry Medals, plus a new introduction and eight speeches never before published in book. form. With the same perception, wit, and generosity that characterize her fiction, this much-honored writer shares her ideas about writing for children, as well as her passion for reading, her spiritual faith, and her conviction that the imagination must be nourished. Her words will touch all those her care about the literature and the lives of children.",La última oportunidad.,"The Leatherstocking Tales Vol. 1: The Pioneers / The Last of the Mohicans / The Prairie. The library of America is dedicated to publishing America's best and most significant writing in handsome, enduring volumes, featuring authoritative texts. Hailed as the ""finest-looking, longest-lasting editions ever made"" (The New Republic), Library of America volumes make a fine gift for any occasion. Now, with exactly one hundred volumes to choose from, there is a perfect gift for everyone.","Self-Made Man: One Woman's Journey Into Manhood and Back Again. Having gone where no woman (who wasn't an aspiring or actual transsexual) has gone for any significant length of time, let alone eighteen months, Norah Vincent's surprising account is an enthralling reading experience and a revelatory piece of anecdotally based gender analysis that is sure to spark fierce and fascinating conversation. A journalist's provocative, spellbinding account of her eighteen months spent undercover will transform the way we think about what it means to be a man Following in the tradition of John Howard Griffin (Black Like Me) and Barbara Ehrenreich (Nickel and Dimed), Norah Vincent absorbed a cultural experience and reported back on what she observed incognito. For more than a year and a half she ventured into the world as Ned, with an ever-present five o'clock shadow, a crew cut, wire-rim glasses, and her own size 11 1/2 shoes--a perfect disguise that enabled her to observe the world of men as an insider. The result is a sympathetic, shrewd, and thrilling tour","The Pursuit of Happyness. The astounding yet true rags-to-riches saga of a homeless father who raised and cared for his son on the mean streets of San Francisco and went on to become a crown prince of Wall Street At the age of twenty, Milwaukee native Chris Gardner, just out of the Navy, arrived in San Francisco to pursue a promising career in medicine. Considered a prodigy in scientific research, he surprised everyone and himself by setting his sights on the competitive world of high finance. Yet no sooner had he landed an entry-level position at a prestigious firm than Gardner found himself caught in a web of incredibly challenging circumstances that left him as part of the city's working homeless and with a toddler son. Motivated by the promise he made to himself as a fatherless child to never abandon his own children, the two spent almost a year moving among shelters, ""HO-tels,"" soup lines, and even sleeping in the public restroom of a subway station. Never giving in to despair, Gardner made an astonishing","The World Is Flat: A Brief History of the Twenty-first Century. A timely and essential update on globalization, its successes and discontents, powerfully illuminated by one of our most respected journalists. When scholars write the history of the world twenty years from now, and they come to the chapter ""Y2K to March 2004,"" what will they say was the most crucial development? The attacks on the World Trade Center on 9/11 and the Iraq war? Or the convergence of technology and events that allowed India, China, and so many other countries to become part of the global supply chain for services and manufacturing, creating an explosion of wealth in the middle classes of the world's two biggest nations, giving them a huge new stake in the success of globalization? And with this ""flattening"" of the globe, which requires us to run faster in order to stay in place, has the world gotten too small and too fast for human beings and their political systems to adjust in a stable manner? In this brilliant new book, the award-winning New York Times columnist Thomas","A World Lit Only by Fire: The Medieval Mind and the Renaissance: Portrait of an Age. From tales of chivalrous knights to the barbarity of trial by ordeal, no era has been a greater source of awe, horror, and wonder than the Middle Ages. In handsomely crafted prose, and with the grace and authority of his extraordinary gift for narrative history, William Manchester leads us from a civilization tottering on the brink of collapse to the grandeur of its rebirth - the dense explosion of energy that spawned some of history's greatest poets, philosophers, painters, adventurers, and reformers, as well as some of its most spectacular villains - the Renaissance.",The World's Religions.,"The Birth of Tragedy. Among the most influential philosophers of modern times, Friedrich Nietzsche (1844-1900) declared in this classic study that Greek tragedy achieved greatness through a fusion of elements of Apollonian restraint and control with Dionysian components of passion and the irrational. In Nietzsche's eyes, however, Greek tragedy had been destroyed by the rationalism and optimism of thinkers like Socrates. Nevertheless, he found in these ancient works the life-affirming concept that existence is still beautiful, however grim and depressing it may sometimes be. These and many other ideas are argued with passionate conviction in this challenging book, called by British classicist F. M. Cornford ""a work of profound imaginative insight, which left the scholarship of a generation toiling in the rear.""","The Case Of The Kidnapped Candy (Jigsaw Jones Mystery #30). Looking for intriguing mysteries, great friendship stories, and quality chapter books for beginning readers? Look no further: Jigsaw and Mila are the best detectives on the market! The best detective in second grade is back -- and this time, he's cracking a Valentine's Day mystery! When the class's Valentine's Day candy stash disappears, it's up to Jigsaw and Mila to figure out who stole it. But there's more than one person with a sweet tooth in Ms. Gleason's classroom, so solving the mystery won't be easy. This case is no sweet treat!","The Heart of the Matter. Scobie is a highly principled officer in a war-torn West African state. When he is passed over for promotion he is forced to borrow money to send his despairing wife away on a holiday. In her absence he falls hopelessly in love with Helen, a young widow, and his life is transformed by the experience. With a duty to repay his debts and an inability to distinguish between love, pity, and responsibilty to others and to God, Scobie moves inexorably to his final damnation. The terrifying description of a man's awe of the Church and the ability to portray human motive and to convey such a depth of suffering make The Heart of the Matterone of Graham Greene's most enduring, tragic novels.","Sodom and Gomorrah (In Search of Lost Time #4). Sodom and Gomorrahopens a new phase of In Search of Lost Time. While watching the pollination of the Duchess de Guer-mantes's orchid, the narrator secretly observes a sexual encounter between two men. ""Flower and plant have no conscious will,"" Samuel Beckett wrote of Proust's representation of sexuality. ""They are shameless, exposing their genitals. And so in a sense are Proust's men and women . . . shameless. There is no question of right and wrong."" For this authoritative English-language edition, D. J. Enright has revised the late Terence Kilmartin's acclaimed reworking of C. K. Scott Moncrieff's translation to take into account the new definitive French editions of A la recherche du temps perdu(the final volume of these new editions was published by the Bibliotheque de la Pleiade in 1989).",CliffsNotes on Euripides' Medea and Electra.,Lorca & Jimenez: Selected Poems.,"The Wolf's Hour. This book is a remarkable tale of pulse-pounding excitement with a uniquely sympathetic, fascinating portrait of the werewolf as noble warrior-and conflicted being. Complex, compelling and utterly real.","'Salem's Lot. Something strange is going on in Jerusalem's Lot ... but no one dares to talk about it. By day, 'Salem's Lot is a typical modest New England town; but when the sun goes down, evil roams the earth. The devilishly sweet insistent laughter of a child can be heard echoing through the fields, and the presence of silent looming spirits can be felt lurking right outside your window. Stephen King brings his gruesome imagination to life in this tale of spine tingling horror.","El librero de Kabul. El librero de Kabul es una novela escrita por la autora noruega Asne Seierstad en 2002. El libro describe la vida de un librero que vive en Kabul y como va cambiando su vida a lo largo de las diferentes epocas que vive la capital afgana: la epoca de Zahir Shah, la intervencion sovietica, el regimen taliban y la ocupacion tras la guerra.","The Panda's Thumb: More Reflections in Natural History. With sales of well over one million copies in North America alone, the commercial success of Gould's books now matches their critical acclaim. The Panda's Thumbwill introduce a new generation of readers to this unique writer, who has taken the art of the scientific essay to new heights. Were dinosaurs really dumber than lizards? Why, after all, are roughly the same number of men and women born into the world? What led the famous Dr. Down to his theory of mongolism, and its racist residue? What do the panda's magical ""thumb"" and the sea turtle's perilous migration tell us about imperfections that prove the evolutionary rule? The wonders and mysteries of evolutionary biology are elegantly explored in these and other essays by the celebrated natural history writer Stephen Jay Gould.","Sahara (Dirk Pitt #11). 1996, Egypt. Searching for a treasure on the Nile, DIRK PITT thwarts the attempted assassination of a beautiful U.N. scientist investigating a disease that is driving thousands of North Africans into madness, cannibalism, and death. The suspected cause of the raging epidemic is vast, unprecedented pollution that threatens to extinguish all life in the world's seas. Racing to save the world from environmental catastrophe, Pitt and his team, equipped with an extraordinary, state-of-the-art yacht, run a gauntlet between a billionaire industrialist and a bloodthirsty West African tyrant. In the scorching desert, Pitt finds a gold mine manned by slaves and uncovers the truth behind two enduring mysteries -- the fate of a Civil War ironclad and its secret connection with Lincoln's assassination, and the last flight of a long-lost female pilot....Now, amidst the blazing, shifting sands of the Sahara, DIRK PITT will make a desperate stand -- in a battle the world cannot afford to lose!","Collected Tales Sketches Speeches & Essays 1852–1890. This Library of America book, with its companion volume, is the most comprehensive collection ever published of Mark Twain's short writings -- the incomparable stories, sketches, burlesques, hoaxes, tall tales, speeches, satires, and maxims of America's greatest humorist. Arranged chronologically and containing many pieces restored to the form in which Twain intended them to appear, the volumes show with unprecedented clarity the literary evolution of Mark Twain over six decades of his career. The nearly two hundred separate items in this volume cover the years from 1852 to 1890. As a riverboat pilot, Confederate irregular, silver miner, frontier journalist, and publisher, Twain witnessed the tragicomic beginning of the Civil War in Missouri, the frenzied opening of the West, and the feverish corruption, avarice, and ambition of the Reconstruction era. He wrote about political bosses, jumping frogs, robber barons, cats, women's suffrage, temperance, petrified men, the bicycle, the Fran","Demonic Males: Apes and the Origins of Human Violence. Whatever their virtues, men are more violent than women. Why do men kill, rape, and wage war, and what can we do about it? Drawing on the latest discoveries about human evolution and about our closest living relatives, the great apes, Demonic Males offers some startling new answers. Dramatic, vivid, and firmly grounded in meticulous research, this book will change the way you see the world. As the San Francisco Chronicle said, it ""dares to dig for the roots of a contentious and complicated subject that makes up much of our daily news.""","The Nibelungenlied. Written by an unknown author in the twelfth century, this powerful tale of murder and revenge reaches back to the earliest epochs of German antiquity, transforming centuries-old legend into a masterpiece of chivalric drama. Siegfried, a great prince of the Netherlands, wins the hand of the beautiful princess Kriemhild of Burgundy, by aiding her brother Gunther in his struggle to seduce a powerful Icelandic Queen. But the two women quarrel, and Siegfried is ultimately destroyed by those he trusts the most. Comparable in scope to the Iliad, this skilfully crafted work combines the fragments of half-forgotten myths to create one of the greatest epic poems - the principal version of the heroic legends used by Richard Wagner, in The Ring.","The Art of Fullmetal Alchemist: The Anime. Fullmetal Alchemist began as a manga series in Japan and quickly exploded into a world-wide anime hit. The cool and stylish artwork of the television program has now been compiled into a prestige format, hardcover book for both collectors and fans. Art inspired by the anime, along with initial character designs, cel art, and production notes--all this plus an interview with Yoshiyuki Itoh, the character designer for the anime. Face it true believers, it doesn't get better than this!","The Harry Bosch Novels Volume 2: The Last Coyote / Trunk Music / Angels Flight (Harry Bosch #4-6). The Last Coyote: LAPD homicide detective Harry Bosch is suspended from the force for attacking his commanding officer. Unable to remain idle, he investigates the long-unsolved murder of a Hollywood prostitute -- his mother. Trunk Music: Harry returns to the force to investigate the murder of a movie producer with Mafia ties. Up against both the LAPD's organized crime unit and the Mob, Harry follows the money trail to Las Vegas, where the case becomes personal. Angels Flight: The murder of a prominent attorney who made his career suing the police for racism and brutality lands Harry's friends and associates on the list of suspects -- and he must work closely with longtime enemies suspicious of his maverick ways to investigate them.","Suki's Kimono. Suki's favorite possession is her blue cotton kimono. A gift from her obachan, it holds special memories of her grandmother's visit last summer. And Suki is going to wear it on her first day back to school --- no matter what anyone says. When it's Suki's turn to share with her classmates what she did during the summer, she tells them about the street festival she attended with her obachan and the circle dance that they took part in. In fact, she gets so carried away reminiscing that she's soon humming the music and dancing away, much to the delight of her entire class! Filled with gentle enthusiasm and a touch of whimsy, Suki's Kimono is the joyful story of a little girl whose spirit leads her to march --- and dance --- to her own drumbeat.","The Journey (Guardians of Ga'Hoole #2). It began as a dream. A quest for the Great Ga'Hoole Tree, a mythical place where each night an order of owls rises to perform noble deeds. There Soren, Gylfie, Twilight, and Digger hope to find inspiration to fight the evil that dwells in the owl kingdom. The journey is long and harrowing. When Soren and his friends finally arrive at the Great Ga'Hoole Tree, they will be tested in ways they never dreamed and face challenges they never imagined. If they can learn from their leaders and from one another, they will soon become true Ga'hoolian owls-honest and brave, wise and true.",Inside Himalaya.,The Delta Star. A cheap hooker named Missy Moonbeam takes a fatal dive from the roof of a sleazy hotel. But what's a Caltech phone number doing in her trick book? And how does that connect to a dead private eye and a useless credit card? And what does all that have to do with a Whisky-class Russian sub and the Nobel Prize?,"Baby Names for Dummies. The fun and easy way to name the new bundle of joy Brimming with over 5,000 names, from traditional to unique, this is the perfect reference for parents-to-be looking for naming guidance. It features a an impressive assemblage of options for both boys and girls-from Biblical, medieval, and Shakespearean names to musical and international names-along with a list of today's most popular names and the favorite names of previous decades. Each entry contains variant spellings as well as the name's meaning, history, and derivations. Plus, fun sidebars offer examples of celebrities who chose unique names for their little ones and perfect suggestions for future political leaders, artists, and movie stars.","Head Over Heels. Love is always just around the corner in a Jill Mansell novel - with a few surprises and a lot of humour on the way to happiness Jessie has kept the identity of her son Oliver's father a secret for years. She's stunned when she discovers that the man in question, actor Toby Gillespie, has just moved in next door. The truth's about to come out. One glance at Oliver, and a little mental arithmetic, and Toby has the situation sussed. Meeting the son he never knew he had is the shock of a lifetime. It's a shock, too, for Toby's wife, the beautiful Deborah, though she seems to take it in her stride. Would Deborah be so relaxed if she knew just how close Toby wants to get to the mother of his firstborn? As the attraction between them flares up again, Jessie just can't see her way to a happy ending. But no one is quite what they seem, and there are more surprises to come...","Kissing the Beehive (Crane's View #1). Desperate for inspiration, a writer revisits a long-forgotten crime After nine books, three wives, and a massive advance for his as-yet-unwritten next novel, Sam Boyd has run out of ideas. He tries to write but his characters are dull, lifeless. So his thoughts turn to his hometown, and the tragedy he once encountered there. Boyd was fifteen when he found Pauline Ostrova floating in the Hudson River. The official verdict was murder, and the girl's ex-boyfriend was convicted. But decades later, Boyd remains certain that the killer still lives in his bucolic Hudson town--and he's determined to write his next book about what really happened. He has come home for inspiration, but the longer he stays, the more Boyd's investigation spirals toward madness and a final, shocking conclusion. This ebook contains an all-new introduction by Jonathan Carroll, as well as an exclusive illustrated biography of the author including rare images from his personal collection.",Tolkien: A Look Behind The Lord of the Rings.,"Winter Is the Warmest Season. Most people think summer is the warmest season. This story, however, is brimming with evidence to the contrary--from roaring fires to grilled cheese sandwiches to toasty flannel pajamas. A unique twist on the traditional wintertime picture book, the beautiful visual narrative follows a boy and his family through a day of hot breakfasts, steaming afternoon cocoa, and a festive candlelit party before bed. With its inviting scenes, poetic text,and gorgeous illustrations, Winter Is the Warmest Seasoncelebrates all the wonderful things that make winter the coziest time of the year.","Sensual Phrase Vol. 3. As a budding poet and lyricist, Aine is on her way to an audition one fateful afternoon. Absentmindedly stepping into the street, she barely avoids getting struck by an oncoming vehicle. Not only is the cute teenager lucky to be alive, but her brush with death turns out to be a date with destiny. The driver of the car just happens to be Sakuya, the charismatic and fabulously handsome lead singer for a band called Lucifer. In short order, Sakuya and his crew compose a song using Aineafs lyrics. The tune proves popular with the bandafs fans and Sakuya decides he wants a relationship, both professional and personal, with Aine. Thereafs only one small requirement: The lyrics Aine writes must be erotically charged. And guess what? Sakuya fully intends to introduce the young and inexperienced girl into the world of sensual delights. Does Sakuya actually care for Aine, or is she just another sexual conquest for him? Will Aine fulfill her dreams and become a professional lyricist, or has she s","Kissinger. By the time Henry Kissinger was made secretary of state in 1973, he had become, according to the Gallup Poll, the most admired person in America and one of the most unlikely celebrities ever to capture the world's imagination. Yet Kissinger was also reviled by large segments of the American public, ranging from liberal intellectuals to conservative activists. Kissinger explores the relationship between this complex man's personality and the foreign policy he pursued. Drawing on extensive interviews with Kissinger as well as 150 other sources, including U.S. presidents and his business clients, this first full-length biography makes use of many of Kissinger's private papers and classified memos to tell his uniquely American story. The result is an intimate narrative, filled with surprising revelations, that takes this grandly colorful statesman from his childhood as a persecuted Jew in Nazi Germany, through his tortured relationship with Richard Nixon, to his later years as a globe-trot","Ella Enchanted (Ella Enchanted #1). Also see: Alternate Cover Editions for this ISBN [ACE]  At birth, Ella is inadvertently cursed by an imprudent young fairy named Lucinda, who bestows on her the ""gift"" of obedience. Anything anyone tells her to do, Ella must obey. Another girl might have been cowed by this affliction, but not feisty Ella: ""Instead of making me docile, Lucinda's curse made a rebel of me. Or perhaps I was that way naturally."" When her beloved mother dies, leaving her in the care of a mostly absent and avaricious father, and later, a loathsome stepmother and two treacherous stepsisters, Ella's life and well-being seem to be in grave peril. But her intelligence and saucy nature keep her in good stead as she sets out on a quest for freedom and self-discovery as she tries to track down Lucinda to undo the curse, fending off ogres, befriending elves, and falling in love with a prince along the way. Yes, there is a pumpkin coach, a glass slipper, and a happily ever after, but this is the most remarkable, del","Theodore Rex. The Barnes & Noble Review Theodore Roosevelt and his two-term presidency (1901-9) deserve a king-size, seize-the-man biography -- and Edmund Morris has provided one. ""TR"" typifies the ""can do"" American; his famous maxim, of course, was ""Speak softly but carry a big stick."" Morris presents eyewitness history through the voices of the makers and shakers. His exhilarating narrative will captivate readers, providing welcome confirmation that this nation can produce presidents who bring leadership to great issues, hold to their purpose, and shape the destinies of nations. President McKinley's assassination brought the 43-year-old TR a challenging presidency, one to which Morris is a clearsighted guide. At home, TR had to persuade Congress to curb competition-stifling corporate trusts, monopolistic transcontinental railroads, and unhygienic food industries that saw consumers as sheep. He also faced labor and racial strife. Abroad, the American presence in Cuba and the Philippines brought cri","Plato's Symposium. Plato, Allan Bloom wrote, is ""the most erotic of philosophers,"" and his Symposiumis one of the greatest works on the nature of love ever written. This new edition brings together the English translation of the renowned Plato scholar and translator, Seth Benardete, with two illuminating commentaries on it: Benardete's ""On Plato's Symposium"" and Allan Bloom's provocative essay, ""The Ladder of Love."" In the Symposium, Plato recounts a drinking party following an evening meal, where the guests include the poet Aristophanes, the drunken Alcibiades, and, of course, the wise Socrates. The revelers give their views on the timeless topics of love and desire, all the while addressing many of the major themes of Platonic philosophy: the relationship of philosophy and poetry, the good, and the beautiful. --- The dramatic nature of Plato's dialogues is delightfully evident in the Symposium. The marriage between character and thought bursts forth as the guests gather at Agathon's house to celebrate","The Cold Six Thousand (Underworld USA #2). In this savagely audacious novel, James Ellroyplants a pipe bomb under the America in the 1960s, lights the fuse, and watches the shrapnel fly. On November 22, 1963 three men converge in Dallas. Their job: to clean up the JFK hit's loose ends and inconvenient witnesses. They are Wayne Tedrow, Jr., a Las Vegas cop with family ties to the lunatic right; Ward J. Littell, a defrocked FBI man turned underworld mouthpiece; and Pete Bondurant, a dope-runner and hit-man who serves as the mob's emissary to the anti-Castro underground. It goes bad from there. For the next five years these night-riders run a whirlwind of plots and counter-plots: Howard Hughes's takeover of Vegas, J. Edgar Hoover's war against the civil rights movement, the heroin trade in Vietnam, and the murders of Martin Luther King, Jr. and Bobby Kennedy. Wilder than L. A. Confidential, more devastating than American Tabloid, The Cold Six Thousand establishes Ellroy as one of our most fearless novelists.","The Divine Comedy Vol. 2: Purgatory. _The Divine Comedy_ is perhaps the greatest Christian classic ever written, and probably the greatest adventure story ever told. Dante wrote it to entertain, guide, and enrich ordinary readers, not just the intellectual elite. This clear new version with unique aids makes the fascinating story accessible to such readers today. Those who love Dante best as a storyteller and teacher will find in this book what they have been waiting for...the freshest, clearest, most exact, and most readable Divine Comedy in the English language, with full-page illustrations and original notes.","Alcestis. ""The Alcestis would hardly confirm its author's right to be acclaimed 'the most tragic of the poets.' It is doubtful whether one can call it a tragedy at all. Yet it remains one of the most characteristic and delightful of Euripidean dramas, as well as, by modern standards, the most easily actable. And I notice that many judges who display nothing but a fierce satisfaction in sending other plays of that author to the block or the treadmill, show a certain human weakness in sentencing the gentle daughter of Pelias."" So begins the introduction to the Alcestis by Euripides. This edition is from the translation of and with a introduction by Gilbert Murray.","Rise to Rebellion. Rise to Rebellion brings the American Revolution to life through the eyes of several of the most celebrated characters in American History. In 1770, the fuse of revolution is lit by a fateful command - ""Fire!"" - as England's peacekeeping mission ignites the Boston Massacre. The senseless killing of civilians leads to the tumultuous trial in which lawyer John Adams must defend the very enemy who has assaulted and abused the laws he holds sacred. Yet a taut courtroom drama soon broadens into a stunning epic of war as King George III leads a reckless and corrupt government in London toward the escalating abuse of his colonies. Outraged by the increasing loss of their liberties, an extraordinary gathering of America's most inspiring characters confronts the British presence with the ideals that will change history: John Adams, the idealistic attorney devoted to the law, who rises to greatness by the power of his words; Ben Franklin, one of the most celebrated men of his time, the elderly a","The Radicalism of the American Revolution. The nominal subtitle/description of this work on the front cover reads, ""How a Revolution Transformed a Monarchical Society into a Democratic One Unlike Any That Had Ever Existed."" In this major work of historical, cultural, social & political analysis, Gordon Wood overturns long-held theories about the nature & the effects of the American revolution. He shows that it was not, as has often been claimed, a conservative movement, a defense of American rights against British encroachments that was undertaken merely to preserve rather than change the existing structures of society. To the contrary, it is his thesis, based on assessment of the changes that actually took place in the way people were socially & economically connected to one another, that the American Revolution was as radical as any revolution in modern history, producing a society that was free & democratic far beyond anything thought either possible or desirable by the founding fathers. To make clear just how radically the","The Runaway Jury. Every jury has a leader, and the verdict belongs to him. In Biloxi, Mississippi, a landmark tobacco trial with hundreds of millions of dollars at stake begins routinely, then swerves mysteriously off course. The jury is behaving strangely, and at least one juror is convinced he's being watched. Soon they have to be sequestered. Then a tip from an anonymous young woman suggests she is able to predict the jurors' increasingly odd behavior. Is the jury somehow being manipulated, or even controlled? If so, by whom? And, more importantly, why? From the Trade Paperback edition.","How to Breathe Underwater. In her dazzling first book Julie Orringer dives into the private world of childhood and immerses us in its fears and longings: the jealous friendships and the bitter sibling battles; the parents that row and the boys that won't dance with you. Then, in a voice that is equally tender and compassionate, she reminds us of those rare, exhilarating moments of victory. 'Unbelievably good: the humiliations and cruelties and passions of childhood, sparkling fresh prose, a writer with a big heart and an acute sense of the small things that loom large in our lives' Monica Ali, Guardian","Eastern Standard Tribe. A comedy of loyalty, betrayal, sex, madness, and music-swapping Art is an up-and-coming interface designer, working on the management of data flow along the Massachusetts Turnpike. He's doing the best work of his career and can guarantee that the system will be, without a question, the most counterintuitive, user-hostile piece of software ever pushed forth onto the world. Why? Because Art is an industrial saboteur. He may live in London and work for an EU telecommunications megacorp, but Art's real home is the Eastern Standard Tribe. Instant wireless communication puts everyone in touch with everyone else, twenty-four hours a day. But one thing hasn't changed: the need for sleep. The world is slowly splintering into Tribes held together by a common time zone, less than family and more than nations. Art is working to humiliate the Greenwich Mean Tribe to the benefit of his own people. But in a world without boundaries, nothing can be taken for granted-not happiness, not money, and most","Late Victorian Holocausts: El Niño Famines and the Making of the Third World. Examining a series of El Nino-induced droughts and the famines that they spawned around the globe in the last third of the 19th century, Mike Davis discloses the intimate, baleful relationship between imperial arrogance and natural incident that combined to produce some of the worst tragedies in human history. Late Victorian Holocaustsfocuses on three zones of drought and subsequent famine: India, Northern China; and Northeastern Brazil. All were affected by the same global climatic factors that caused massive crop failures, and all experienced brutal famines that decimated local populations. But the effects of drought were magnified in each case because of singularly destructive policies promulgated by different ruling elites. Davis argues that the seeds of underdevelopment in what later became known as the Third World were sown in this era of High Imperialism, as the price for capitalist modernization was paid in the currency of millions of peasants’ lives.","A Distant Mirror: The Calamitous 14th Century. The 14th century gives us back two contradictory images: a glittering time of crusades and castles, cathedrals and chivalry, and a dark time of ferocity and spiritual agony, a world plunged into a chaos of war, fear and the Plague. Barbara Tuchman anatomizes the century, revealing both the great rhythms of history and the grain and texture of domestic life as it was lived.",Be the Person You Want to Find: Relationship and Self-Discovery. This guide to self-discovery through intimate relationships offers a spiritual perspective on healing childhood wounds and destructive patterns that are learned early on and later cause relationship dysfunction in adulthood.,"Edie: Girl on Fire. Model, film star, socialite, friend, lover, addict, Edie Sedgwick was the first ""it"" girl of the Andy Warhol Factory scene and later muse to Bob Dylan. The arc of Edie's life traced the rise and fall of the 1960sfrom idyllic experimentation to dissolute recklessness. After being toasted by the whole of New York City, Edie died alone of a drug overdose in California at the age of 28. David Weisman (with John Palmer) filmed Edie for the last five years of her life in his cult film Ciao! Manhattan. When he recently uncovered lost footage of Edie, David was inspired to create Edie: Girl on Fire, a book and a documentary film that explores Edie's true story. He and coauthor Melissa Painter have tracked down and interviewed many of Edie Sedgwick's surviving intimates, including Danny Fields, Baby Jane Holzer, and Ultra Violet. They also unearthed hundreds of never-before-published photosportraits, professional ad shoots, and heartbreaking snapshots of the girl who won New York's heart and ne",El ojo de fuego.,Norte.,"Ranma 1/2 Vol. 7 (Ranma ½ (US 2nd) #7). Akane gets the lead in the school play and Ranma learns that kissing is such sweet sorrow. Ryoga and Ranma try to find the legendary ""Spring of Drowned Man,"" and twisted sister Kodachi Kuno concocts poisoned treats to snare Mister Saotome.","The Air-Conditioned Nightmare. In 1939, after ten years as an expatriate, Henry Miller returned to the United States with a keen desire to see what his native land was really like--to get to the roots of the American nature and experience. He set out on a journey that was to last three years, visiting many sections of the country and making friends of all descriptions. The Air-Conditioned Nightmareis the result of that odyssey.","Armageddon's Children (Genesis of Shannara #1). Terry Brooks is one of a handful of writers whose work defines modern fantasy fiction. His twenty-three international bestsellers have ranged from the beloved Shannara series to stories that tread a much darker path. Armageddon's Children is a new creation-the perfect opportunity for readers unfamiliar with Brooks's previous work to experience an author at the height of his considerable storytelling powers. It is a gripping chronicle of a once-familiar world now spun shockingly out of control, in which an extraordinary few struggle to salvage hope in the face of terrifying chaos. Logan Tom is doomed to remember the past and determined to rescue the future. Far behind him lies a boyhood cut violently short by his family's slaughter, when the forces of madness and hate swept our world after decadent excesses led to civilization's downfall. Somewhere ahead of him rests the only chance to beat back the minions of evil that are systematically killing and enslaving the last remnants of human","Look to Windward (Culture #7). The Twin Novae battle had been one of the last of the Idiran war, one of the most horrific. Desperate to avert defeat, the Idirans had induced not one but two suns to explode, snuffing out worlds & biospheres teeming with sentient life. They were attacks of incredible proportion--gigadeathcrimes. But the war ended & life went on. Now, 800 years later, light from the 1st explosion is about to reach the Masaq' Orbital, home to the Culture's most adventurous & decadent souls. There it will fall upon Masaq's 50 billion inhabitants, gathered to commemorate the deaths of the innocent & to reflect, if only for a moment, on what some call the Culture's own complicity in the terrible event. Also journeying to Masaq' is Major Quilan, an emissary from the war-ravaged world of Chel. In the aftermath of the conflict that split his world apart, most believe he has come to Masaq' to bring home Chel's most brilliant star & self-exiled dissident, the honored Composer Ziller. Ziller claims he will do an",The Portable James Joyce.,"The Unknown Masterpiece. A New York Review Books Original One of Honore de Balzac's most celebrated tales, ""The Unknown Masterpiece"" is the story of a painter who, depending on one's perspective, is either an abject failure or a transcendental genius--or both. The story, which has served as an inspiration to artists as various as Cezanne, Henry James, Picasso, and New Wave director Jacques Rivette, is, in critic Dore Ashton's words, a ""fable of modern art."" Published here in a new translation by poet Richard Howard, ""The Unknown Masterpiece"" appears, as Balzac intended, with ""Gambara,"" a grotesque and tragic novella about a musician undone by his dreams.","On Wine and Hashish. Initially composed for newspaper publication, and inspired by Thomas De Quincey's Confessions of an Opium Eater,Baudelaire's musings on wine and hashish provide acute and fascinating psychological insight into the mind of the addict.On Wine and Hashishasserts the ambivalence of memory, urging a union of willpower and sensual pleasure as Baudelaire claims that wine and hashish bring about an escape of narrative time. This characteristic theme anticipates his famous prose poems, ""Le Spleen de Paris,"" in which drunkenness--as induced by wine, poetry, or virtue--is celebrated in extraordinary style.",Starting Over (Sweet Valley High #33).,"The Power of Myth. Campbell's most impressive gift was his ability to take a contemporary situation, such as the murder & funeral of President John F. Kennedy, & help us understand its impact in the context of ancient mythology. Herein lies the power of The Power of Myth, showing how humans are apt to create & live out the themes of mythology. Based on a six-part PBS tv series hosted by Bill Moyers, this classic is especially compelling because of its engaging question-&-answer format, creating an easy, conversational approach to complicated & esoteric topics. For example, when discussing the mythology of heroes, Campbell & Moyers smoothly segue from the Sumerian sky goddess Inanna to Star Wars' mercenary-turned-hero, Han Solo. Most impressive is his encyclopedic knowledge of myths, demonstrated in his ability to recall the details & archetypes of almost any story, from any point of history, & translate it into a lesson for spiritual living in the here & now.--Gail Hudson (edited) Editor's Note Introduct",What Life Was Like Among Druids and High Kings: Celtic Ireland AD 400-1200 (What Life Was Like).,"A Multitude of Sins. One of the most celebrated and unflinching chroniclers of modern life now explores, in this masterful collection of short stories, the grand theme of intimacy, love, and their failures. With remarkable insight and candor, Richard Ford examines liaisons in and out and to the sides of marriage. An illicit visit to the Grand Canyon reveals a vastness even more profound. A couple weekending in Maine try to recapture the ardor that has disappeared from their life together. And on a spring evening, a young wife tells her husband of her affair with the host of the dinner party they're about to join. The rigorous intensity Ford brings to these vivid, unforgettable dramas marks this as his most powerfully arresting book to date-confirming the judgment of the New York Times Book Reviewthat ""nobody now writing looks more like an American classic.""","The Navigator (NUMA Files #7). Years ago, an ancient Phoenician statue known as the Navigatorwas stolen from the Baghdad Museum, and there are men who would do anything to get their hands on it. Their first victim is a crooked antiquities dealer, murdered in cold blood. Their second very nearly is a UN investigator who, were it not for the timely assistance of Austin and Zavala, would now be at the bottom of a watery grave.What's so special about this statue? Austin wonders. The search for answers will take the NUMA team on an astonishing odyssey through time and space, one that encompasses no less than the lost treasures of King Solomon, a mysterious packet of documents personally encoded by Thomas Jefferson, and a top secret scientific project that could change the world forever. And that's before the surprises really begin . . . Rich with all the hair-raising action and endless invention that have become Cussler's hallmarks, The Navigatoris Clive's best yet.","Never Let Me Go. From the Booker Prize-winning author of The Remains of the Day comes a devastating new novel of innocence, knowledge, and loss. As children Kathy, Ruth, and Tommy were students at Hailsham, an exclusive boarding school secluded in the English countryside. It was a place of mercurial cliques and mysterious rules where teachers were constantly reminding their charges of how special they were. Now, years later, Kathy is a young woman. Ruth and Tommy have reentered her life. And for the first time she is beginning to look back at their shared past and understand just what it is that makes them special--and how that gift will shape the rest of their time together. Suspenseful, moving, beautifully atmospheric, Never Let Me Go is another classic by the author of The Remains of the Day.","The Agricola and The Germania. The portrait of Tacitus' father-in-law, Agricola, is a eulogistic description of the career of the famous governor of Roman Britain, and it contains the first detailed account of the British Isles. In the GermaniaTacitus examines the life and customs of the war-like German tribes, often comparing them favourably with the decadence of Imperial Rome. Hailed as a ' golden book ', the Germaniais certainly the best of its kind in antiquity. This volume contains Harold Mattingly's widely respected introduction and translation of perhaps the greatest stylist of the Roman Empire.","The Sex Lives of Cannibals: Adrift in the Equatorial Pacific. At the age of twenty-six, Maarten Troost who had been pushing the snooze button on the alarm clock of life by racking up useless graduate degrees and muddling through a series of temp jobs decided to pack up his flip-flops and move to Tarawa, a remote South Pacific island in the Republic of Kiribati. He was restless and lacked direction, and the idea of dropping everything and moving to the ends of the Earth was irresistibly romantic. He should have known better. The Sex Lives of Cannibalstells the hilarious story of what happens when Troost discovers that Tarawa is not the island paradise he dreamed of. Falling into one amusing misadventure after another, Troost struggles through relentless, stifling heat, a variety of deadly bacteria, polluted seas, toxic fish, and worst of all, no television or coffee. And that's just the first day. Sunburned, emaciated, and stinging with sea lice, Troost spends the next two years battling incompetent government officials, alarmingly large critters,",Storm Warning (Valdemar: Mage Storms #1).,The Works and Days/Theogony/The Shield of Herakles. Epic poems by one who has been called the first Greek philosopher and theologian.,A Full House: An Austin Family Christmas (Austin Family #5.6). The Austins have a full house on Christmas Eve when fate brings them a new mother and a young woman who is expecting.,"Euripides IV: Rhesus / The Suppliant Women / Orestes / Iphigenia in Aulis. In nine paperback volumes, the Grene and Lattimore editions offer the most comprehensive selection of the Greek tragedies available in English. Over the years these authoritative, critically acclaimed editions have been the preferred choice of over three million readers for personal libraries and individual study as well as for classroom use.",Huck Finn & Tom Sawyer among the Indians & Other Unfinished Stories (Mark Twain Library).,"Laguna I Love You: The Best of ""Our Town"".","The Passion. Jeanette Winterson's novels have established her as one of the most important young writers in world literature. The Passionis perhaps her most highly acclaimed work, a modern classic that confirms her special claim on the novel. Set during the tumultuous years of the Napoleonic Wars, The Passionintertwines the destinies of two remarkable people: Henri, a simple French soldier, who follows Napoleon from glory to Russian ruin; and Villanelle, the red-haired, web-footed daughter of a Venetian boatman, whose husband has gambled away her heart. In Venice's compound of carnival, chance, and darkness, the pair meet their singular destiny. In her unique and mesmerizing voice, Winterson blends reality with fantasy, dream, and imagination to weave a hypnotic tale with stunning effects.","Life of Pi. When sixteen-year-old Pi Patel finds himself stranded in a lifeboat in the middle of the Pacific Ocean with only a menacing 450-pound Bengal tiger for company, he quickly realizes that the only way to survive is to make sure the tiger is more afraid of him than he is of it. Finding strength within himself, he draws upon all of his knowledge and cunning, battling for food and shelter, overcoming storms and disasters, and, in the end, making a peace of sorts with both tiger and ocean.","Amarse con los ojos abiertos. Un extrano error provocado por un servidor de correo electronico provoca el encuentro entre un hombre y una mujer. Roberto, un soltero bastante mujeriego y algo cansado de su vida rutinaria, se ve envuelto de forma misteriosa en el intercambio de mensajes entre dos psicologos que hablan sobre el amor y la pareja.Poco a poco, Roberto se sentira cada vez mas atrapado por la historia y querra ser participe de ella, dando lugar a una situacion fascinante que culminara en un final totalmente inesperado. El autor de Dejame que te cuente... y Cuentos para pensar sorprende, una vez mas, con un magnifico libro. Dejame que te cuente..., su primer libro, ha vendido mas de 30.000 ejemplares en Espana. Este titulo y su segunda obra, Cuentos para pensar, figuran desde hace 4 semanas en las listas de libros mas vendidos de La Vanguardia, la Casa del Libro y FNAC.",Baghdad Without a Map and Other Misadventures in Arabia.,"The Gangs of New York. The Gangs of New York has long been hand-passed among its cult readership. It is a tour through a now unrecognizable city of abysmal poverty and habitual violence cobbled, as Luc Sante has written, ""from legend, memory, police records, the self-aggrandizements of aging crooks, popular journalism, and solid historical research."" Asbury presents the definitive work on this subject, an illumination of the gangs of old New York that ultimately gave rise to the modern Mafia and its depiction in films like The Godfather. ""A universal history of infamy [that] contains all the confusion and cruelty of the barbarian cosmologies....""--Jorge Luis Borges ""The tale is one of blood, excitement and debauchery.""--The New York Times Book Review ""The Gangs of New York is one of the essential works of the city....""--Luc Sante, The New York Review of Books","Martian Time-Slip. Mars. As a desolate place, forgotten by Earth. Isolated homesteaders huddle along the lines of the great canals, in thrall to Arnie Kott and his plumbing union, which controls the vital water supply. Kott's manipulations poison the lives of those he draws to him: his mistress Doreen; Jack Bohlen, the schizoid repairman she comes to love; Manfred, an autistic child plagued with memories of a terrifying future; even the poor native Bleekmen of Mars.","The Midwife's Tale. ""I come from a long line of midwives,"" narrates Elizabeth Whitely. ""I was expected to follow Mama, follow Granny, follow Great-granny. In the end, I didn't disappoint them. Or perhaps I did. After all, there were no more midwives after me.""For generations, the women in Elizabeth's family have brought life to Kettle Valley, West Virginia, heeding a destiny to tend its women with herbals, experience, and wisdom. But Elizabeth, who has comforted so many, has lost her heart to the one man who cannot reciprocate, even when she moves into his home to share his bed and raise his child. Then Lauren Denniker, Elizabeth's adopted daughter, begins to display a miraculous gift--just as Elizabeth learns that she herself is unable to have a child. How Elizabeth comes to free herself from a loveless relationship, grapple with Lauren's astonishing abilities, and come to terms with her own emptiness is the compelling heart of this remarkable tale. Incorporating the spirited mountain mythology of prewar","Oath of Swords (War God #1). Whom the gods would recruit, they first tick off... Our Hero: The unlikely Paladin, Bahzell Bahnakson of the Horse Stealer Hradani. He's no knight in shining armor. He's a hradani, a race known for their uncontrollable rages, bloodthirsty tendencies, and inability to maintain civilized conduct. None of the other Five Races of man likethe hradani. Besides his ethnic burden, Bahzell has problems of his own to deal with: a violated hostage bond, a vengeful prince, a price on his head. He doesn't want to mess with anybody else's problems, let alone a god's. Let alone the WarGod's! So how does he end up a thousand leagues from home, neck-deep in political intrigue, assassins, demons, psionicists, evil sorcery, white sorcery, dark gods, goodgods, bad poets, greedy landlords, and most of Bortalik Bay? Well, it's all the War God's fault.","Lectures on Literature. For two decades, first at Wellesley and then at Cornell, Nabokov introduced undergraduates to the delights of great fiction. Here, collected for the first time, are his famous lectures, which include Mansfield Park, Bleak House, and Ulysses. Edited and with a Foreword by Fredson Bowers; Introduction by John Updike; illustrations.",The Tutor's First Love. Another classic love story retold for today's reader. Deep spiritual insights are artfully woven into the intriguing plot.,"Miracle and Other Christmas Stories. The winner of multiple Hugo and Nebula Awards, Connie Willis capture the timeless essence of generosity and goodwill in this magical collection if Christmas stories. These eight tales-two of which have never before been published-boldly reimagine the stories of Christmas while celebrating the power of love and compassion. This enchanting treasury includes: ""Miracle,"" in which a young woman's carefully devised plans to find romance go awry when her guardian angel shows her the true meaning of love ""In Coppelius's Toyshop,"" where a jaded narcissist finds himself trapped in a crowded toy store at Christmastime ""Epiphany,"" in which three modern-day wisemen embark on a quest unlike any they've ever experienced ""Inn,"" where a choir singer gives shelter to a homeless man and his pregnant wife-only to learn later that there's much more to the couple than meets the eye And more",Cliffs Notes on Cervantes' Don Quixote.,Undaunted Courage.,"The Sigma Protocol. In Zurich, Switzerland, American investment banker Ben Hartman has arrived on holiday when he chances upon old friend Jimmy Cavanaugh -- a madman who's armed and programmed to assassinate. In a matter of minutes, six innocent bystanders -- and Cavanaugh -- are dead. But when his body vanishes, and his weapon mysteriously appears in Hartman's luggage, Hartman is plunged into an unfathomable nightmare, and suddenly finds himself on the run. Meanwhile in Washington, D.C., Anna Navarro, field agent for the Department of justice, has been asked to investigate the sudden -- seemingly unrelated -- deaths of eleven men throughout the world. The only thing that connects them is a secret file, over a half-century old, linked to the CIA, and marked with the same puzzling codename: Sigma. But as Anna follows the connecting thread, she finds herself in the shadows of a relentless killer who is one step ahead of her, victim by victim. Together she and Hartman must uncover the diabolical secrets long","The Treasure Hunt: A Little Bill Book. [Reader Level 3] Little Bill reaches his room for his treasure. What he finds is a great surprise as he learns to value his own talents and treasure the people he loves.",The Big Book of Boy Stuff.,"The Intuitionist. Verticality, architectural and social, is the lofty idea at the heart of Colson Whitehead's first novel that takes place in an unnamed high-rise city that combines 21st-century engineering feats with 19th-century pork-barrel politics. Elevators are the technological expression of the vertical ideal, and Lila Mae Watson, the city's first black female elevator inspector, is its embattled token of upward mobility. When Number Eleven of the newly completed Fanny Briggs Memorial Building goes into deadly free-fall just hours after Lila Mae has signed off on it, using the controversial ""Intuitionist"" method of ascertaining elevator safety, both Intuitionists and Empiricists recognize the set-up, but may be willing to let Lila Mae take the fall in an election year. As Lila Mae strives to exonerate herself in this urgent adventure full of government spies, underworld hit men, and seductive double agents, behind the action, always, is the Idea. Lila Mae's quest is mysteriously entwined with ex","The Talbot Odyssey. IT STARTED AS A SIMPLE SPY HUNT. IT BECAME A DESPERATE BATTLE TO SAVE THE WEST. For forty years Western intelligence agents have known a terrible secret: the Russians have a mole -- code-named Talbot -- inside the CIA. At first Talbot is suspected of killing European agents. Then a street-smart ex-cop uncovers a storm of espionage and murder on the streets of New York, while in a Long Island suburb a civic demonstration against the Russian mission masks a desperate duel of nerves and wits. Engineered by Talbot, a shadow world of suspicion and deceit is spilling onto the streets -- leading to a new Soviet weapon and a first-strike war plan threatening the foundations of American government. For the U.S., time is running out. For Talbot, the time is now.","Spook: Science Tackles the Afterlife. ""Equal parts Groucho Marx & Stephen Jay Gould, both enlightening & entertaining.""--Sunday Denver Post & Rocky Mountain News The best-selling author of Stiff: The Curious Lives of Human Cadaversnow trains her considerable wit & curiosity on the human soul. What happens when we die? Does the light just go out & that's that--the million-year nap? Or will some part of my personality, my me-ness persist? What will that feel like? What will I do all day? Is there a place to plug in my lap-top?"" In an attempt to find out, Mary Roach brings her tireless curiosity to bear on an array of contemporary & historical soul-searchers: scientists, schemers, engineers, mediums, all trying to prove (or disprove) that life goes on after we die. She begins the journey in rural India with a reincarnation researcher & ends up in a University of Virginia operating room where cardiologists have installed equipment near the ceiling to study out-of-body near-death experiences. Along the way, she enrolls in an En","The Collected Stories of Isaac Bashevis Singer. The forty-seven stories in this collection, selected by Singer himself out of nearly one hundred and fifty, range from the publication of his now-classic first collection, Gimpel the Fool,in 1957, until 1981. They include supernatural tales, slices of life from Warsaw and the shtetls of Eastern Europe, and stories of the Jews displaced from that world to the New World, from the East Side of New York to California and Miami.","The New York Trilogy. Paul Auster's signature work, The New York Trilogy, consists of three interlocking novels: City of Glass, Ghosts, and The Locked Room; haunting and mysterious tales that move at the breathless pace of a thriller.",Frankenstein (SparkNotes Literature Guide).,Mr. Impossible. Mr. Impossible can jump over a house and solve the world's toughest math problem. Is there anything he can't do?,"The Gospel According to the Beatles. Renowned British music journalist and author Steve Turner surveys the religious and spiritual influence of the Beatles, the band that changed the history of music forever. With new interviews, never-before-published material, and fresh insights, Turner helps the reader understand the religious and spiritual ideas and ideals that influenced the music and lives of the Beatles and helps us see how the Fab Four influenced our own lives and culture. Topics discussed include the religious upbringing of John, Paul, George, and Ringo; the backlash in the United States after John Lennon's ""The Beatles are more popular than Jesus"" comment; the dabbling in Eastern religion; the use of drugs to attempt to enter a higher level of consciousness; and the overall legacy that the Beatles and their music have left. While there is no religious system that permanently anchored the Beatles or their music, they did leave a gospel, Turner concludes: one of love, peace, personal freedom, and the search for tr","The Glass Bead Game. The final novel of Hermann Hesse, for which he won the Nobel Prize for Literature in 1946, 'The Glass Bead Game' is a fascinating tale of the complexity of modern life as well as a classic of modern literature. Set in the 23rd century, 'The Glass Bead Game' is the story of Joseph Knecht, who has been raised in Castalia, the remote place his society has provided for the intellectual elite to grow and flourish. Since childhood, Knecht has been consumed with mastering the Glass Bead Game, which requires a synthesis of aesthetics and scientific arts, such as mathematics, music, logic, and philosophy, which he achieves in adulthood, becoming a Magister Ludi (Master of the Game).","Life Expectancy. Jimmy Tock comes into the world on the very night his grandfather leaves it. As a violent storm rages outside the hospital, Rudy Tock spends long hours walking the corridors between the expectant fathers' waiting room and his dying father's bedside. It's a strange vigil made all the stranger when, at the very height of the storm's fury, Josef Tock suddenly sits up in bed and speaks coherently for the first and last time since his stroke. What he says before he dies is that there will be five dark days in the life of his grandson--five dates whose terrible events Jimmy will have to prepare himself to face. The first is to occur in his twentieth year; the second in his twenty-third year; the third in his twenty-eighth; the fourth in his twenty-ninth; the fifth in his thirtieth. Rudy is all too ready to discount his father's last words as a dying man's delusional rambling. But then he discovers that Josef also predicted the time of his grandson's birth to the minute, as well as his exacth","Spindle's End. ""Spindle's End"" is a retelling of the fairy tale, ""The Sleeping Beauty"", which takes the reader into a magical world filled with modern characters who encounter adventure, love and loss. The curse placed on Rosie at her christening will hunt her down through the years.",The Man Who Wasn't Maigret: A Portrait of Georges Simenon.,The Most of P.G. Wodehouse.,"The Diary of Anne Frank. Frances Goodrich and Albert Hackett's acclaimed stage adaptation of Anne Frank's World War II diary won the 1956 Pulitzer Prize, Tony Award, and Critics Circle Award. It ran on Broadway from 1955 to 1957 and was also adapted into a feature film. In the 1990s, Wendy Kesselman revised Goodrich and Hackett's play to incorporate some material that had been removed or censored from Frank's diaries when they were initially published. The revised version was staged on Broadway in 1997.",Essentials of American Government: Continuity and Change.,"The Unbearable Lightness of Being. In The Unbearable Lightness of Being, Milan Kundera tells the story of a young woman in love with a man torn between his love for her and his incorrigible womanizing and one of his mistresses and her humbly faithful lover. This magnificent novel juxtaposes geographically distant places, brilliant and playful reflections, and a variety of styles to take its place as perhaps the major achievement of one of the world's truly great writers.","The Art of Shakespeare's Sonnets. Helen Vendler, widely regarded as an accomplished interpreter of poetry, here serves as a guide to some of the best-known poems in the English language. In detailed commentaries on Shakespeare's 154 sonnets, Vendler reveals previously unperceived imaginative and stylistic features of the poems, pointing out not only new levels of import in particular lines, but also the ways in which the four parts of each sonnet work together to enact emotion and create dynamic effect. The commentaries--presented alongside the original and modernized texts--offer fresh perspectives on the individual poems, and, taken together, provide a good picture of Shakespeare's techniques as a working poet. With the help of Vendler, we gain an appreciation of ""Shakespeare's elated variety of invention, his ironic capacity, his astonishing refinement of technique, and, above all, the reach of his skeptical imaginative intent.""","Dreams from My Father: A Story of Race and Inheritance. Nine years before the Senate campaign that made him one of the most influential and compelling voices in American politics, Barack Obama published this lyrical, unsentimental, and powerfully affecting memoir, which became a #1 New York Times bestseller when it was reissued in 2004. Dreams from My Fathertells the story of Obama's struggle to understand the forces that shaped him as the son of a black African father and white American mother--a struggle that takes him from the American heartland to the ancestral home of his great-aunt in the tiny African village of Alego. Obama opens his story in New York, where he hears that his father--a figure he knows more as a myth than as a man--has died in a car accident. The news triggers a chain of memories as Barack retraces his family's unusual history: the migration of his mother's family from small-town Kansas to the Hawaiian islands; the love that develops between his mother and a promising young Kenyan student, a love nurtured by youthful","The Wedding Night. Swept off her feet by the romance of a whirlwind courtship, Angie Townsend is hopeful that her marriage to Owen Sutherland will end the rivalry that has divided their powerful families for years. But when a desperate phone call warns her that the marriage is nothing but a cleverly orchestrated corporate move by her new husband, Angie puts all plans for the wedding night on hold. Is Owen really a clever stranger or is he the man who made a solemn promise to love her forever?","The Poet (Jack McEvoy #1; Harry Bosch Universe #5). Denver crime-beat reporter Jack McEvoy specializes in violent death. So when his homicide detective brother kills himself, McEvoy copes in the only way he knows how--he decides to write the story. But his research leads him to suspect a serial killer is at work--a devious murderer who's killing cops and leaving a trail of poetic clues. It's the news story of a lifetime, if he can get the story without losing his life.","Bite Me If You Can (Argeneau #6). Once Bitten...One minute Leigh is walking home in the early hours of the morning, and the next a vampire is sinking his teeth into her neck. Turns out it was a rogue vampire marked for termination, but it does Leigh little good because the damage's already been done. She's become one of them. Lucian Argeneau, hunter of rogue vampires, has been alive for over two thousand years, and there's very little to excite him anymore. Food has become tasteless, sex is ordinary. The Leigh drops into his life. Suddenly he finds himself craving coffee...and imagining the sassy brunette atop the black satin sheets on his nice big bed. It's Lucian's job now to enlighten Leigh on the inner workings of being immortal...and tutoring her is igniting a fire in him that hasn't burned in centuries. But until they stop a renegade bloodsucker from destroying the human race, passion will have to wait!","The Epic of Gilgamesh. Since the discovery over one hundred years ago of a body of Mesopotamian poetry preserved on clay tablets, what has come to be known as the Epic of Gilgamesh has been considered a masterpiece of ancient literature. It recounts the deeds of a hero-king of ancient Mesopotamia, following him through adventures and encounters with men and gods alike. Yet the central concerns of the Epic lie deeper than the lively and exotic story line: they revolve around a man's eternal struggle with the limitations of human nature, and encompass the basic human feelings of lonliness, friendship, love, loss, revenge, and the fear of oblivion of death. These themes are developed in a distinctly Mesopotamian idiom, to be sure, but with a sensitivity and intensity that touch the modern reader across the chasm of three thousand years. This translation presents the Epic to the general reader in a clear narrative.","A Kiss Before Dying. A Kiss Before Dying not only debuted the talent of best-selling novelist Ira Levin to rave reviews, it also set a new standard in the art of mystery and suspense. Now a modern classic, as gripping in its tautly plotted action as it is penetrating in its exploration of a criminal mind, it tells the shocking tale of a young man who will stop at nothing--not even murder--to get where he wants to go. For he has dreams, plans. He also has charm, good looks, sex appeal, intelligence. And he has a problem. Her name is Dorothy; she loves him, and she's pregnant. The solution may demand desperate measures. But, then, he looks like the kind of guy who could get away with murder. Compellingly, step by determined step, the novel follows this young man in his execution of one plan he had neither dreamed nor foreseen. Nor does he foresee how inexorably he will be enmeshed in the consequences of his own extreme deed.","Hot Six (Stephanie Plum #6). Big-haired bounty hunter Stephanie Plum is back and, boy, has she got man-trouble ...",Seinfeld and Philosophy.,Scholar of Decay (Ravenloft #14).,"Quicksand. Helga's mother is white, and her father is black -- and absent. Ostracized throughout her lonely childhood for her dark skin, Helga spends her adult life seeking acceptance. Everywhere she goes -- the American South, Harlem, even Denmark--she feels oppressed. Socially, economically, and psychologically, Helga struggles against the ""quicksand"" of classism, racism, and sexism. One of the most acclaimed and influential writers of the Harlem Renaissance, Nella Larsen published her powerful first novel in 1928. Quicksandfeatures intriguing autobiographical parallels with Larsen's own life, in addition to reflecting many aspects of African-American culture of the 1920s. Alice Walker praised it and Passing(Larsen's second novel, also available in a Dover edition) as ""novels I will never forget. They open up a whole world of experience and struggle that seemed to me, when I first read them years ago, absolutely absorbing, fascinating, and indispensable.""","After the Plague: and Other Stories. Hailed as one of the best short story writers of his generation, T.C. Boyle presents sixteen stories--nine of which appeared in The New Yorker--that highlight the evolving excellence of his inventive, modern, and wickedly witty style. In After the Plague, Boyle exhibits his maturing themes through an amazing array of subjects in a range of emotional keys. He taps today's headlines, from air rage (""Friendly Skies"") to abortion doctors (""Killing Babies""), and delves into more naturalistic themes of quiet power and passion, from a tale of first love (""The Love of My Life"") to a story about confronting old age (""Rust""). Combining joy and humor with the dark, intense scenarios that Boyle's audience has come to love, After the Plaguereveals a writer at the top of his form.","The Probable Future. Alice Hoffman's most magical novel to date--three generations of extraordinary women are driven to unite in crisis and discover the rewards of reconciliation and love. Women of the Sparrow family have unusual gifts. Elinor can detect falsehood. Her daughter, Jenny, can see people's dreams when they sleep. Granddaughter Stella has a mental window on the future--a future that she might not want to see. In The Probable Future this vivid and intriguing cast of characters confronts a haunting past--and a very current murder--against the evocative backdrop of small-town New England. By turns chilling and enchanting, The Probable Future chronicles the Sparrows's legacy as young Stella struggles to cope with her disturbing clairvoyance. Her potential to ruin or redeem becomes unbearable when one of her premonitions puts her father in jail, wrongly accused of homicide. Yet this ordeal also leads Stella to the grandmother she was forbidden to meet and to a historic family home full of talismans","Temperatures Rising. Darkly handsome with an arrogant edge, architectural engineer Scout Ritland is the kind of American man who spells trouble. Chantal duPont should know, for she has experienced the best and worst of the country and its people--including one who broke her heart. Yet here she is, home on sultry Parrish Island, putting herself in the way of another bold Yankee. This time, however, it's for a good cause: Scout is the one man who can help her village, and she's not about to let him get the better of her--no matter how much she may want to. Fresh from completing his work on the island's new luxury resort, Scout's ready for a little recreation--though being kidnapped and shot isn't on his agenda. But when he catches sight of an exotic beauty with electric blue eyes, events quickly spin out of control. Scout should be outraged to find himself held captive, but an abductor as alluring as Chantal makes it hard to stay angry. Soon Scout is swept up by Chantal's need to help her people--and the rol","Invisible. You could say that my railroad, the Madham Line, is almost the most important thing in my life. Next to Andy Morrow, my best friend....I guess you could say that I'm not only disturbed, I'm obsessed. Lots of people think Doug Hanson is a freak -- he gets beat up after school and the girl of his dreams calls him a worm. Doug's only refuge is building elaborate model trains in his basement and hanging out with his best friend, Andy Morrow. Andy is nothing like Doug: He's a popular football star who could date any girl in school. Despite their differences, Doug and Andy talk about everything -- except what happened at the Tuttle place a few years back. As Doug retreats deeper and deeper into his own world, long-buried secrets come to light -- and the more he tries to keep them invisible, the looser his grip on reality becomes. In this fierce, disturbing novel, Pete Hautman spins a poignant tale about inner demons, and how far one boy will go to control them.","La Dame aux Camélias. One of the greatest love stories of all time, this novel has fascinated generations of readers. Dumas's subtle and moving portrait of a woman in love is based on his own love affair with one of the most desirable courtesans in Paris. This is a completely new translation commissioned for the World's Classics.","The Penelopiad. Now that all the others have run out of air, it's my turn to do a little story-making.In Homer's account in The Odyssey, Penelope--wife of Odysseus and cousin of the beautiful Helen of Troy--is portrayed as the quintessential faithful wife, her story a salutary lesson through the ages. Left alone for twenty years when Odysseus goes off to fight in the Trojan War after the abduction of Helen, Penelope manages, in the face of scandalous rumors, to maintain the kingdom of Ithaca, bring up her wayward son, and keep over a hundred suitors at bay, simultaneously. When Odysseus finally comes home after enduring hardships, overcoming monsters, and sleeping with goddesses, he kills her suitors and--curiously--twelve of her maids. In a splendid contemporary twist to the ancient story, Margaret Atwood has chosen to give the telling of it to Penelope and to her twelve hanged maids, asking: ""What led to the hanging of the maids, and what was Penelope reallyup to?"" In Atwood's dazzling, playful rete",The Letters of Virginia Woolf: Volume Four 1929-1931.,"Cannery Row. Cannery Rowis a book without much of a plot. Rather, it is an attempt to capture the feeling and people of a place, the cannery district of Monterey, California, which is populated by a mix of those down on their luck and those who choose for other reasons not to live ""up the hill"" in the more respectable area of town. The flow of the main plot is frequently interrupted by short vignettes that introduce us to various denizens of the Row, most of whom are not directly connected with the central story. These vignettes are often characterized by direct or indirect reference to extreme violence: suicides, corpses, and the cruelty of the natural world. The ""story"" of Cannery Rowfollows the adventures of Mack and the boys, a group of unemployed yet resourceful men who inhabit a converted fish-meal shack on the edge of a vacant lot down on the Row. Sweet Thursday is the sequel to Cannery Row.","Clown Girl. Clown Girl lives in Baloneytown, a seedy neighborhood where drugs, balloon animals, and even rubber chickens contribute to the local currency. Against a backdrop of petty crime, she struggles to live her dreams, calling on cultural masters Charlie Chaplin, Kafka, and da Vinci for inspiration. In an effort to support herself and her layabout performance-artist boyfriend, Clown Girl finds herself unwittingly transformed into a ""corporate clown,"" trapping herself in a cycle of meaningless, high-paid gigs that veer dangerously close to prostitution. Monica Drake has created a novel that riffs on the high comedy of early film stars -- most notably Chaplin and W. C. Fields -- to raise questions of class, gender, economics, and prejudice. Resisting easy classification, this debut novel blends the bizarre, the humorous, and the gritty with stunning skill.","The Finer Points of Sausage Dogs (Portuguese Irregular Verbs #2). Professor Dr. von Igelfeld Entertainment - Book 2 The Professor Dr. von Igelfeld Entertainment series slyly skewers academia, chronicling the comic misadventures of the endearingly awkward Professor Dr. Moritz-Maria von Igelfeld, and his long-suffering colleagues at the Institute of Romantic Philology in Germany. Readers who fell in love with Precious Ramotswe, proprietor of The No. 1 Ladies' Detective Agency, now have new cause for celebration in the protagonist of these three light-footed comic novels by Alexander McCall Smith. Welcome to the insane and rarified world of Professor Dr. Moritz-Maria von Igelfeld of the Institute of Romance Philology. Von Igelfeld is engaged in a never-ending quest to win the respect he feels certain he is due-a quest which has the tendency to go hilariously astray. In The Finer Points of Sausage Dogs,Professor Dr. Von Igelfeld is mistaken for a veterinarian and not wanting to call attention to the faux pas, begins practicing veterinary medicine without","Glamorous Powers (Starbridge #2). Jon Darrow, a man with psychic powers, is a man who has played many parts: a shady faith-healer; a naval chaplain, a passionate husband, an awkward father, an Anglo-Catholic monk. In 1940 Darrow returns to the world he once renounced, but faced with many unforeseen temptations he fails to control his psychic, most glamorous powers. Corruption lies in wait for him, and threatens not only his future as a priest but his happiness with Anne, the young woman he has come to love.","Fullmetal Alchemist Vol. 11 (Fullmetal Alchemist #11). Ed returns to Resembool and meets his father Hohenheim for the first time in many years. Although his father is happy to see him, Ed harbors intense feelings of resentment for being all but abandoned many years ago. However, anger gives way to intrigue as Ed and Al discover an important fact about the human transmutation ritual they attempted years before. What they thought was a partial resurrection of their mother was something else entirely - a revelation that could change their destiny forever.","Savage Sun (Outlanders #3). On the Emerald Isle, stone megaliths guard the old ways and the people who returned to them. In this cradle of Celtic lore, Kane searches for clues to the fateful enmity that shadows their hopes. But not even his fierce will nor Brigid Baptiste's empathy for the ancient ways and Grant's warrior instincts prepares them for an encounter with a woman whose ancient earth magic and otherworld technology bring them shatteringly close to the truth.","Culture and Imperialism. A landmark work from the intellectually auspicious author of Orientalism that explores the long-overlooked connections between the Western imperial endeavor and the culture that both reflected and reinforced it. ""Said is a brilliant . . . scholar, aesthete and political activist.""--Washington Post Book World.","Nature Girl. In his latest New York Times bestseller, Hiaasen introduces impassioned, possibly bipolar, self-proclaimed queen of lost causes Honey Santana, who schemes to help rid the world of irresponsibility, indifference, and dinnertime sales calls.","Modern Classics of Science Fiction. Brian Aldiss William Gibson R.A. Lafferty Ursula K. Le Guin Lucius Shepard Bruce Sterling Theodore Sturgeon Howard Waldrop Connie Willis Gene Wolfe Roger Zelazny ""The best stories are timeless. Long years from now the stories here may still touch someone, cause that person to blink, and put the book down for a second, and stare off through the hallow air, and shirver in wonder."" Contents 1 * Preface (The Legend Book of Science Fiction) * (1991) * essay by Gardner Dozois 7 * The Country of the Kind * (1956) * shortstory by Damon Knight 22 * Aristotle and the Gun * (1958) * novelette by L. Sprague de Camp 59 * The Other Celia * (1957) * shortstory by Theodore Sturgeon 78 * Casey Agonistes * (1958) * shortstory by Richard McKenna [as by Richard M. McKenna ] 90 * Mother Hitton's Littul Kittons * [The Instrumentality of Mankind] * (1961) * novelette by Cordwainer Smith 116 * The Moon Moth * (1961) * novelette by Jack Vance 157 * The Golden Horn * [Tales of a Darkening World] * (1962) * nove",The Sawtooth Wolves.,"The Coming Storm (Pirates of the Caribbean: Jack Sparrow #1). This swaggering, stand-alone addition to the Pirates of the Caribbean series recounts the story of Jack Sparrow, a teenage stowaway on an adult mission. Jack has assembled a motley crew of adventurers to locate and seize the legendary Sword of Corts. This scenario sounds feasible until the treasure hunters run into heavy storms and bloodthirsty pirates.","Murder at The Washington Tribune (Capital Crimes #21). ""Truman can write suspense with the best of them."" -Larry King ""Satisfying . . . [a] solid mystery . . . a cautionary tale about ambition and a vote for journalistic integrity."" -Publishers Weekly At the big, aggressive Washington Tribune, a young woman, fresh out of journalism school, has been brutally strangled to death-and the hunt for her killer is making sensational headlines. Then a second woman is found dead. She, too, worked in the media. For veteran Trib reporter Joe Wilcox, the case strikes too close to home: His daughter is a beautiful rising TV news star. Seeing a chance to revive his free-falling career, Joe spearheads the Trib's investigation and baits a trap for the murderer with a secret from his own past. Suddenly Joe is risking his career, his marriage, and even his daughter's life by playing a dangerous game with a possible serial killer . . . one who hides in plain sight. ""Ripe with suspense, Truman's mystery gets edgier with each page. . . . A captivating, fast-pac","Heart of Darkness and Other Tales. The finest of all Conrad's tales, Heart of Darknessis set in an atmosphere of mystery and menace, and tells of Marlow's perilous journey up the Congo River to relieve his employer's agent, the renowned and formidable Mr. Kurtz. What he sees on his journey, and his eventual encounter with Kurtz, horrify and perplex him, and call into question the very bases of civilization and human nature. Endlessly reinterpreted by critics and adapted for film, radio, and television, the story shows Conrad at his most intense and sophisticated. The other three tales in this volume depict corruption and obsession, and question racial assumptions. Set in the exotic surroundings of Africa, Malaysia, and the east, they variously appraise the glamour, folly, and rapacity of imperial adventure. This revised edition uses the English first edition texts and has a new chronology and bibliography.","The Play Soldier. A draft evader, who poses as a Vietnam war hero, tries to join the Foreign Legion, but is rejected. Intent on fulfillment, but as a freelance photographer now, he follows the Legion to Africa and is transformed, body and soul.","Prometheus Rising. Imagine trying to make sense of an amalgam of Timothy Leary's eight neurological circuits, G.I. Gurdjieff's self-observation exercises, Alfred Korzybskis general semantics, Aleister Crowley's magical theorems, and the several disciplines of Yoga; not to mention Christian Science, relativity, quantum mechanics, and many other approaches to understanding the world around us! That is exactly what Robert Anton Wilson does in Prometheus Rising. In short, this is a book about how the human mind works and what you can do to make the most of yours.","Marine: A Guided Tour of a Marine Expeditionary Unit (Guided Tour). They are the very best America has to offer --- the few and the proud. The Marine Corps has served our nation with distinction, and achieved an almost mythical status among America's defenders. Now, Tom Clancy tells us the real story of the men and women who serves in this most hallowed branch of the Armed Forces. With the same compelling style and eye for detail that marked his bestselling nonfiction works Submarine, Armored Cav, and Fighter Wing,Clancy paints fascinating picture of the Corps as only he could.",Charles Dickens' A Christmas Carol.,"Cold Mountain. Cold Mountainis a novel about a soldier's perilous journey back to his beloved near the Civil War's end. At once a love story & a harrowing account of one man's long walk home, Cold Mountain introduces a new talent in American literature. Based on local history & family stories passed down by Frazier's great-great-grandfather, Cold Mountainis the tale of a wounded Confederate soldier, Inman, who walks away from the ravages of the war & back home to his prewar sweetheart, Ada. His odyssey thru the devastated landscape of the soon-to-be-defeated South interweaves with Ada's struggle to revive her father's farm, with the help of an intrepid young drifter named Ruby. As their long-separated lives begin to converge at the close of the war, Inman & Ada confront the vastly transformed world they've been delivered. Frazier reveals insight into human relations with the land & the dangers of solitude. He also shares with the great 19th century novelists a keen observation of a society undergoing","A Birthday for Frances. It is Gloria's birthday but Frances is not sure whether or not to give Gloria a present, as she is the kind of little sister who can't catch, can't throw and who when playing hide-and-seek, always hides in places where part of her is sticking out. Will Frances give Gloria her present..?",Pompeii.,"Ghost Hunter (Ghost Hunters #3). RETURN TO THE ""FASCINATING""* WORLD OF HARMONY... Where deadly energy ghosts lurk in the ruins of an ancient alien civilization. Where dust bunnies prove to be loyal pets. And where a ghost hunter will discover that a woman's heart is the most dangerous adversary of all... Local Guild boss and powerful ghost-hunter Cooper Boone is everything botanist Elly St. Claire could ask for-the handsome, strong, and silent type. Maybe too silent. For when Guild secrets threaten her career at the college, Elly has to call off their marriage-and leave small-town life behind... But starting over in the thriving metropolis of Cadence City isn't easy, especially when one of Elly's new friends disappears in the eerie catacombs beneath the streets. Cooper turns up just in time to help Elly investigate. And as the mystery deepens and dangerous ghost myths and legends come to light, Cooper makes it clear he intends to stick around-and this time he's holding nothing back...","Yakitate!! Japan Volume 4. The Pantasia Rookie Tournament is in full swing with Kazuma going up against a daunting opponent in every respect--Tsukino's half-sister Mizuno and rival for control of the entire Pantasia chain! Mizuno is ready to knock Kazuma out of the ring with her super-tasty-- and super-expensive to make--patented melon bread. Can Kazuma compete against this high-class recipe with a can of regular old melon juice? Plus, some exciting side information on the origins of Ken Matsuhiro, the afro-sporting manager of the Pantasia South Branch!",Little Women Little Men Jo's Boys.,"Less Than Zero. Set in Los Angeles in the early 1980's, this coolly mesmerizing novel is a raw, powerful portrait of a lost generation who have experienced sex, drugs, and disaffection at too early an age, in a world shaped by casual nihilism, passivity, and too much money a place devoid of feeling or hope. Clay comes home for Christmas vacation from his Eastern college and re-enters a landscape of limitless privilege and absolute moral entropy, where everyone drives Porches, dines at Spago, and snorts mountains of cocaine. He tries to renew feelings for his girlfriend, Blair, and for his best friend from high school, Julian, who is careering into hustling and heroin. Clay's holiday turns into a dizzying spiral of desperation that takes him through the relentless parties in glitzy mansions, seedy bars, and underground rock clubs and also into the seamy world of L.A. after dark.","Mere Christianity. Mere Christianityis C.S. Lewis's forceful and accessible doctrine of Christian belief. First heard as informal radio broadcasts and then published as three separate books - The Case for Christianity, Christian Behavior, and Beyond Personality- Mere Christianitybrings together what Lewis saw as the fundamental truths of the religion. Rejecting the boundaries that divide Christianity's many denominations, C.S. Lewis finds a common ground on which all those who have Christian faith can stand together, proving that ""at the centre of each there is something, or a Someone, who against all divergences of belief, all differences of temperament, all memories of mutual persecution, speaks the same voice.""","Citizen Girl. Another biting satire from Emma McLaughlin and Nicola Kraus, authors of the New York Timesbestseller The Nanny Diaries. Working in a world where a college degree qualifies her to make photocopies and color-coordinate file folders, twenty-four-year-old Girl is struggling to keep up with the essential trinity of food, shelter, and student loans. So when she finally lands the job of her dreams she ignores her misgivings and concentrates on getting the job done...whatever that may be. Sharply observed and devastatingly funny, Citizen Girlcaptures with biting accuracy what it means to be young and female in the new economy. A personal glimpse into an impersonal world, Citizen Girlis edgy and heartfelt, an entertaining read that is startlingly relevant.","The Walking Dead Vol. 5: The Best Defense. As the survivors settle into their prison home something has drawn them out into the open... out of the prison... out of their sanctuary. This is a major turning point for the overall story of The Walking Dead, setting the stage for years to come.","Discourse on the Origin of Inequality. If humans are benevolent by nature, how do societies become corrupt? And how do governments founded upon the defense of individual rights degenerate into tyranny? These are the questions addressed by Jean-Jacques Rousseau's Discourse on the Origin of Inequality, a strikingly original inquiry into much-explored issues of 18th-century (and subsequent) philosophy: human nature and the best form of government. Rousseau takes an innovative approach by introducing a ""hypothetical history"" that presents a theoretical view of people in a pre-social condition and the ensuing effects of civilization. In his sweeping account of humanity's social and political development, the author develops a theory of human evolution that prefigures Darwinian thought and encompasses aspects of ethics, sociology, and epistemology. He concludes that people are inevitably corrupt as a result of both natural (or physical) inequalities and moral (or political) inequalities. One of the most influential works of the E","Essays and Stories by Marian Keyes: Bags Trips Make-up Tips Charity Glory and the Darker Side of the Story. Go further under the covers and stay in bed a little longer with Marian Keyes in this winning follow-up to her smash essay collection, Under the Duvet. Written in the witty, forthright style that has earned her legions of devoted readers, Cracks in My Foundationoffers an even deeper and more candid look into this beloved author's mind and heart, exploring such universal themes as friends and family, home, glamour and beauty, children, travel, and more. Marian's hilarious and thoughtful take on life makes her readers feel they are reading a friend, not just an author. Marian continues to entertain with her reports from the trenches, and throws in some original short fiction as well. Whether it's visiting Siberia, breaking it off with an old hairdresser, shopping (of course!), turning forty, living with her beloved husband, Himself (a man beyond description), or musing on the F word (feminism), Marian shares the joys, passions, and sorrows of her world and helps us feel good about our ow","The Bourne Identity (Jason Bourne #1). Alternate cover for this ISBN can be found  Who is Jason Bourne? Is he an assassin, a terrorist, a thief? Why has he got four million dollars in a Swiss bank account? Why has someone tried to murder him?... Jason Bourne does not know the answer to any of these questions. Suffering from amnesia, he does not even know that he isJason Bourne. What manner of man is he? What are his secrets? Who has he killed?","Lucifer's Shadow. In an ancient burial ground on an island off Venice, a young woman's casket is pried open, an object is wrenched from her hands, and an extraordinary adventure begins. From the moment he arrives in Venice, Daniel Forster is seduced by the city's mystery and eroticism. An earnest young academic, Daniel has come for a summer job cataloguing a private collector's library. But when Daniel's employer sends him to buy a stolen violin from a petty thief, a chain reaction of violence and deception ignites. Suddenly Daniel is drawn into a police investigation and a tempest swirling around a beautiful woman, a mysterious palazzo, and a lost musical masterpiece dating back centuries. With each step he takes, Daniel unwittingly retraces a journey that began in 1733, when another young man came to Venice. And when, in this realm of intrigue and beauty, two lovers came face-to-face with a killer and a mystery was born. Separated by centuries, two tales of passion, betrayal, and danger collide in Dav","The Virgin Blue. Meet Ella Turner and Isabelle du Moulin--two women born centuries apart, yet bound by a fateful family legacy. When Ella and her husband move to a small town in France, Ella hopes to brush up on her French, qualify to practice as a midwife, and start a family of her own. Village life turns out to be less idyllic than she expected, however, and a peculiar dream of the color blue propels her on a quest to uncover her family's French ancestry. As the novel unfolds--alternating between Ella's story and that of Isabelle du Moulin four hundred years earlier--a common thread emerges that unexpectedly links the two women. Part detective story, part historical fiction, The Virgin Blueis a novel of passion and intrigue that compels readers to the very last page.","Housekeeping. A modern classic, Housekeepingis the story of Ruth and her younger sister, Lucille, who grow up haphazardly, first under the care of their competent grandmother, then of two comically bumbling great-aunts, and finally of Sylvie, their eccentric and remote aunt. The family house is in the small Far West town of Fingerbone set on a glacial lake, the same lake where their grandfather died in a spectacular train wreck, and their mother drove off a cliff to her death. It is a town ""chastened by an outsized landscape and extravagant weather, and chastened again by an awareness that the whole of human history had occurred elsewhere."" Ruth and Lucille's struggle toward adulthood beautifully illuminates the price of loss and survival, and the dangerous and deep undertow of transience.","Doctor Faustus. Thomas Mann's last great novel, first published in 1947 and now rendered into English by acclaimed translator John E. Woods, is a modern reworking of the Faust legend, in which Germany sells its soul to the Devil. Mann's protagonist, the composer Adrian Leverkuhn, is the flower of German culture, a brilliant, isolated, overreaching figure, his radical new music a breakneck game played by art at the very edge of impossibility. In return for twenty-four years of unparalleled musical accomplishment, he bargains away his soul - and the ability to love his fellow man. Leverkuhn's life story is a brilliant allegory of the rise of the Third Reich, of Germany's renunciation of its own humanity and its embrace of ambition and its nihilism. It is also Mann's most profound meditation on the German genius - both national and individual - and the terrible responsibilities of the truly great artist.","Good Poems for Hard Times. Chosen by Garison Keillor for his readings on public radio's The Writer's Almanac, the 185 poems in this follow-up to his acclaimed anthology Good Poemsare perfect for our troubled times. Here, readers will find solace in works that are bracing and courageous, organized into such resonant headings as ""Such As It Is More or Less"" and ""Let It Spill."" From William Shakespeare and Walt Whitman to R. S. Gwynn and Jennifer Michael Hecht, the voices gathered in this collection will be more than welcome to those who've been struck by bad news, who are burdened by stress, or who simply appreciate the power of good poetry.","Mindstar Rising (Greg Mandel #1). Greg Mandel, late of the Mindstar Battalion, has been many things in his life. Commando. Freedom fighter. Assassin. Now he's a freelance operative with a very special edge: telepathy. In the high-tech, hard-edged world of computer crime, zero-gravity smuggling, and artificial intelligence, Greg Mandel is the man to call when things get rough. But when an elusive saboteur plagues a powerful organization known as Event Horizon, Mandel must cut his way through a maze of corporate intrigue and startling new scientific discoveries. And nothing less than the future is at stake.","The Histories. Book I (Clio) Rulers of Lydia How Gyges took the kingdom from Candaules The singer Arion's ride on the dolphin Solon's answer to Croesus's question Croesus's & his son Atys Croesus's test of the oracles Oracle of Delphi's answer to Croesus Peisistratos as tyrant of Athens Rise of Sparta Croesus's & Cyrus II of Persia Rulers of the Medes Deioces' rise over the Medes Astyages's attempt to destroy Cyrus & Cyrus's rise to power Harpagus tricked & his revenge against Astyages Persian culture History & geography of the Ionians, & Harpagus' attacks Pactyes & the Lydians' revolt Culture of Assyria Cyrus's attack on Babylon Cyrus's ill-fated attack on the Massagetae Book II (Euterpe) Statue of Hathor & proof of Phrygian antiquity Geography of Egypt Speculations on the Nile river Teligious practices of Egypt as they differ from Greek Animals of Egypt Culture of Egypt Kings of Egypt Helen & Paris' stay in Egypt during the Trojan War More kings of Egypt The line of priests The Labyrinth More kings","Spring Torrents. Returning to Russia from a tour in Italy, twenty-three-year-old Dimitry Sanin breaks his journey in Frankfurt. There, he encounters the beautiful Gemma Roselli, who works in her parents' patisserie, and falls deeply and deliriously in love for the first time. Convinced that nothing can come in the way of everlasting happiness with his fiancee, Dimitry impetuously decides to begin a new life and sell his Russian estates. But when he meets the potential buyer, the intriguing Madame Polozov, his youthful vulnerability makes him prey for a darker, destructive infatuation. A novel of haunting beauty, ""Spring Torrents"" (1870-1) is a fascinating, partly autobiographical account of one of Turgenev's favourite themes - a man's inability to love without losing his innocence and becoming enslaved to obsessive passions.","Angeles & Demonios. Brown's Angels & Demons is now available in a Spanish-language audiobook. Unabridged. 18 CDs.""","The Da Vinci Code. Auf der Suche nach dem Da Vinci Code ... Robert Langdon ist Symbolforscher und lehrt als Professor an der Harvard Universitat in Cambridge. Als er beruflich nach Paris reist, wird er dort in einen seltsamen Fall verstrickt. Mitten in der Nacht erhalt er einen Anruf, dass der Museumsdirektor des Louvre, mit dem er fur diesen Abend verabredet war, ermordet wurde. Zwar bittet die Polizei Langdon um seine Unterstutzung, da sich am Tatort seltsame Symbole und Zeichen befinden, allerdings ist er selbst schon mitten ins Fadenkreuz der Ermittler geraten. Zusammen mit der Verschlusslungsexpertin Sophie Neveu entkommt er der Polizei und folgt Saunieres versteckten Hinweisen, die auf eine noch viel grossere Verschworung deuten. Schon langst ist ihm nicht mehr nur die Polizei auf den Fersen ...","Iberia: Spanish Travels and Reflections. From the glories of the Prado to the danger and dazzle of the bullfights, master storyteller James A. Michener magnificently captures the stunning kaleidoscope that is Spain.Here is a rich and enduring tribute to a fascinating country, an immemorial place that has become Michener's second home. In the fresh and vivid prose that is his trademark, Michener not only reveals the celebrated Spain of warrior kings, painters and cathedrals, he also shares the intimate, often hidden Spain he has come to know: where the fishermen of the salted shores, the toiling peasants of the inland fields and the congeniality and passion of all of Spain's living souls conspire with the dark weight of history to create this mysterious, contradictory and wildly beautiful land. Look for other titles by James A. Michener available from Random House AudioBooks including Alaska, Texas, and Caribbean. Philip Bosco's extensive credits include appearances in the films Trading Places, Three Men and a Baby, Suspect, W","Literary Criticism Vol. 1: Essays on Literature / American Writers / English Writers. The library of America is dedicated to publishing America's best and most significant writing in handsome, enduring volumes, featuring authoritative texts. Hailed as the ""finest-looking, longest-lasting editions ever made"" (The New Republic), Library of America volumes make a fine gift for any occasion. Now, with exactly one hundred volumes to choose from, there is a perfect gift for everyone.","Until I Find You. Every major character in Until I Find You has been marked for life- not only William Burns, a church organist who is addicted to being tattooed, but also William's song, Jack, an actor who is shaped as a child by his relationships with older women. And Jack's mother, Alice- a Toronto tattoo artist- has been permanently damaged by William's rejection of her. This is a novel about the loss of innocence, on many levels.",First King of Shannara (Shannara Prequel).,Cover Her Face (Adam Dalgliesh #1).,The Death and Rebirth of the Seneca.,"Hide-and-Seek with Angels: The Life of J.M. Barrie. When James Matthew Barrie died, in 1937, his funeral was an occasion for national mourning. Crowds gathered; reporters and newsreel men came to record the day, and many well-known figures followed the coffin to its resting place in the little churchyard up on the hill. In London, a month later at St Paul's Cathedral a memorial service was held for the Scottish weaver's son who died Britain's playwright extraordinaire. A succession of novels and long-running plays had brought Barrie enormous wealth, critical acclaim, an hereditary Baronetcy and the Order of Merit. His public following extended to Hollywood where his work was performed by the stars of the silver screen. Unhappily such achievements did little to ameliorate the strains in Barrie's private life. Hampered by a stigmatising divorce, he was also struck by a series of tragic bereavements from which he never fully recovered. At the same time as savouring his public image, Barrie gave no more than a handful of interviews. During","Mugglenet.Com's What Will Happen in Harry Potter 7: Who Lives Who Dies Who Falls in Love and How Will the Adventure Finally End?. As anticipation of the final Harry Potter book intensifies, a debate is raging among fans about what's in store for Harry and the rest of the gang at Hogwarts. In this book, the experts at MuggleNet.com present a wide range of hard facts and bold predictions about the most popular storylines, favorite characters, and final outcome of the Harry Potter saga. Drawing on their intimate knowledge of the previous six books as well as tips and suggestions made by millions of MuggleNet.com fans (not to mention a personal interview with J.K. Rowling), the authors offer answers to the burning questions of Harry Potter readers everywhere: Will Hogwarts School be open for Harry's final year, and will Harry even be in attendance? Will Harry's quest for the remaining Horcruxes be rewarded? Where do Severus Snape's true loyalties lie? And, most importantly, will Harry survive the final battle with Lord Voldemort?","The Middle Passage. In 1960 the government of Trinidad invited V. S. Naipaul to revisit his native country and record his impressions. In this classic of modern travel writing he has created a deft and remarkably prescient portrait of Trinidad and four adjacent Caribbean societies-countries haunted by the legacies of slavery and colonialism and so thoroughly defined by the norms of Empire that they can scarcely believe that the Empire is ending. In The Middle Passage, Naipaul watches a Trinidadian movie audience greeting Humphrey Bogart's appearance with cries of ""That is man!"" He ventures into a Trinidad slum so insalubrious that the locals call it the Gaza Strip. He follows a racially charged election campaign in British Guiana (now Guyana) and marvels at the Gallic pretension of Martinique society, which maintains the fiction that its roads are extensions of France's routes nationales.And throughout he relates the ghastly episodes of the region's colonial past and shows how they continue to inform its","Bolt (Kit Fielding #2). Kit Fielding will do whatever it takes to stop the killing of racehorses. Not an easy task considering that the woman he adores is leaving him, an international arms dealer is threatening him, and Kit's nemesis has plans to knock him off the track--and plant him under it.","The Elements of Style. A masterpiece in the art of clear and concise writing, and an exemplar of the principles it explains.",The Fantasy Worlds of Peter Beagle.,"Geek Love. Geek Loveis the story of the Binewskis, a carny family whose mater- and paterfamilias set out-with the help of amphetamine, arsenic, and radioisotopes-to breed their own exhibit of human oddities. There's Arturo the Aquaboy, who has flippers for limbs and a megalomaniac ambition worthy of Genghis Khan . . . Iphy and Elly, the lissome Siamese twins . . . albino hunchback Oly, and the outwardly normal Chick, whose mysterious gifts make him the family's most precious-and dangerous-asset. As the Binewskis take their act across the backwaters of the U.S., inspiring fanatical devotion and murderous revulsion; as its members conduct their own Machiavellian version of sibling rivalry,Geek Lovethrows its sulfurous light on our notions of the freakish and the normal, the beautiful and the ugly, the holy and the obscene. Family values will never be the same.","By the River Piedra I Sat Down and Wept. From Paulo Coelho, author of the international bestseller The Alchemist, comes a poignant, richly poetic story that reflects the depth of love and life. Rarely does adolescent love reach its full potential, but what happens when two young lovers reunite after eleven years? Time has transformed Pilar into a strong and independent woman, while her devoted childhood friend has grown into a handsome and charismatic spiritual leader. She has learned well how to bury her feelings . . . and he has turned to religion as a refuge from his raging inner conflicts. Now they are together once again, embarking on a journey fraught with difficulties, as long-buried demons of blame and resentment resurface after more than a decade. But in a small village in the French Pyrenees, by the waters of the River Piedra, a most special relationship will be reexamined in the dazzling light of some of life's biggest questions.","Maple Syrup Cookbook: Over 100 Recipes For Breakfast Lunch & Dinner. Nobody has been able to capture the sensual pleasures of real maple syrup by substituting artificial ingredients. MAPLE SYRUP COOKBOOK offers a repertoire of 95 recipes featuring maple syrup as the sweetening ingredient. In addition to the classic breakfast recipes, there are starters: Orange Maple Chicken Wings and Maple Creamy Fondue. Entrees: Crispy Maple Spareribs and Maple Vinegar Roasted Pork. Baked goods: Maple Cream Biscuits and Winter Squash Spoonbread. And, of course, desserts: Tawny Maple Cheesecake, Maple Ginger Ice Cream, and the classic Sugar on Snow. Plus beverages, butters, relishes, and more.","The Dogs of Riga (Kurt Wallander #2). Second in the Kurt Wallander series. Sweden, winter, 1991. Inspector Kurt Wallander and his team receive an anonymous tip-off. A few days later a life raft is washed up on a beach. In it are two men, dressed in expensive suits, shot dead. The dead men were criminals, victims of what seems to have been a gangland hit. But what appears to be an open-and-shut case soon takes on a far more sinister aspect. Wallander travels across the Baltic Sea, to Riga in Latvia, where he is plunged into a frozen, alien world of police surveillance, scarcely veiled threats, and lies. Doomed always to be one step behind the shadowy figures he pursues, only Wallander's obstinate desire to see that justice is done brings the truth to light.","Meditations. Written in Greek, without any intention of publication, by the only Roman emperor who was also a philosopher, the Meditationsof Marcus Aurelius (AD 121-180) offer a remarkable series of challenging spiritual reflections and exercises developed as the emperor struggled to understand himself and make sense of the universe. Ranging from doubt and despair to conviction and exaltation, they cover such diverse topics as the nature of moral virtue, human rationality, divine providence, and Marcus' own emotions. But while the Meditationswere composed to provide personal consolation and encouragement, in developing his beliefs Marcus Aurelius also created one of the greatest of all works of philosophy: a timeless collection of extended meditations and short aphorisms that has been consulted and admired by statesmen, thinkers and readers through the centuries.",How to Develop Self-Confidence and Influence People by Public Speaking.,"The Boy Who Couldn't Die. When seventeen-year-old Ken's best friend Roger dies in a plane crash, Ken suddenly realizes that he too could die at any moment. Terrified, he seeks out a plump, middle-aged psychic named Cherie Buttercup, who grants him invulnerability from death in exchange for his soul. Eager to test his new powers, Ken talks his family into a vacation in the Caribbean, where he can swim with sharks. There he is entranced with Sabine, a young scuba instructor, and shares his story with her. When Ken begins to have vivid dreams of secret murders, he and Sabine realize that Cherie Buttercup is using his soul as a zombie to do her will. But the dreams also give clues as to where his soul is hidden--so the pair set out to retrieve it. - Patty Campbell (Amazon.com review)","Cousin Pons. Mild, harmless and ugly to behold, the impoverished Pons is an ageing musician whose brief fame has fallen to nothing. Living a placid Parisian life as a bachelor in a shared apartment with his friend Schmucke, he maintains only two passions: a devotion to fine dining in the company of wealthy but disdainful relatives, and a dedication to the collection of antiques. When these relatives become aware of the true value of his art collection, however, their sneering contempt for the parasitic Pons rapidly falls away as they struggle to obtain a piece of the weakening man's inheritance. Taking its place in the Human Comedy as a companion to Cousin Bette, the darkly humorous Cousin Pons is among of the last and greatest of Balzac's novels concerning French urban society: a cynical, pessimistic but never despairing consideration of human nature.","Consider the Lilies. The Highland Clearances, the eviction of crofters from their homes between 1792 and the 1850s, was one of the cruellest episodes in Scotland's history. In Consider the Lilies, Iain Crichton Smith captures its impact through the thoughts and memories of an old woman who has lived all her life within the narrow confines of her community. Alone and bewildered by the demands of the factor, Patrick Sellar, she approaches the minister for help, only to have her faith shattered by his hypocrisy. She finds comfort, however, from a surprising source: Donald Macleod, an imaginative and self-educated man who has been ostracised by his neighbours, not least by Mrs Scott herself, on account of his atheism. Through him and through the circumstances forced upon her, the old woman achieves new strength. Written with compassion, in spare, simple prose, Consider the Lilies is a moving testament to the enduring qualities which enable the oppressed to triumph in defeat.","Incubus Dreams (Anita Blake Vampire Hunter #12). In the latest New York Times bestselling Anita Blake, Vampire Hunter series, Anita's life is more complicated than ever, as she is caught between her obligations to the living and the undead. A vampire serial killer who preys on strippers is on the loose. Called in to consult on the case, Anita fears her judgment may be clouded by a conflict of interest. For she is, after all, the consort of Jean-Claude, the ever-intoxicating Master Vampire of the City. Surrounded by suspicion, overwhelmed by her attempts to control the primal lusts that continue to wrack her, Anita does something unprecedented: she calls for help.","The Black Road (Diablo #2). An original tale of swords, sorcery, and timeless struggle based on the award-winning M-rated electronic game. When Darrick Lang returns to Bramwell, it is not how he left it. Something dark and terrifying has ensnared the townsfolk. Now that same power calls to Darrick....","The Cat Who Played Post Office (Cat Who... #6). Inheriting unexpected millions has left reporter Jim Qwilleran looking like the cat who swallowed the canary. While his two Siamese cats, Koko and Yum Yum, adjust to being fat cats in an enormous mansion, Qwilleran samples the lifestyles of the rich and famous by hiring a staff of eccentric servants. A missing housemaid and a shocking murder show Qwilleran the unsavory side of the upper crust. But soon it's Koko's purr-fect propensity for clues amid the caviar and champagne that gives Qwilleran pause to evaluate the most unlikely suspects...before his taste for the good life turns into his last meal.","Cat in the Dark (Joe Grey #4). ""Of course I worry. What if the cops witness a cat opening a skylight and masterminding a robbery? The tabloids will love it."" There's a new pair of thieves in Molena Point, California, a renegade yellow-eyed tomcat with a cold disdain for the law,and a scruffy human partner who is no better. The two, clever and silent at their work, are bad news indeed to crime-solving cats Joe Grey and Dulcie. But when Joe learns the pair's connection to a good friend, and then an innocent couple turns up dead in the library garden, Joe and Dulcie must engage in some fancy paw work to unmask the deceptions and route the real killer -- before his brazen criminal crime spree careens madly toward them.","Closing Time. Revisiting many of the characters of Catch-22, Joseph Heller's Closing Time is a darkly funny depiction of the moral collapse of the Western world. It features ageing versions of Yossarian, Milo and Sammy Singer and others fighting not the Germans, but The End.",Delwau Duon: Peintiadau Nicholas Evans = Symphonies in Black: The Paintings of Nicholas Evans.,"Autobiographies: Narrative of the Life of Frederick Douglass / My Bondage and My Freedom / Life and Times of Frederick Douglass. The library of America is dedicated to publishing America's best and most significant writing in handsome, enduring volumes, featuring authoritative texts. Hailed as the ""finest-looking, longest-lasting editions ever made"" (The New Republic), Library of America volumes make a fine gift for any occasion. Now, with exactly one hundred volumes to choose from, there is a perfect gift for everyone.","JLA: Earth 2. Book by Quitely, Frank, Morrison, Grant","Theater Shoes (Shoes #4). Three orphans are forced to enter a theater school by their grandmother, a famous actress. Unable to pay the tuition, they are given scholarships from the now-grown orphans from Ballet Shoes.Will they be able to live up to their patrons' legacies? The children are ready to run away--until they discover their hidden talents. Originally published in 1945.","Conversations with Žižek. In this new book, Slavoj Zizek and Glyn Daly engage in a series of entertaining conversations which illustrate the originality of Zizek 's thinking on psychoanalysis, philosophy, multiculturalism, popular/cyber culture, totalitarianism, ethics and politics.Zizek is a Slovenian philosopher who trained as a Lacanian. He is at the forefront of philosophical, political and cultural debate and is known for his theories, based largely on a Lacanian analysis, on a wide range of subjects, including globalization, cyberspace, film, music and opera. His work continues to provoke controversy and to transform the way we think about these and other issues of popular culture and politics. In conversation with Glyn Daly, Zizek elaborates on a range of topics which encompass the purpose of philosophy and psychoanalysis, the films of Stanley Kubrick, the notion of enjoyment, Marxism, de Sade, Nazism and much more.This book will provide readers with a unique glimpse at Zizek's humour and character, and","Death Note Vol. 9: Contact (Death Note #9). Light has always been confident in his ability to out-think everyone, but L's proteges are proving to be more of a challenge than he anticipated. The more Light mentally maneuvers, the tighter the net around him becomes. And now Near and Mello are working to break the task force apart and expose Kira from within! Light has always held up under pressure in the past, but will the stress of this new line of attack and the strain of maintaining three different personalities be the beginning of his end?","The Drowned and the Saved. The author tries to understand the rationale behind Auschwitz, Treblinka, Bergen-Belsen. Dismissing stereotyped images of brutal Nazi torturers and helpless victims, Levi draws extensively on his own experiences to delve into the minds and motives of oppressors and oppressed alike. Describing the difficulty and shame of remembering, the limited forms of collaboration between inmates and SS goalers, the exploitation of useless violence and the plight of the intellectual, Levi writes about the issue of power, mercy and guilt, and their effects on the lives of the ordinary people who suffered so incomprehendingly.","Beatrix Potter's Journal. This lavish, illustrated journal describes Beatrix Potter's life as a young woman in Victorian England as she struggles to achieve independence and to find artistic success and romantic love. Using witty, observant commentary taken from Beatrix's own diaries, the journal features a wealth of watercolor paintings, sketches, photographs, letters and period memorabilia to recreate the world in which she lived.","Self. Edgy, funny and devastating, Selfis the fictional autobiography of a young writer at the heart of which is a startling twist. This extraordinary life meanders through a rich, complicated, bittersweet world. The discoveries of childhood give way to the thousand pangs of adolescence, culminating in the sudden shocking news of an accident abroad. And as adulthood begins, indecisively, boundaries are crossed between countries, languages and people . . .","The State of the Art. The first ever collection of Iain Banks' short fiction, this volume includes the acclaimed novella, The State of the Art. This is a striking addition to the growing body of Culture lore, and adds definition and scale to the previous works by using the Earth of 1977 as contrast. The other stories in the collection range from science fiction to horror, dark-coated fantasy to morality tale. All bear the indefinable stamp of Iain Banks' staggering talent.","Davita's Harp. For Davita Chandal, growing up in the New York of the 1930s and '40s is an experience of joy and sadness. Her loving parents, both fervent radicals, fill her with the fiercely bright hope of a new and better world. But as the deprivations of war and depression take a ruthless toll, Davita unexpectedly turns to the Jewish faith that her mother had long ago abandoned, finding there both a solace for her questioning inner pain and a test of her budding spirit of independence. From the Paperback edition.","Bookends. Bookends, Jane Green's third comic novel of contemporary love and lust, proves beyond a doubt that when it comes to light reading, plot is everything. Bookendsmakes a great case study because it has little going for it besides plot. Dialogue? Stilted. Characters? Cliched. Writing style? Sloppy. And yet the book is well-nigh impossible to put down. A few friends meet at university: Simon, the chirpy gay character; Portia, the glamour girl; Josh, the adorable, unpretentious catch; and Cath, the overweight, insecure narrator. Portia strays from their crowd, but the other three remain friends into their 30s. Now successful Londoners, each faces a personal crisis: singleton Cath leaves a secure job to start a bookstore; Simon looks for love; Josh's marriage goes through growing pains. And then Portia, as intimidating and elegant as ever, wanders back into their lives--with surprising results. Green is a past master of the ugly-duckling-turned-swan story. Cath's transformation--neatly echoed",Common Herbs for Natural Health.,"Winds of Fury (Valdemar: Mage Winds #3). Valdemar is once again in peril, threatened by Ancar of Hardorn, who has long sought to seize control of the kingdom by any means at his command. Yet this time Ancar may well achieve his goal, for by harnessing the power of Mornelithe Falconsbane, the Dark Adept, he has set into motion a magical strike against Valdemar the like of which hasn't been attempted in more than five hundred years--not since Vanyel, the last Herald-Mage, shielded the kingdom from attack by the deadliest of sorceries. And with Valdemar's ancient spell-generated protections finally breaking down, Queen Selenay, Herald-Princess Elspeth, and their people could soon be left defenseless against an enemy armed with spells no one in Valdemar has the knowledge to withstand. But as the long dormant magic of Valdemar begins to awaken, Elspeth finds that she too has a mysterious ally--a powerful spirit from the long-forgotten past...","The Brotherhood of the Rose (Mortalis #1). Chris and Saul were orphans - raised in a Philadelphia school for boys, bonded by friendship and devoted to a mysterious man called Eliot. He visited them and brought them sweets. He treated them like sons. He trained them to be assassins. Now he is trying to have them killed.",Loving Will Shakespeare.,Le Sens du vent.,"Enchanted April: Acting Edition. A play adapted from the novel by Elizabeth von Arnim. When two frustrated London housewives decide to rent a villa in Italy for a holiday away from their bleak marriages, they recruit two very different English women to share the cost and the experience. There, among the wisteria blossoms and Mediterranean sunshine, all four bloom again rediscovering themselves in ways that they and we could never have expected.","Matters of Choice (Cole Family Trilogy #3). A spirited and gifted physician forgoes a stellar career at a prestigious hospital for a small town private practice, and finds even greater challenges than those of the big city. Now she faces her hardest test as a doctor and a woman: whether to keep the medical secret of a girl who has desperately turned to her for help, or to betray that trust to keep the love of the man who has filled her life with unexpected joy....","A General Theory of Love. Drawing comparisons to the most eloquent science writing of our day, three eminent psychiatrists tackle the difficult task of reconciling what artists and thinkers have known for thousands of years about the human heart with what has only recently been learned about the primitive functions of the human brain. The result is an original, lucid, at times moving account of the complexities of love and its essential role in human well-being. A General Theory of Lovedraws on the latest scientific research to demonstrate that our nervous systems are not self-contained: from earliest childhood, our brains actually link with those of the people close to us, in a silent rhythm that alters the very structure of our brains, establishes life-long emotional patterns, and makes us, in large part, who we are. Explaining how relationships function, how parents shape their child's developing self, how psychotherapy really works, and how our society dangerously flouts essential emotional laws, this is a","Birds of America. A long-awaited collection of stories--twelve in all--by one of the most exciting writers at work today, the acclaimed author of Who Will Run the Frog Hospital?and Self-Help.Stories remarkable in their range, emotional force, and dark laughter, and in the sheer beauty and power of their language. From the opening story, ""Willing"", about a second-rate movie actress in her thirties who has moved back to Chicago, where she makes a seedy motel room her home and becomes involved with a mechanic who has not the least idea of who she is as a human being, Birds of Americaunfolds a startlingly brilliant series of portraits of the unhinged, the lost, the unsettled of our America. In the story ""Which Is More Than I Can Say About Some People"" (""There is nothing as complex in the world--no flower or stone--as a single hello from a human being""), a woman newly separated from her husband is on a long-planned trip through Ireland with her mother. When they set out on an expedition to kiss the Blarney S","Philosophy of Religion: An Anthology. Pojman's PHILOSOPHY OF RELIGION offers a comprehensive sampling of newly emerging scholarship and also includes many essays that traditionally have proved successful in p[hilosophy of religion classrooms. The editor's lucid introductions preface articles by such important contemporary writers as Alvin Plantinga, Richard Swinburne, Robert Merrihew Adams, William Alston, Gary Gutting, and Stephen T. Davis.","Bliss. Love thy neighbor, 'tis said. A fine idea, except when the neighbor in question is Lord Holden. Lady Helen Tiernay has complained frequently about his treatment of his people. Too frequently perhaps, for the king intends to curb their constant bickering by ordering them to wed. Helen can't refuse a royal decree, but she'll do everything possible to drive away her devilishly attractive husband-to-be. Holden has faced all manner of horrors on the battlefield. But marriage to ""the tyrant of Tiernay"" is still a worrying prospect--until he glimpses Helen in the flesh. What flesh it is...soft, lush, made for his touch. If she weren't so intent on thinking up devious ways to prevent consummating their bond, Helen would see how perfect they are together, and that a marriage begun as enemies can turn to absolute pleasure.",Later Works: Black Boy (American Hunger) / The Outsider.,"The Art of Fiction: Notes on Craft for Young Writers. This classic guide, from the renowned novelist and professor, has helped transform generations of aspiring writers into masterful writers--and will continue to do so for many years to come. John Gardner was almost as famous as a teacher of creative writing as he was for his own works. In this practical, instructive handbook, based on the courses and seminars that he gave, he explains, simply and cogently, the principles and techniques of good writing. Gardner's lessons, exemplified with detailed excerpts from classic works of literature, sweep across a complete range of topics--from the nature of aesthetics to the shape of a refined sentence. Written with passion, precision, and a deep respect for the art of writing, Gardner's book serves by turns as a critic, mentor, and friend. Anyone who has ever thought of taking the step from reader to writer should begin here.",Mutants: On Genetic Variety and the Human Body.,"The Echo. Minette Walters' shattering new novel unveils the secrets and betrayals, past and present, that come home to those who try to bury them.A destitute man is found dead on the property of a wealthy socialite. But the reporter investigating the dead man's identity -- and the woman whose home became his deathbed -- are swiftly ensnared in a web of deception as tangled and complex as the hearts and minds that spun it...","Borges and The Eternal Orangutans. Jorge Luis Borges is the hero of this literary whodunit by one of Brazil's most celebrated writers.Vogelstein is a loner who has always lived among books. Suddenly, fate grabs hold of his insignificant life and carries him off to Buenos Aires, to a conference on Edgar Allan Poe, the inventor of the modern detective story. There Vogelstein meets his idol, Jorge Luis Borges, and for reasons that a mere passion for literature cannot explain, he finds himself at the center of a murder investigation that involves arcane demons, the mysteries of the Kaballah, the possible destruction of the world, and the Elizabethan magus John Dee's theory of the ""Eternal Orangutan,"" which, given all the time in the world, would end up writing all the known books in the cosmos. Verissimo's small masterpiece is at once a literary tour de force and a brilliant mystery novel.",The Midnight Mystery (The Boxcar Children #95).,"Letting Go. Letting Gois Roth's first full-length novel, published just after Goodbye, Columbus, when he was twenty-nine. Set in 1950s Chicago, New York, and Iowa city, Letting Gopresents as brilliant a fictional portrait as we have of a mid-century America defined by social and ethical constraints and by moral compulsions conspicuously different from those of today. Newly discharged from the Korean War army, reeling from his mother's recent death, freed from old attachments and hungrily seeking others, Gabe Wallach is drawn to Paul Herz, a fellow graduate student in literature, and to Libby, Paul's moody, intense wife. Gabe's desire to be connected to the ordered ""world of feeling"" that he finds in books is first tested vicariously by the anarchy of the Herzes' struggles with responsible adulthood and then by his own eager love affairs. Driven by the desire to live seriously and act generously, Gabe meets an impassable test in the person of Martha Reganhart, a spirited, outspoken, divorced mother","Mediterranean Winter: The Pleasures of History & Landscape in Tunisia Sicily Dalmatia & Greece. The bestselling author of ""Warrior Politics"" turns his attention to the pleasures of history and landscape in Tunisia, Sicily, Dalmatia, and Greece.","Sahara (Dirk Pitt #11). Egypt, 1996. Searching for a treasure on the Nile, Dirk Pitt thwarts the attempted assassination of a beautiful U.N. scientist who's investigating a disease that is driving thousands of North Africans into madness, cannibalism, and death. The suspected cause of the raging epidemic is vast, unprecedented pollution that threatens to extinguish all life in the world's seas. Racing to save the world from environmental catastrophe, Pitt and his team, equipped with an extraordinary, state-of-the-art yacht, run a gauntlet between a billionaire industrialist and a bloodthirsty West African tyrant. In the scorching desert, Pitt finds a gold mine manned by slaves and uncovers the truth behind two enduring mysteries: the fate of a Civil War ironclad and its secret connection with Lincoln's assassination, and the last flight of a long-lost female pilot. Now, amidst the blazing, shifting sands of the Sahara, Dirk Pitt will make a desperate stand in a battle the world cannot afford to lose.","Margaret Atwood: The Handmaid's Tale. Non-fiction book about Margaret Atwood. This is not the novel The Handmaid's Tale. carmoidginet` samqaro, sadac` k`alebs ekrz'alebat` mushaoba, sakut`rebis p`loba, siqvaruli, ojaxis shek`mna, k`uch`ashi siaruli. ekrz'alebat`, gamoiqurebodnen ise, rogorc` t`avad surt`, isaubron da moik`c`nen ise, rogorc` sachirod ch`at`vlian... samqaro, sadac` k`alebi kastebad arian daqop`ilni da mxolod mamakac`ebis dadgenil, mat`t`vis mkac`rad gansazg'vrul p`unk`c`iebs asruleben, es qvelap`eri ki g'mert`isa da religiis saxelit` xdeba. scored aset`i shemzaravia samqaro k`alebist`vis, margaret etvudis ,,mxevlis cigni"". ,,mxevlis cigni"" - cinascarmetqvelebaa, momavali, romelic` shesaz'loa dadges, t`u religiur p`anatizms t`aviant`i z'alaup`lebis gansamtkic`eblad gamoiqeneben z'lierni ama k`veqnisani, xolo religias - sashish iarag'ad ak`c`even, iarag'ad, romelic` ch`veulebriv adamianebzea damiznebuli. magram, amis garda, cigni kidev ert` t`avzardamc`em simart`les gvimxels: t`u didxans davxuchavt` t`vals z'a","The Mistress of Husaby (Kristin Lavransdatter #2). The acknowledged masterpiece of the Nobel Prize-winning Norwegian novelist Sigrid Undset, Kristin Lavransdatter has never been out of print in this country since its first publication in 1927. Its story of a woman's life in fourteenth-century Norway has kept its hold on generations of readers, and the heroine, Kristin--beautiful, strong-willed, and passionate--stands with the world's great literary figures. Volume 11, The Mistress of Husaby, tells of Kristin's troubled and eventful married life on the great estate of Husaby, to which her husband has taken her.","What to Expect the First Year (What to Expect). Some things about babies, happily, will never change. They still arrive warm, cuddly, soft, and smelling impossibly sweet. But how moms and dads care for their brand-new bundles of baby joy has changed--and now, so has the new-baby bible. Announcing the completely revised third edition of What to Expect the First Year. With over 10.5 million copies in print, First Yearis the world's best-selling, best-loved guide to the instructions that babies don't come with, but should. And now, it's better than ever. Every parent's must-have/go-to is completely updated. Keeping the trademark month-by-month format that allows parents to take the potentially overwhelming first year one step at a time, First Yearis easier-to-read, faster-to-flip-through, and new-family-friendlier than ever--packed with even more practical tips, realistic advice, and relatable, accessible information than before. Illustrations are new, too. Among the changes: Baby care fundamentals--crib and sleep safety, feeding, vita","Shock Wave (Dirk Pitt #13). From an island off the coast of Australia, a diamond tycoon heads a reign of terror, but he has never come up against the fury of a man like Dirk Pitt","Jack & Jill (Alex Cross #3). In the middle of the night, a controversial U.S. senator is found murdered in bed in his Georgetown pied-a-terre. The police turn up only one clue: a mysterious rhyme signed ""Jack and Jill"" promising that this is just the beginning. Jack and Jill are out to get the rich and famous, and they will stop at nothing until their fiendish plan is carried out. Meanwhile, Washington, D. C., homicide detective Alex Cross is called to a murder scene only blocks from his house, far from the corridors of power where he spends his days. The victim: a beautiful little girl, savagely beaten--and desposited in front of the elementary school Cross's son, Damon, attends. Could there be a connection between the two murders? As Cross tries to put the pieces together, the killer- or killers - strike again. And again. No one in Washington is safe - not children, not politicians, not even the President of the United States. Only Alex Cross has the skills and the courage to crack the case-but will he discover",The Contest (Everest Trilogy).,"Monsoon Summer. Jasmine ""Jazz"" Gardner heads off to India during the monsoon season. The family trip is her mother's doing: Mrs. Gardner wants to volunteer at the orphanage that cared for her when she was young. But going to India isn't Jazz's idea of a great summer vacation. She wants no part of her mother's do-gooder endeavors. What's more, Jazz is heartsick. She's leaving the business she and her best friend, Steve Morales, started--as well as Steve himself. Jazz is crazy in love with the guy. If only he knew! Only when Jazz reluctantly befriends Danita, a girl who cooks for her family, and who faces a tough dilemma, does Jazz begin to see how she can make a difference--to her own family, to Danita, to the children at the orphanage, even to Steve. As India claims Jazz, the monsoon works its madness andits magic. From the Hardcover edition.",The Return of Grand Theory in the Human Sciences.,Holy Madness: The Shock Tactics Radical Teachings Crazy Wise Adepts Holy Fools Rascal Gurus.,"Digging to America. In what is perhaps her richest and most deeply searching novel, Anne Tyler gives us a story about what it is to be an American, and about Maryam Yazdan, who after thirty-five years in this country must finally come to terms with her ""outsiderness."" Two families, who would otherwise never have come together, meet by chance at the Baltimore airport--the Donaldsons, a very American couple, and the Yazdans, Maryam's fully assimilated son and his attractive Iranian American wife. Each couple is awaiting the arrival of an adopted infant daughter from Korea. After the babies from distant Asia are delivered, Bitsy Donaldson impulsively invites the Yazdans to celebrate with an ""arrival party,"" an event that is repeated every year as the two families become more deeply intertwined. Even independent-minded Maryam is drawn in. But only up to a point. When she finds herself being courted by one of the Donaldson clan, a good-hearted man of her vintage, recently widowed and still recovering from his","Hellsing Vol. 04 (Hellsing #4). What's the result when the Nazis hiding in South America engineer an army of vampires and mount an all-out campaign of deathly dominance? Well, one thing you get is a little unity - seems the Protestant Hellsing Organization and the Catholic Iscariot agency might just have to think about teaming up. Looks like the First World War of the undead is about to erupt in history's biggest battle of blood and fangs. Things are just beginning to heat up in the fourth volume of Hellsing!","Against the Day. Spanning the period between the Chicago World's Fair of 1893 and the years just after World War I, this novel moves from the labor troubles in Colorado to turn-of-the-century New York, to London and Gottingen, Venice and Vienna, the Balkans, Central Asia, Siberia at the time of the mysterious Tunguska Event, Mexico during the Revolution, postwar Paris, silent-era Hollywood, and one or two places not strictly speaking on the map at all. With a worldwide disaster looming just a few years ahead, it is a time of unrestrained corporate greed, false religiosity, moronic fecklessness, and evil intent in high places. No reference to the present day is intended or should be inferred. The sizable cast of characters includes anarchists, balloonists, gamblers, corporate tycoons, drug enthusiasts, innocents and decadents, mathematicians, mad scientists, shamans, psychics, and stage magicians, spies, detectives, adventuresses, and hired guns. There are cameo appearances by Nikola Tesla, Bela Lugosi,",East Is East.,"Forest Mage (Soldier Son #2). The Barnes Noble Review Dark mysticism and primordial natural magic clash with the ever-expanding boundaries of the ""civilized"" world in the second volume of Robin Hobb's Soldier Son trilogy, Forest Mage. The sequel to 2005's Shaman's Crossingfinds protagonist Nevare Burvelle -- the second son of a nobleman and destined for a career in the military -- with his world turned upside down. After surviving a plague that wiped out many of the students and instructors at the king's military academy, Nevare returns home for his brother's wedding, only to learn that he has been medically discharged from the school. The plague usually leaves its survivors skeletally thin, but Nevare, inexplicably, has begun to gain massive amounts of weight. With his family believing he's a glutton, Nevare is disowned by his father and eventually ends up finding work as a lowly cemetery guard in a frontier town near the border with the Specks, a race of dapple-skinned forest dwellers who possess powerful natural","Love. Nobel Prize laureate Toni Morrison's spellbinding new novel is a Faulknerian symphony of passion and hatred, power and perversity, color and class that spans three generations of black women in a fading beach town. In life, Bill Cosey enjoyed the affections of many women, who would do almost anything to gain his favor. In death his hold on them may be even stronger. Wife, daughter, granddaughter, employee, mistress: As Morrison's protagonists stake their furious claim on Cosey's memory and estate, using everything from intrigue to outright violence, she creates a work that is shrewd, funny, erotic, and heartwrenching.","Bold Land Bold Love (Australian Trilogy #1). New South Wales, 1807 It was a vast land of wild beauty and wilder passions; a frontier as yet untamed by man; a place where women had few rights and fewer pleasures. For a female convict like flame-haired Casey O'Cain, it was a living nightmare. Exquisitely beautiful, utterly helpless, she was expected to cater to her master's every whim. And from the first, arogant, handsome Dare Penrod made it clear what he wanted of her. Casey knew she should fight him with every breath in her body, but her heart told her he could make a paradise of this wilderness for her. His callused hands took rights she should never have granted, his warm lips whispered of pleasures she had never known, and his hard body promised a love she would never relinquish","Airborne: A Guided Tour Of An Airborne Task Force. They are America's front lines--serving proudly in forward areas around the world. Representing the very best from the Army and Air Force, the Airborne Task Force is an unstoppable combination of manpower and firepower. Now, Tom Clancy examines this elite branch of our nation's armed forces. With pinpoint accuracy and a style more compelling than any fiction, the acclaimed author of Executive Ordersdelivers an fascinating account of the Airborne juggernaut--the people, the technology, and Airborne's mission in an ever-changing world...*Two Tom Clancy ""mini-novels""--real world scenarios involving the airborne task force*Airborne's weapons of the 21st century, including the Javelin anti-tank missile, the fiber-optically guided N-LOS fire support system, and the Joint Strike Fighter*18 weeks: Life in an Airborne Alert Brigade*Exclusive photographs, illustrations, and diagramsPLUS: An in-depth interview with the incoming commander of the 18th Airborne Corps, General John Keen","The Great Good Thing (The Sylvie Cycle #1). Sylvie had an amazing life, but she didn't get to live it very often. Sylvie has been a twelve-year-old princess for more than eighty years, ever since the book she lives in was first printed. She's the heroine, and her story is exciting -- but that's the trouble. Her story is always exciting in the same way. Sylvie longs to get away and explore the world outside the confines of her book. When she breaks the cardinal rule of all storybook characters and looks up at the Reader, Sylvie begins a journey that not even she could have anticipated. And what she accomplishes goes beyond any great good thing she could have imagined...",The Satanic Verses.,"The Other Boleyn Girl. Two sisters competing for the greatest prize: the love of a king When Mary Boleyn comes to court as an innocent girl of fourteen, she catches the eye of Henry VIII. Dazzled by the king, Mary falls in love with both her golden prince and her growing role as unofficial queen. However, she soon realizes just how much she is a pawn in her family?s ambitious plots as the king?s interest begins to wane and she is forced to step aside for her best friend and rival: her sister, Anne. Then Mary knows that she must defy her family and her king, and take her fate into her own hands. A rich and compelling tale of love, sex, ambition, and intrigue, The Other Boleyn Girl introduces a woman of extraordinary determination and desire who lived at the heart of the most exciting and glamorous court in Europe and survived by following her own heart. << less",The American Campaign: U.S. Presidential Campaigns and the National Vote.,"The Drifting Classroom Vol. 2 (Drifting Classroom). In the aftermath of a strange earthquake, an entire elementary school vanishes, leaving nothing but a hole in the ground. While parents mourn and authorities investigate, the students and teachers of find themselves somewhere far away somewhere cold and dark... a lifeless, nightmarish wasteland among which their school stands like a lone fortress. As panic turns to terror, as the rules start to fall apart, a 6th-grade boy named Sho and his friends must try to survive in a hostile new world...","Douglas Adams's Starship Titanic. Arguably the greatest collaboration in the whole history of comedy! Bestselling author Douglas Adams wrote the storyline based on his CD-ROM game of the same name (as this novel, not as him, obviously). Terry Jones of Monty Python wrote the book. In the nude! Parents be warned! Most of the words in this book were written by a naked man! So. You want to argue with that? All right, we give in. Starship Titanic is the greatest, most fabulous, most technologically advanced interstellar cruise line ever built. It is like a cross between the Queen Mary, the Chrysler Building, Tutankhamen's tomb, and Venice. Furthermore, it cannot possibly go wrong. . . . Sadly, however, seconds after its launch it undergoes SMEF, or Spontaneous Massive Existence Failure. And disappears. Except, everything's got to be somewhere. Coming home that night, on a little known planet called Earth, Dan and Lucy Gibson find something very large and very, very shiny sticking into their house. . .",Mystic River.,"Orient Express. As the Orient Express hurtles across Europe on its three-day journey from Ostend to Constantinople, the driven lives of several of its passengers become bound together in a fateful interlock. The menagerie of characters include Coral Musker, a beautiful chorus girl; Carleton Myatt, a rich Jewish businessman; Richard John, a mysterious and kind doctor returning to his native Belgrade; the spiteful journalist Mabel Warren; and Josef Grunlich, a cunning, murderous burglar. What happens to these strangers as they put on and take off their masks of identity and passion, all the while confessing, prevaricating, and reaching out to one another in the ""veracious air"" of the onrushing train, makes for one of Graham Greene's most exciting and suspenseful stories. Originally published in 1933, Orient Expresswas Greene's first major success. This Graham Greene Centennial Edition features a new introductory essay by Christopher Hitchens.",Le Club de la dernière chance.,Foundations of Clinical Research: Applications to Practice.,"Raven (Orphans #4). ALL SHE WANTED WAS AN END TO BROKEN PROMISES.... Her Mama made it painfully clear that she wished Raven had never been born. But even after she was sent to live with her kindly aunt and domineering uncle, humiliating secrets lurked-- and threatened to dash forever Raven's dream of a true home...","Two for the Dough (Stephanie Plum #2). Bounty hunter Stephanie Plum is still learning the ropes at her cousin Vinnie's bail bond office, so when she sets out on the trail of Kenny Mancuso--a suspiciously wealthy, working class Trenton boy who has just shot his best friend--the stakes are higher than ever. That Mancuso is distantly related to vice cop Joe Morelli--who is trying to beat Stephanie to the punch--only makes the hunt more thrilling.... Taking pointers from her bounty hunter pal, Ranger, and using her pistol-packing Granda Mazur as a decoy, Stephanie is soon closing in on her mark. But Morelli and his libido are worthy foes. And a more sinister kind of enemy has made his first move...and his next move might be Stephanie's last.","Los hermanos Karamazov. The final masterpiece from the celebrated author of ""Crime and Punishment"" and ""The Idiot."".. This extraordinary novel, Dostoyevsky s last and greatest work, tells the dramatic story of four brothers Dmitri, pleasure-seeking, impatient, unruly . . . Ivan, brilliant and morose . . . Alyosha, gentle, loving, honest . . . and the illegitimate Smerdyakov, sly, silent, cruel. Driven by intense passion, they become involved in the brutal murder of their own father, one of the most loathsome characters in all literature. Featuring the famous chapter, The Grand Inquisitor, Dostoyevsky's final masterpiece is at once a complex character study, a riveting murder mystery, and a fascinating examination of man's morality and the question of God's existence.","King Dork (King Dork #1). In this coming-of-age, rock-and-roll, Da Vinci Code-style tale, high school loser Tom Henderson discovers his deceased father's copy of The Catcher in the Rye and finds himself in the middle of several interlocking conspiracies and at least half a dozen mysteries.","Yiddish with Dick and Jane. Jane is in real estate. Today is Saturday. Jane has an open house. She mustschlep the Open House signs to the car. See Janeschlep. Schlep, Jane.Schlep. Schlep, schlep, schlep. In text that captures the unique rhythms of the original Dick and Janereaders, and in 35 all-new illustrations, a story unfolds in which Dick and Jane--hero and heroine of the classic books for children that generations of Americans have used when learning to read--manage to express shades of feeling and nuances of meaning that ordinary English just can't deliver. How? By speaking Yiddish, employing terms that convey an attitude--part plucky self-assertion, part ironic fatalism. When Dick schmoozes, when Jane kvetches, when their children fressnoodles at a Chinese restaurant, the clash of cultures produces genuine hilarity.","Macbeth. Here are the books that help teach Shakespeare plays without the teacher constantly needing to explain and define Elizabethan terms, slang, and other ways of expression that are different from our own. Each play is presented with Shakespeare's original lines on each left-hand page, and a modern, easy-to-understand ""translation"" on the facing right-hand page. All dramas are complete, with every original Shakespearian line, and a full-length modern rendition of the text.",A Is for Abductive : The Language of the Emerging Church.,"All New People. With generosity, humor, and pathos, Anne Lamott takes on the barrage of dislocating changes that shook the Sixties. Leading us through the wake of these changes is Nanny Goodman, one small girl living in Marin County, California. A half-adult child among often childish adults, Nanny grows up with two spectacularly odd parents: a writer father and a mother who is a constant source of material. As Nanny moves into her adolescence, so, it seems, does America. While grappling with her own coming-of-age, Nanny witnesses an entire culture's descent into drugs, the mass exodus of fathers from her town, and rapid real-estate and technological development that foreshadow a drastically different future. In All New People, Anne Lamott works a special magic, transforming failure into forgiveness and illuminating the power of love to redeem us.","The Speed of Trust: The One Thing that Changes Everything. From Stephen R. Covey's eldest son comes a revolutionary new path towards productivity and satisfaction. Trust, says Stephen M.R. Covey, is the very basis of the new global economy, and he shows how trustand the speed at which it is established with clients, employees and constituentsis the essential ingredient for any highperformance, successful organization. For business leaders and public figures in any arena, The Speed of Trustoffers an unprecedented and eminently practical look at exactly how trust functions in our every transaction and relationshipfrom the most personal to the broadest, most indirect interactionand how to establish trust immediately so that you and your organization can forego the timekilling, bureaucratic checkandbalance processes so often deployed in lieu of actual trust.","Gargantua and Pantagruel. The dazzling and exuberant moral stories of Rabelais (c.1471-1553) expose human follies with their mischievous and often obscene humour, while intertwining the realistic with carnivalesque fantasy to make us look afresh at the world. Gargantua depicts a young giant, reduced to laughable insanity by an education at the hands of paternal ignorance, old crones and syphilitic professors, who is rescued and turned into a cultured Christian knight. And in Pantagruel and its three sequels, Rabelais parodied tall tales of chivalry and satirized the law, theology and academia to portray the bookish son of Gargantua who becomes a Renaissance Socrates, divinely guided in his wisdom, and his idiotic, self-loving companion Panurge.","Mythology. The world-renowned classic that has enthralled and delighted millions of readers with its timeless tales of gods and heroes. Edith Hamilton's Mythologysucceeds like no other book in bringing to life for the modern reader the Greek, Roman, and Norse myths that are the keystone of Western culture--the stories of gods and heroes that have inspired human creativity from antiquity to the present. We meet the Greek gods on Olympus and Norse gods in Valhalla. We follow the drama of the Trojan War and the wanderings of Odysseus. We hear the tales of Jason and the Golden Fleece, Cupid and Psyche, and mighty King Midas. We discover the origins of the names of the constellations. And we recognize reference points for countless works of art, literature, and cultural inquiry--from Freud's Oedipus complex to Wagner's Ring Cycle of operas to Eugene O'Neill's Mourning Becomes Electra. Praised throughout the world for its authority and lucidity, Mythologyis Edith Hamilton's masterpiece--the standard by","Nightmare At 20 000 Feet. Remember that monster on the wing of the airplane? William Shatner saw it on The Twilight Zone, John Lithgow saw it in the movie-even Bart Simpson saw it. ""Nightmare at 20,000 Feet"" is just one of many classic horror stories by Richard Matheson that have insinuated themselves into our collective imagination. Here are more than twenty of Matheson's most memorable tales of fear and paranoia, including: ""Duel,"" the nail-biting tale of man versus machines that inspired Steven Spielberg's first film; ""Prey,"" in which a terrified woman is stalked by a malevolent Tiki doll, as chillingly captured in yet another legendary TV moment; ""Blood Son,"" a disturbing portrait of a strange little boy who dreams of being a vampire; ""Dress of White Silk,"" a seductively sinister tale of evil and innocence. Personally selected by Richard Matheson, the bestselling author of I Am Legendand What Dreams May Come, these and many other stories, more than demonstrate why he is rightfully regarded as one of the fin","100 Great Fantasy Short Short Stories. Enter the limitless realms of pure imagination.Here you'll discover the dangers of walking the boulevards dreamed up by Harlan Ellison ... the dark side of wishes granted by Marion Zimmer Bradley's Djinn Number Seven ... the wry twists of Rick Norwood's wordplay ... the sinister shadows lurking behind H. P. Lovecraft's wonders ... and the blood-curdling terror of feeding time at James Gunn's zoo. This superb collection of the best short short works by outstanding contemporary writers packs an infinite amount of entertainment into these 100 small masterpieces of fantasy fiction... and takes you beyond the limits of time and space to savor the suspense, the shivers, the supernatural fun of every eerie, unforgettable one. Contents:Introduction: The widest field / Isaac Asimov -- The Abraham Lincoln murder case / Rick Norwood -- A dozen of everything / Marion Zimmer Bradley -- The anatomy lesson / Scott Sanders -- And I alone am escaped to tell thee / Roger Zelazny -- Angelica / Jane Yolen","Rocket Ship Galileo (Heinlein's Juveniles #1). Winner of four Hugo Awards and the Grand Master Nebula Award for Lifetime Achievement. Three high school students formed the Galileo Club to share their interests in science and space exploration. But they never imagined they would team up with a nuclear physicist to construct and crew a rocket bound for the moon. And they never expected to gain some powerful enemies in the process.","Cat & Mouse (Alex Cross #4). Alex Cross is back-and so is a raging and suicidal Gary Soneji. Out of prison and dying from the AIDS virus he contracted there, he will get revenge on Cross before he dies. In addition, we are introduced to a new pair of rivals whose paths cross that of Alex and Soneji. Thomas Augustine Pierce has been chasing his demon, Mr. Smith, since the savage murder of his fiancee. Mr. Smith is a unique monster, with actions toward his victims so insane-so unimaginable-that he is thought of as ""not of the earth."" Pierce, known in the business as St. Augustine because of his track record for catching killers and his invaluable status to the FBI and Interpol, may even be better than Cross.When things heat up and Alex is in a near-death coma following an attack in his own home, Pierce goes to Washington to help with the investigation. But just as he begins to piece together the mystery of how Gary Soneji could have mortally wounded Cross after he was believed to be dead, he is summoned to Paris wit","The Spell. Here are the interlocking affairs of four men: Robin Woodfield, an architect in his late forties trying to build an idyllic life in Dorset with his young lover, Justin, a would-be actor increasingly disenchanted with the countryside; Robin's attractive and dangerously volatile twenty-two-year-old son Danny; and Justin's former boyfriend Alex, whose life is unexpectedly transformed by a night of house music and a tab of ecstasy.As each falls under the spell of romance or drugs, country living or rough trade, a richly ironic picture emerges of the illusions of love, and of the clashing imperatives of modern gay life: the hunger for contact and the fear of commitment, the need for permanence and the continual disruptions of sex. Ultimately, The Spelldetails the restlessness of every human heart.","2012: The Return of Quetzalcoatl. The acclaimed metaphysical epic that binds together the cosmological phenomena of our time, ranging from crop circles to quantum theory to the resurgence of psychedelic drugs, to support the contention of the Mayan calendar that the year 2012 portends a global shift-in consciousness, culture & way of living-of unprecedented consequence.",Rails Cookbook: Recipes for Rapid Web Development with Ruby.,"User. Mitch Smith is an ambitious young man. He wants to work the coolest clubs, date the hottest girls, do the hardest drugs. But when a one night stand with nice girl Amy Peterson threatens to become something more, Mitch must decide between an actual relationship or the continued pursuit of the unattainable. Set in the dens of the techno underworld and the dark city streets of the Pacific Northwest, USER is an adrenalized love story in which the pure energy of youth supercedes moral consequences.","Vicars of Christ: A History of the Popes. Ever since Emperor Constantine legalized Christianity in the 4th century, the papacy has been a formidable moral and religious presence in the world. The pope is an international force, a political necessity, an object of both inspiration and interference. He is godly to some, holier than thou to others. The popes of history run the gamut of human behavior, as different as the eras they lived in, the ways in which they delegated power, the means by which they led the Church. In these revealing biographies readers will meet: St. Peter, first in line, and talented with a pen; St. Callixtus, who was once a slave; St. Clement, who was thrown into the sea with an anchor around his neck; St. Leo I, who frightened Attila the Hun into sparing Rome; St. Gregory I, who banished the plague from Rome; St. Leo IX, one of the great reform popes; St. Gregory VII, one of history's greatest popes, who nobly defended the Church against domination by secular powers. Not to mention the generous, the murde",Soul Mates & Twin Flames: The Spiritual Dimension of Love & Relationships (Pocket Guide to Practical Spirituality).,"The Stone Raft. When the Iberian Peninsula breaks free of Europe and begins to drift across the North Atlantic, five people are drawn together on the newly formed island-first by surreal events and then by love. ""A splendidly imagined epic voyage...a fabulous fable"" (Kirkus Reviews). Translated by Giovanni Pontiero.","Beauty and the Contemporary Sublime. Esteemed critic, painter, and writer Jeremy Gilbert-Rolfe offers a provocative critique of beauty in relation to the contemporary notion of the sublime, which is now found in technology and a high-powered economy rather than in nature. Refuting established views, this book questions today's ideas of beauty, including those applied to contemporary art, and proposes a secular theory of beauty as glamorous rather than good, frivolous rather than serious. An illuminating read, this book provides excellent course material for classes in philosophy, cultural studies, art history, and aesthetics.","Harpy Thyme (Xanth #17). Gloha is the only creature of her kind in all the world of Xanth, the beautiful offspring of a chance mating between a harpy and a goblin. As she grew to womanhood, she wondered where she would find the one true love with whom she could share her life. So, naturally, she sets off to find the Good Magician Humfrey to ask him for an Answer to the riddle of her heart's desire. But Humfrey, for mysterious reasons of his own, propels her instead on a perilous quest in search of truth, friendship, and, just possibly, happiness.","Sex with the Queen: 900 Years of Vile Kings Virile Lovers and Passionate Politics. In royal courts bristling with testosterone--swashbuckling generals, polished courtiers, and virile cardinals--how did repressed regal ladies find happiness? Anne Boleyn flirted with courtiers; Catherine Howard slept with one. Henry VIII had both of them beheaded. Catherine the Great had her idiot husband murdered and ruled the Russian empire with a long list of sexy young favorites. Marie Antoinette fell in love with the handsome Swedish count Axel Fersen, who tried valiantly to rescue her from the guillotine. Princess Diana gave up her palace bodyguard to enjoy countless love affairs, which tragically led to her early death. In this impeccably researched, scandalously readable follow-up to her New York Times bestseller Sex with Kings, Eleanor Herman reveals the truth about what has historically gone on behind the closed door of the queen's boudoir.","Warhost of Vastmark (Wars of Light & Shadow #3; Arc 2 - The Ships of Merior #2). Janny Wurts's epic tale of two half-brothers cursed to life-long enmity reaches new heights in the third volume, now re-released with a striking new cover. Tricked once more by his wily half-brother, Lysaer, Lord of Light, arrives at the tiny harbour town of Merior to find that Arithon's ship yards have been abandoned and meticulously destroyed, and that the Master of Shadow has disappeared as if into thin air. Meanwhile Arithon and the Mad Prophet Dakar are travelling on foot through the treacherous Kelhorn Mountains towards the Vastmark clans, there to raise further support for his cause. But raising a warhost is a costly business. Is it mere coincidence that Princess Talith - Lysaer's beautiful, headstrong wife - is taken captive and held for a vast ransom by a master brigand? The forces of light and shadow circle and feint, drawing ever closer to a huge conflict. And in the background the Fellowship of Seven Sorcerers and the Koriani Enchantresses watch and plan, and wait...","Tamsin. Arriving in the English countryside to live with her mother and new stepfather, Jenny has no interest in her surroundings, until she meets Tamsin. Since her death over 300 years ago, Tamsin has haunted the lonely estate without rest, trapped by a hidden trauma she can't remember, and a powerful evil even the spirits of night cannot name. To help her, Jenny must delve deeper into the dark world than any human has in hundreds of years, and face danger that will change her life forever...","Under the Influence: The Disinformation Guide to Drugs. In the latest in the oversize Disinformation Guide series of anthologies, editor Preston Peet assembles an all-star cast to lay to rest the specious misinformation peddled by prohibitionists who depend upon the ""War on somedrugs & users"" for their livelihood & power. Drug users & abusers describe their feelings & fears for freedom, not only for themselves but for all their fellow citizens in the USA & the rest of the world, detailing the Constitution-shredding War on some drugs & users. Despite the antidrug hysteria promoted by prohibitionists, drugs have been an inseparable aspect of life for thousands of years--curing disease, calming stress, easing pain, enhancing intelligence, opening the doors of perception & altering consciousness. So why is the ""War on some drugs & users"" underway? The answers can be found in Under the Influence. Decades of spending trillions of dollars while waging war on neighbors, friends & families have done nothing to eradicate drug use & abuse, but it has","101 Stories of the Great Ballets: The Scene-by-Scene Stories of the Most Popular Ballets Old and New. Authored by one of the ballet's most respected experts, this volume includes scene-by-scene retellings of the most popular classic and contemporary ballets, as performed by the world's leading dance companies. Certain to delight long-time fans as well as those just discovering the beauty and drama of ballet.","Monster. Sometimes I feel like I have walked into the middle of a movie. Maybe I can make my own movie. The film will be the story of my life. No, not my life, but of this experience. I'll call it what the lady who is the prosecutor called me. Monster. Fade In: Interior Court. A guard sits at a desk behind Steve. Kathy O'Brien, Steve's lawyer, is all business as she talks to Steve. O'Brien Let me make sure you understand what's going on. Both you and this king character are on trial for felony murder. Felony Murder is as serious as it gets. . . . When you're in court, you sit there and pay attetion. You let the jury know that you think the case is a serious as they do. . . . Steve You think we're going to win ? O'Brien (seriously) It probably depends on what you mean by ""win."" Sixteen-year-old Steve Harmon is on trial for murder. A Harlem drugstore owner was shot and killed in his store, and the word is that Steve served as the lookout. Guilty or innocent, Steve becomes a pawn in the hands of ""","Shadow Lover. A woman holds vigil over her wealthy, dying step-mother. Tensions -- already high with greedy relatives appearing to claim their inheritances -- are further strained by the appearance of the dying woman's long-lost son, who ran away 18 years ago. His mother greets him with joy, the relatives with resentment, but the woman alone knows he is hiding something...that he is not who he says he is. As she uncovers secrets and deceptions of the past and present, she knows only one thing in her heart -- that the irresistible appeal and seductive power of this mysterious stranger may be more dangerous than she thinks!","The Book of Evidence (The Freddie Montgomery Trilogy #1). Returning to Ireland to reclaim a painting that is part of his patrimony, a thirty-eight-year-old man commits a ghastly and motiveless murder, which he confesses in a novel-length narrative.","The Female Brain. This comprehensive new look at the hormonal roller coaster that rules women's lives down to the cellular level, ""a user's guide to new research about the female brain and the neurobehavioral systems that make us women,"" offers a trove of information, as well as some stunning insights. Though referenced like a work of research, Brizedine's writing style is fully accessible. Brizendine provides a fascinating look at the life cycle of the female brain from birth (""baby girls will connect emotionally in ways that baby boys don't"") to birthing (""Motherhood changes you because it literally alters a woman's brain-structurally, functionally, and in many ways, irreversibly"") to menopause (when ""the female brain is nowhere near ready to retire"") and beyond. At the same time, Brizedine is not above reviewing the basics: ""We may think we're a lot more sophisticated than Fred or Wilma Flintstone, but our basic mental outlook and equipment are the same."" While this book will be of interest to anyone","Aman: The Story of a Somali Girl. This is the extraordinary first-person account of a young woman's coming of age in Somalia and her struggles against the obligations and strictures of family and society. By the time she is nine, Aman has undergone a ritual circumcision ceremony; at eleven, her innocent romance with a white boy leads to a murder; at thirteen she is given away in an arranged marriage to a stranger. Aman eventually runs away to Mogadishu, where her beauty and rebellious spirit leads her to the decadent demimonde of white colonialists. Hers is a world in which women are both chattel and freewheeling entrepreneurs, subject to the caprices of male relatives, yet keenly aware of the loopholes that lead to freedom. Amanis an astonishing history, opening a window onto traditional Somali life and the universal quest for female self-awareness.","Before the Frost (Linda Wallander #1). In this latest atmospheric thriller, Kurt Wallander and his daughter Linda, just graduated from the police academy, join forces to search for a religious fanatic on a murder spree and soon find themselves forced to confront a group of extremists bent on punishing the world's sinners. In this latest atmospheric thriller, Kurt Wallander and his daughter Linda join forces to search for a religious fanatic on a murder spree. Just graduated from the police academy, Linda Wallander returns to Skane to join the police force, and she already shows all the hallmarks of her father--the maverick approach, the flaring temper. Before she even starts work she becomes embroiled in the case of her childhood friend Anna, who has inexplicably disappeared. As the case her father is working on dovetails with her own, something far more dangerous than either could have imagined begins to emerge. They soon find themselves forced to confront a group of extremists bent on punishing the world's sinners.","Eight Cousins (Eight Cousins #1). When Rose Campbell, a shy orphan, arrives at ""The Aunt Hill"" to live with her six aunts and seven boisterous male cousins, she is quite overwhelmed. How could such a delicate young lady, used to the quiet hallways of a girls' boarding school, exist in such a spirited home? It is the arrival of Uncle Alec that changes everything. Much to the horror of her aunts, Rose's forward-thinking uncle insists that the child get out of the parlor and into the sunshine. And with a little courage and lots of adventures with her mischievous but loving cousins, Rose begins to bloom. Written by the beloved author of Little Women, Eight Cousinsis a masterpiece of children's literature. This endearing novel offers readers of all ages an inspiring story about growing up, making friends, and facing life with strength and kindness.","Watermelon (Walsh Family #1). Marian Keyes begins Watermelonwith a rather inauspicious romantic opening when the heroine's husband leaves her for Denise from the flat downstairs the day their first child is born. Claire, the deserted wife and mother, returns to her family in Dublin and, after going through the required stages of ""Loss, Loneliness, Hopelessness and Humiliation"", begins to feel much better--so much better that when James tries to win his way back into her affections, he gets more than he bargained for.","Rabbit Hole. ""David Lindsay-Abaire has crafted a drama that's not just a departure but a revelation--an intensely emotional examination of grief, laced with wit, insightfulness, compassion and searing honesty."" -David Rooney, Variety ""A beautifully observed new play blessed with David Lindsay-Abaire's customary grace and wit."" -Ben Brantley, New York Times ""With Rabbit Hole, David Lindsay-Abaire has crafted the most serious, simply told work of his career--a painstakingly beautiful, dramatically resourceful, exquisitely human new play."" -Backstage A story of loss, heartbreak and forgiveness--told through daily moments and emotional hurdles--as a family moves on after the accidental death of their 4-year-old. After a critically acclaimed Broadway premier and successful film adaptation (starring Nicole Kidman, Aaron Eckhart, and Diane West), Rabbit Hole has been hailed as an artistic breakthrough for the highly regarded Lindsay-Abaire. A drama of what comes after tragedy, it captures ""the awkwardness","World's End (The Sandman #8). A ""reality storm"" draws an unusual cast of characters together. They take shelter in a tavern, where they amuse each other with their life stories. Although Morpheus is never a focus in these stories, each has something to say about the nature of stories and dreams. With an introduction by Stephen King. SUGGESTED FOR MATURE READERS. Collecting The Sandman #51-56",The Man and the Author: John Milton: Twentieth Century Perspectives.,"The Impostor (Liar's Club #2). It isn't easy moving about Society dressed like a dandy-especially when one is a ruthless spy. But that's precisely the latest mission for Liar's Club agent Dalton Montmorecy. Dalton is posing as Sir Thorogood, the elusive cartoonist whose scathing political caricatures have all of London abuzz. The true identity of Sir Thorogood is a mystery, and Dalton hopes that impersonating him will flush out the real menace before his cartoons do further damage to the Crown. Now, if Dalton could only find a way to get the irksome, yet oddly appealing widow, Clara Simpson, off his trail... When Clara meets Sir Thorogood at a ball, she's certain he is an impostor-because she's the true Sir Thorogood. Secretly penning the cartoons under the frothy nom de plume, Clara hopes to save enough money so that she can leave her in-laws and find a new residence. Now she is determined to reveal an imposter's identity-and that means doing some undercover work herself. But pretending to be someone you're not has","The Guardship (Thomas Marlowe #1). Shortly after Thomas Marlowe's arrival in Williamsburg, Virginia, all in that newfound capital city are speaking his name. With the bounty from his years as a pirate--a life he intends to renounce and keep forever secret--he purchases a fine plantation from a striking young widow, and soon after kills the favorite son of one of Virginia's most powerful clans while defending her honor. But it is a daring feat of remarkable cunning that truly sets local tongues wagging: a stunning move that wins Marlowe command of Plymouth Prize, the colony's decrepit guardship.But even as the enigmatic Marlowe bravely leads the King's sailors in bloody pitched battle against the cutthroats who infest the waters off Virginia's shores, a threat from his illicit past looms on the horizon that could doom Marlowe and his plans. Jean-Pierre LeRois, captain of the Vengeance--a brigand notorious even among other brigands for his violence and debauchery--plots to seize the colony's wealth, forcing Marlowe to cho",The Naked Warrior: Master the Secrets of the Super-Strong - Using Bodyweight Exercises Only.,"Shadows. They call it the Academy. A secluded, cliff-top mansion overlooking the rugged Pacific coast. A school for children gifted -- or cursed -- with extraordinary minds. Children soon to come under the influence of an intelligence even more brilliant than their own -- and unspeakably evil. For within this mind a dark plan is taking form. A plan so horrifying, no one will believe it. No one but the children. And for them it is already too late. Too late, unless one young student can resist the seductive invitation that will lead... into the Shadows.",Doisneau.,"I Can Fly. A bird can fly. So can I. A cow can moo. I can, too. So begins the simple, delightful rhyme by Ruth Krauss that both celebrates and encourages a child's imagination. Mary Blair's vibrant artwork, found in the Golden Books archives and newly scanned, looks as fresh as it did 50 years ago.","Remember (Redemption #2). The Redemption series won ""Christian Retailing""'s 2005 Retailer's Choice Award for Best Series! Convinced she could make it on her own, Ashley Baxter has kept the most important people in her life at a distance--her family, the man who loves her, and the God she is sure can never forgive her. Now, just as she begins to open her heart, the events of September 11 rip into Ashley's world and she is led to heartbreaking and hope-filled decisions that will forever change her life. This story vividly illustrates that we must value others more than ourselves, and it drives home one of Gary Smalley's key messages: Honor one another. ""Remember"" is second in the five-book Redemption series by Gary Smalley and Karen Kingsbury that centers around the Baxter family. As readers follow the hopes and struggles of the family, they will explore key relationship themes as well as the larger theme of redemption, both in characters' spiritual lives and in their relationships. Each book includes study quest","The Oxford Dictionary of Quotations. The Oxford Dictionary of Quotations has long been hailed as the most literary quotation book available. Here readers will find in one volume the wit and wisdom of humanity--the finest lines to be found in Shakespeare, the Bible, Mark Twain, Groucho Marx, and hundreds of other writers, philosophers, political figures, and entertainers. This major new edition offers the broadest and most up-to-date coverage of quotations available today. Now with 20,000 quotations arranged by author, this is Oxford's largest quotations dictionary ever. Alongside superb coverage of quotations from traditional sources, the Dictionary now boasts improved coverage of world religions, classical Greek and Latin literature, proverbs, and nursery rhymes. In addition, for the first time there are special sections for Advertising Slogans, Epitaphs, Film Lines, and Misquotations, which bring together topical and related quotes. Moreover, the new Fifth Edition provides enhanced accessibility with a new thematic inde","One Flew Over the Cuckoo's Nest. ""In this classic of the 1960s, Ken Kesey's hero is Randle Patrick McMurphy, a boisterous, brawling, fun-loving rebel who swaggers into the world of a mental hospital and takes over. A lusty, life-affirming fighter, McMurphy rallies the other patients around him by challenging the dictatorship of Nurse Ratched. He promotes gambling in the ward, smuggles in wine and women, and openly defies the rules at every turn. But this defiance, which starts as a sport, soon develops into a grim struggle, an all-out war between two relentless opponents: Nurse Ratched, back by the full power of authority, and McMurphy, who has only his own indomitable will. What happens when Nurse Ratched uses her ultimate weapon against McMurphy provides the story's shocking climax.",Wild Things (Prowlers Book 1).,"Sharp Edges. Eugenia Swift is a young woman of singular sensibilities, a connoisseur of beauty...and naturally inclined to tackle even the most difficult tasks on her own. As the director of the Leabrook Glass Museum, she's been asked to travel to Frog Cove Island-- an artistic haven near Seattle-- to catalog an important collection of art glass belonging to the late Adams Daventry. But thanks to unsavory rumors surrounding Daventry's death, the museum insists that Eugenia take along Cyrus Chandler Colfax-- a rough-hewn private investigator whose taste in glass runs to icy cold bottles filled with beer. When Colfax declares they must pose as a couple, Eugenia protests in terms as loud as his Hawaiian shirts. She's loath to disclose the secret purpose of her trip: investigating the disappearance of her good friend Nellie Grant...the late Adam Daventry's lover. Meanwhile, the green-eyed calm of Colfax's gaze shields his own hidden agenda-- locating a priceless Daventry treasure that will help him ave",Die Verschwundene Katze = The Missing Cat.,Aurora Dawn.,"Philosophy of Right. In this 1821 classic, Hegel applies his most important concept & the dialectics to law, rights, morality, the family, economics & the state. The philosopher defines universal right as the synthesis between the thesis of an individual acting in accordance with the law & the occasional conflict of an antithetical desire to follow private convictions.","Running in Heels. ""To say that Babs has been my closest friend for sixteen years is rather like saying that Einstein was good at sums. We were blood sisters from the age of eleven (before my mother prized the razor out of Babs's hand)."" But now Babs, noisy and as fun as a day at the beach, is getting married. And Natalie Miller, twenty-seven, senior press officer for the London Ballet, panics. What happens when your best friend pledges everlasting love to someone else? It doesn't help that Nat is dating a guy named Saul Bowcock. As the confetti flutters, her good-girl veneer cracks, and she falls into an alluringly unsuitable affair that spins her crazily out of control. Nat is on the rebound and allergic to the truth--about Babs's relationship, her boyfriend's ambition, her parents' divorce, and her golden-boy brother's little Australian secret. Her mother's lasagna and her roommate Andy's fuzzy slippers are also monstrous affronts. But what Nat really needs to face is the mirror--and herself . . . . W","The Moonspinners. Young, beautiful, and adventurous Nicola Ferris loves her life as a secretary at the British Embassy on the lush island of Crete. Then on her day off, she links up with two hiking companions who have inadvertently stumbledupon a scene of blood vengeance. And suddenly the life Nicola adores is in danger of coming to an abrupt, brutal, and terrifying end . .","Setting Free the Bears. It is 1967 and two Viennese university students want to liberate the Vienna Zoo, as was done after World War II. But their good intentions have both comic and gruesome consequences, in this first novel written by a twenty-five year old John Irving, already a master storyteller.","Jane Austen For Dummies. Explains Austen's methods, motivations, and morals The fun and easy way(r) to understand and enjoy Jane Austen Want to know more about Jane Austen? This friendly guide gives the scoop on her life, works, and lasting impact on our culture. It chronicles the events of her brief life, examines each of her novels, and looks at why her stories - of women and marriage, class and money, scandal and hypocrisy, emotion and satire - still have meaning for us today. Discover * Why Austen is so popular * The impact on manners, courtships, and dating * Love and life in Austen's world * Her life and key influences * Her most memorable characters","The Wave in the Mind: Talks and Essays on the Writer the Reader and the Imagination. Join Ursula K. Le Guin as she explores a broad array of subjects, ranging from Tolstoy, Twain, and Tolkien to women's shoes, beauty, and family life. With her customary wit, intelligence, and literary craftsmanship, she offers a diverse and highly engaging set of readings. The Wave in the Mind includes some of Le Guin's finest literary criticism, rare autobiographical writings, performance art pieces, and, most centrally, her reflections on the arts of writing and reading.",Four Mothers at Chautuaqua.,"The Complete Green Letters. The five books of Miles J. Stanford have been loved by many people for the insight they provide into true spirituality. Now for the first time all five titles are available in one volume, the complete","Floating in My Mother's Palm. Floating in My Mother's Palmis the compelling and mystical story of Hanna Malter, a young girl growing up in 1950's Burgdorf, the small German town Ursula Hegi so brilliantly brought to life in her bestselling novel Stones from the River.Hanna's courageous voice evokes her unconventional mother, who swims during thunderstorms; the illegitimate son of an American GI, who learns from Hanna about his father; and the librarian, Trudi Montag, who lets Hanna see her hometown from a dwarf's extraordinary point of view. Although Ursula Hegi wrote Floating in My Mother's Palmfirst, it can be read as a sequel to Stones from the River.","Master of Wolves (Mageverse #3). Jim London is outraged over the death of his friend, a fellow bounty hunter and werewolf--and thinks the police department of nearby Clarkston cooked up a phony story about Tony's murder. The only way to find out is to go undercover. And, in his wolf form, Jim can do that better than anybody...There's one complication, though. The new police-dog handler, Faith Weston, is sexy enough to bring out the animal in any man...","The Hip Chick's Guide to Macrobiotics: A Philosophy for Achieving a Radiant Mind and a Fabulous Body. A modern girl's guide to the secrets of eating for health, beauty, and peace of mind.""Part Joan Rivers, part Mahatma Gandhi, Jessica Porter makes macrobiotics meaningful, hilarious, and totally life-changing."" Simon Doonan, creative director, Barneys New York and author of Wacky Chicks Heralded by New York magazine as one of the city's most popular diets, macrobiotics has become the latest trend in dieting, thanks to high-profile supporters like Madonna and Gwyneth Paltrow. Speaking to the generation of young women looking to extend their healthy lifestyles beyond yoga and Pilates, macrobiotic chef and instructor Jessica Porter offers fresh, contemporary, and accessible insight into one of the world's most popular diets that is based on century's old principles. She explains that through the right balance of food, women can find balance in every aspect of their lives--improved health, weight loss, or fulfilling relationships. The effects of eating a macrobiotic diet can extend beyond b",Apollodorus' Library and Hyginus' Myths: Two Handbooks of Greek Mythology.,"Three Case Histories. Notes upon a case of obessional neurosis (1909) Pscyhoanalytic notes upon an autobiographical account of a case of paranoia (dementia paranoides) (1911) From the history of an infantile neurosis (1918)",Ajax in Action.,"The Pyramid. Oliver is eighteen and wants to enjoy himself before going to university. But this is the 1920s and he lives in Stilbourne, a small English country town where everyone knows what everyone else is getting up to, and where love, lust and rebellion are closely followed by revenge and embarrassment.","Laura Ingalls Wilder's Fairy Poems. The beautiful illustrations bring the poetry to life in this beautiful gift book. Readers will delight in this never-before published collection of poems from Laura Ingalls Wilder, the beloved author of The Little House on the Prairie: Day and night, wherever we go, fairies are out dancing, painting, and creating joyous mischief for all who can see them. Laura Ingalls Wilder shares her vision of the fanciful, ethereal, and mischievous world of the ""Little People"" in this first-ever collection of fairy poems she wrote in 1915. Accompanied by whimsical illustrations, readers young and old will cherish this book for a lifetime.",Why I Hate Canadians.,"Bleach Volume 12. Flower on the Precipice With reports of powerful intruders defeating a number of assistant captains, the inner sanctum of the Soul Society - the Seireitei, the home of the Soul Reapers - is put on a state of high alert. Matters are further compounded by the mysterious death of a prominent captain. Is his death a cover-up to prevent a valuable secret from being exposed? Meanwhile, Ichigo confronts Kenpachi Zaraki, captain of the eleventh company, and by far the most brutal fighter in the Seireitei!",Hardball: Are You Playing to Play or Playing to Win?.,The Feynman Lectures on Physics Vol 2.,"A Christmas Carol (Great Illustrated Classics). In this unabridged version of the original 1843 edition, the classic tale is illustrated with full-color paintings and black-and-white drawings that brilliantly recapture an era and bring Dickens's characters vividly to life. ""Michael Foreman's illustrations have brought new life and charm to a story we all know."" -- Parents Magazine","M Is for Mayflower: A Massachusetts Alphabet. M is for Mayflower"" is a wonderful addition to our series of state alphabet books, as Raven's sparkling verse and illuminating expository text are matched perfectly with Jeannie Brett's bright illustrations.This pictorial celebrates the treasures of the Bay State, and educates as it entertains elementary-aged New Englanders. Older readers will appreciate the guided tour through Massachusetts' history, and will learn more about their unique home. Where else could you find John F. Kennedy, Emily Dickinson, and Walden's Henry David Thoreau sharing the spotlight with Roxbury Puddingstones and the Quabbin Reservoir? Only in ""M is for Mayflower.","Virgin Earth (Tradescant #2). As England descends into civil war, John Tradescant the Younger, gardener to King Charles I, finds his loyalties in question, his status an ever-growing danger to his family. Fearing royal defeat and determined to avoid serving the rebels, John escapes to the royalist colony of Virginia, a land bursting with fertility that stirs his passion for botany. Only the native American peoples understand the forest, and John is drawn to their way of life just as they come into fatal conflict with the colonial settlers. Torn between his loyalty to his country and family and his love for a Powhatan girl who embodies the freedom he seeks, John has to find himself before he is prepared to choose his direction in the virgin land. In this enthralling, freestanding sequel to Earthly Joys, Gregory combines a wealth of gardening knowledge with a haunting love story that spans two continents and two cultures, making Virgin Eartha tour de force of revolutionary politics and passionate characters.",Haunted Castle on Hallows Eve (Magic Tree House #30).,"Harrius Potter et Philosophi Lapis. Latin translation of the first Harry Potter book, Harry Potter and the Philosopher's Stonein which Harry Potter, a normal eleven-year-old boy, discovers that he is a wizard. Long ago, Harry's parents were killed in a battle with the evil Lord Voldemort. When we first meet Harry, he is living miserably with his repulsive and non-magical (or Muggle) Aunt Petunia and Uncle Vernon Dursley, and their even more revolting son, Dudley. Following a bizarre but hilarious chain of events, Harry finds himself at Hogwarts School of Witchcraft and Wizardry, with an outrageous cast of characters, including super-smart Hermione Granger, vile Draco Malfoy, sinister Professor Snape, and the wise Headmaster Albus Dumbledore. Adventures galore ensue.","Where the Heart Is. Talk about unlucky sevens. An hour ago, seventeen-year-old, seven months pregnant Novalee Nation was heading for California with her boyfriend. Now she finds herself stranded at a Wal-Mart in Sequoyah, Oklahoma, with just $7.77 in change. But Novalee is about to discover hidden treasures in this small Southwest town--a group of down-to-earth, deeply caring people willing to help a homeless, jobless girl living secretly in a Wal-Mart. From Bible-thumping blue-haired Sister Thelma Husband to eccentric librarian Forney Hull who loves Novalee more than she loves herself, they are about to take her--and you, too--on a moving, funny, and unforgettable journey to . . . Where the Heart Is.",Red Phoenix.,"The Missing Piece (The Missing Piece #1). From Shel Silverstein, the celebrated author of The Giving Treeand Where the Sidewalk Ends, comes The Missing Piece, a charming fable that gently probes the nature of quest and fulfillment. It was missing a piece. And it was not happy. What it finds on its search for the missing piece is simply and touchingly told. This inventive and heartwarming book can be read on many levels, and Silverstein's iconic drawings and humor are sure to delight fans of all ages. So it set off in search of its missing piece. And as it rolled it sang this song-- Oh I'm lookin' for my missin' piece I'm lookin' for my missin' piece Hi-dee-ho, here I go, Lookin' for my missin' piece. And don't miss Runny Babbit Returns, the new book from Shel Silverstein!","Encyclopedia of an Ordinary Life. If you're looking for quotes from newspapers and magazines, NPR, book reviews, endorsements from thousands of readers and bloggers, google Encyclopedia of an Ordinary Lifeand just see for yourself how people everywhere are responding to this book. In Encyclopedia of an Ordinary Life, Amy Krouse Rosenthal has ingeniously adapted the centuries-old format of the encyclopedia to convey the accumulated knowledge of her lifetime in a poignant, wise, often funny, fully realized memoir. Using mostly short entries organized from A to Z, many of which are cross-referenced, Rosenthal captures in wonderful and episodic detail the moments, observations, and emotions that comprise a contemporary life. Start anywhere--preferably at the beginning--and see how one young woman's alphabetized existence can open up and define the world in new and unexpected ways. An ordinary life, perhaps, but an extraordinary book. Cross-section of ordinary life at this exact moment A security guard is loosening his belt","Midnight Riders: The Story of the Allman Brothers Band. In this riveting tale of sex, drugs and rock'n'roll, Freeman brings to life the turbulent career of the original Southern rock band. This history includes the band's blues roots, their wild early days on the road and their recent resurgence.","Kristin Lavransdatter (Kristin Lavransdatter #1-3). In her great historical epic Kristin Lavransdatter, set in fourteenth-century Norway, Nobel laureate Sigrid Undset tells the life story of one passionate and headstrong woman. Painting a richly detailed backdrop, Undset immerses readers in the day-to-day life, social conventions, and political and religious undercurrents of the period. Now in one volume, Tiina Nunnally's award-winning definitive translation brings this remarkable work to life with clarity and lyrical beauty. As a young girl, Kristin is deeply devoted to her father, a kind and courageous man. But when as a student in a convent school she meets the charming and impetuous Erlend Nikulausson, she defies her parents in pursuit of her own desires. Her saga continues through her marriage to Erlend, their tumultuous life together raising seven sons as Erlend seeks to strengthen his political influence, and finally their estrangement as the world around them tumbles into uncertainty. With its captivating heroine and emotional","The Complete Novels. Witty, wise, enduring and treasured, the seven great novels of Jane Austen Few novelists have conveyed the subtleties and nuances of their own social milieu with the wit and insight of Jane Austen. Through her vivacious and spirited heroines and their circle, she paints vivid portraits of English middle-class life as the eighteenth century came to a close. The seven novels in this omnibus edition contain some of the most brilliant, dazzling prose in the English language. Sense and Sensibility Pride and Prejudice Mansfiled Park Emma Northanger Abbey Persuasion Lady Susan","Teach Your Child to Read in 100 Easy Lessons. With more than half a million copies in print, Teach Your Child to Read in 100 Easy Lessonsis the definitive guide to giving your child the reading skills needed now for a better chance at tomorrow, while bringing you and your child closer together. Is your child halfway through first grade and still unable to read? Is your preschooler bored with coloring and ready for reading? Do you want to help your child read, but are afraid you'll do something wrong? Teach Your Child to Read in 100 Easy Lessonsis a complete, step-by-step program that shows patents simply and clearly how to teach their children to read. Twenty minutes a day is all you need, and within 100 teaching days your child will be reading on a solid second-grade reading level. It's a sensible, easy-to-follow, and enjoyable way to help your child gain the essential skills of reading. Everything you need is here--no paste, no scissors, no flash cards, no complicated directions--just you and your child learning together. One hu",L'Aube du désert.,"The Valentine Legacy (Legacy #3). Dear Reader: In the early 1820s, horse racing was a down and dirty sport. James Wyndham, who owns racing stables in both England and America, finds his racing nemesis in red-haired Jessie Warfield, renowned hoyden and champion jockey, who knows as many dirty racing tricks as James does. When either wins a race, the other's nose gets rubbed in the dirt. Jessie has known James for six years, since she was fourteen years old. She often wants to kick him for the way he treats her, but more importantly, she adores him. She just doesn't know how to show it. When chance throws Jessie out of a tree, landing her on top of James, she is pronounced Ruined. When she decided to run, she really goes for it, all the way to England, to James's cousins Marcus and Duchess Wyndham. James arrives, laden with guilt, to find a Jessie who sounds like the old Jessie but isn't. Jessie has undergone a transformation worthy of Pygmalion. Will James do the Right Thing and undo Jessie's Ruin? What about Jessie's n","For the Relief of Unbearable Urges. A work of stunning authority and imagination - a book that is as wondrous and joyful as it is wrenchingly sad, and that heralds the arrival of a profoundly gifted new storyteller. Already sold in eight countries around the world, these nine energized, irreverent stories from Nathan Englander introduce an astonishing new talent. In Englander's amazingly taut and ambitious ""The Twenty-seventh Man,"" a clerical error lands earnest, unpublished Pinchas Pelovits in prison with twenty-six writers slated for execution at Stalin's command, and in the grip of torture Pinchas composes a mini-masterpiece, which he recites in one glorious moment before author and audience are simultaneously annihilated. In ""The Gilgul of Park Avenue,"" a Protestant has a religious awakening in the back of a New York taxi. In the collection's hilarious title story, a Hasidic man incensed by his wife's interminable menstrual cycle gets a dispensation from his rabbi to see a prostitute. The stories in For the Relief of","Mutant Message Down Under. Mutant Message Down Underis the fictional account of an American woman's spiritual odyssey through outback Australia. An underground bestseller in its original self-published edition, Marlo Morgan's powerful tale of challenge and endurance has a message for us all. Summoned by a remote tribe of nomadic Aborigines to accompany them on walkabout, the woman makes a four-month-long journey and learns how they thrive in natural harmony with the plants and animals that exist in the rugged lands of Australia's bush. From the first day of her adventure, Morgan is challenged by the physical requirements of the journey--she faces daily tests of her endurance, challenges that ultimately contribute to her personal transformation. By traveling with this extraordinary community, Morgan becomes a witness to their essential way of being in a world based on the ancient wisdom and philosophy of a culture that is more than 50,000 years old.","Early Candlelight. This historical novel set at Old Fort Snelling in the 1830s is a rich and romantic re-creation of the early settlement period in Minnesota's history. Maud Hart Lovelace's careful research into the documents of the Minnesota Historical Society, combined with her knowledge of the actual setting, enabled her to write a story that conveys a sense of time and place both accurate and compelling for young adults as well as general readers.","The View From Castle Rock. A new collection of stories by Alice Munro is always a major event. This new collection -- her most personal to date -- is no exception. Alice Munro's stories are always wonderful and so ingrained with truths about life that readers always want to know where they came from. In this book, Alice Munro tells us. In her Foreword (an unusual feature in itself), she explains how she, born Alice Laidlaw in Ontario, in recent years became interested in the history of her Laidlaw ancestors. Starting in the wilds of the Scottish Borders, she learned a great deal about a famous ancestor, born around 1700, who, as his tombstone records, ""for feats of frolic, agility and strength, had no equal in his day."" She traced the family's history with the help of that man's nephew, the famous writer James Hogg, finding to her delight that each generation of the family had produced a writer who wanted to record what had befallen them. In this way, she was able to follow the family's voyage to Canada in 1818,","The Illuminati. From before the time of Christ, there have been rumors of a secret society called The Illuminati- a vicious tribe of Druids with mystical, supernatural powers. Many saw them as demons or gods. Those who opposed them simply disappeared - or met an even worse fate. Unknown to all but the very few, this group slowly infiltrated world organizations and financial institutions with a singular goal--to control the world's economic system. Now fast-forward to the year 2020. The Illuminati has succeeded in placing one of their people in the office of the presidency of the United States. With the worldwide launch of a financial system known as Data-Net, they suddenly have the power to single out groups of people and control their money, fuel, and food supply. How do you escape an unknown enemy operating at the highest levels who can track your every move? And how do you defeat a society that practices ancient rituals and appears to have power beyond the grave? The Illuminati is a futuristic thri","The Secret Garden. When orphaned Mary Lennox comes to live at her uncle's great house on the Yorkshire Moors, she finds it full of secrets. The mansion has nearly one hundred rooms, and her uncle keeps himself locked up. And at night, she hears the sound of crying down one of the long corridors. The gardens surrounding the large property are Mary's only escape. Then, Mary discovers a secret garden, surrounded by walls and locked with a missing key. One day, with the help of two unexpected companions, she discovers a way in. Is everything in the garden dead, or can Mary bring it back to life?","The A.B.C. Murders (Hercule Poirot #13). There's a serial killer on the loose, bent on working his way through the alphabet. And as a macabre calling card he leaves beside each victim's corpe the ABC Railway Guide open at the name of the town where the murder has taken place. Having begun with Andover, Bexhill and then Churston, there seems little chance of the murderer being caught - until he makes the crucial and vain mistake of challenging Hercule Poirot to frustrate his plans.","The Last Days of Socrates. Chronicling the life and death of the father of western philosophy, and charting his influence on the most influential ancient Greek philosophers, Plato's The Last Days of Socrates is translated from the Greek by Hugh Tredennick, revised with an introduction and notes by Harold Tarrant in Penguin Classics. The trial and condemnation of Socrates on charges of heresy and corrupting young minds is a defining moment in the history of Classical Athens. In tracing these events through four dialogues, Plato also developed his own philosophy, based on Socrates' manifesto for a life guided by self-responsibility. Euthyphrofinds Socrates outside the court-house, debating the nature of piety, while the Apologyis his robust rebuttal of the charges of impiety and a defence of the philosopher's life. In the Crito, while awaiting execution in prison, Socrates counters the arguments of friends urging him to escape. Finally, in the Phaedo, he is shown calmly confident in the face of death, skilfully ar","Wifey. With more than four million copies sold, Wifeyis Judy Blume's hilarious, moving tale of a woman who trades in her conventional wifely duties for her wildest fantasies-and learns a lot about life along the way. Sandy Pressman is a nice suburban wife whose boredom is getting the best of her. She could be making friends at the club, like her husband keeps encouraging her to do. Or working on her golf game. Or getting her hair done. But for some reason, these things don't interest her as much as the naked man on the motorcycle...","Taxi Driver. 1970s New York, and young Vietnam veteran Travis Bickle takes to driving a taxi in search of an escape from his insomnia, his barren apartment and his gnawing sense of self-disgust, which threatens to erupt in revenge against the sordid, unlovely world through which he travels. When his tentative efforts at a relationship with elegant political campaign worker Betsy come to naught, Travis conceives of an assassination attempt upon her boss, Senator Charles Palantine. But as he cruises the streets at night, Travis encounters a hapless child prostitute, Iris, and her sinister pimp, sport. Travis's mounting psychosis acquires a new focus, and violence erupts . . . One of the key films of the 1970s and winner of the Palme d'Or at the 1976 Cannes Film Festival, Taxi Driverwas the first of several potent collaborations between Paul Schrader and director Martin Scorsese. Inspired by Ford's The Searchers, Bresson's Diary of a Country Priest, the diaries of real-life gunman Arthur Bremer, and a",Random House Crossword Mega Omnibus Volume 1.,"The Tolkien Reader. An invitation to Tolkien's world. This rich treasury includes Tolkien's most beloved short fiction plus his essay on fantasy. Publisher's Note Tolkien's Magic Ring, by Peter S. Beagle The Homecoming of Beorhtnoth Beorhthelm's Son Tree and Leaf On Fairy-Stories Leaf by Niggle Farmer Giles of Ham The Adventures of Tom Bombadil The Adventures of Tom Bombadil Bombadil Goes Boating Errantry Princess Mee The Man in the Moon Stayed Up Too Late The Man in the Moon Came Down Too Soon The Stone Troll Perry-the-Winkle The Mewlips Oliphaunt Fastitocalon Cat Shadow-bride The Hoard The Sea-Bell The Last Ship","Transmetropolitan Vol. 2: Lust for Life. Outlaw journalist Spider Jerusalem has become a household name in the future City he calls home. This latest collection of twisted tales showcases Spider's horrific yet funny screeds on subjects as diverse as religion, politics, and his ex-wife's cryogenically frozen head (which has been stolen). ""Transmetropolitan"" has been called ""brilliant future-shock commentary"" (Spin), and this new volume shows why.","Wild Magic (Immortals #1). Young Daine's knack with horses gets her a job helping the royal horsemistress drive a herd of ponies to Tortall. Soon it becomes clear that Daine's talent, as much as she struggles to hide it, is downright magical. Horses and other animals not only obey, but listen to her words. Daine, though, will have to learn to trust humans before she can come to terms with her powers, her past, and herself.","The Return of the Native. Backgrounds and Contexts provides a useful ""Glossary of Dialect Words"" as well as four essays on the textual and publication history of the novel--including pieces by Simon Gatrell and Andrew Nash--all of which are newly included. Also included are six of Hardy's nonfiction writings on the dialect in the novel, the reading of fiction, and his correspondence, five of which are new to this edition Criticism provides a selection of contemporary reviews that suggestThe Return of the Native's initial reception as well nine of the most influential modern essays on the novel, by Gillian Beer, D. H. Lawrence, Michael Wheeler, Rosemarie Morgan, Donald Davidson, John Peterson, Richard Swigg, Pamela Dalziel, and Jennifer Gribble. A Chronology and Selected Bibliography are also included.","Crime Stories and Other Writings. In scores of stories written for Black Mask and other pulp magazines in the 1920s and 1930s, Dashiell Hammett used the vernacular adventure tale to register the jarring textures and revved-up cadences of modern America. His stories opened up crime fiction to the realities of American streets and American speech. Now The Library of America collects the finest of them: 24 in all, along with some revealing essays and an early version of his novel The Thin Man. The texts, reprinted here for the first time, are those that appeared originally in the pulps, without the cuts and revisions introduced by later editors.Hammett's years of experience as a Pinkerton detective give even his most outlandishly plotted mysteries a gritty credibility. Mixing melodramatic panache and poker-faced comedy, his stories are hard-edged entertainment for an era of headlong change and extravagant violence, tracking the devious, nearly nihilistic exploits of con men and blackmailers, slumming socialites and deadpa","Written on the Body. The most beguilingly seductive novel to date from the author of The Passion and Sexing the Cherry. Winterson chronicles the consuming affair between the narrator, who is given neither name nor gender, and the beloved, a complex and confused married woman. ""At once a love story and a philosophical meditation.""--New York Times Book Review.","I Never Promised You a Rose Garden. I Never Promised You a Rose Garden is the story of a sixteen-year-old who retreats from reality into the bondage of a lushly imagined but threatening kingdom, and her slow and painful journey back to sanity. Chronicles the three-year battle of a mentally ill, but perceptive, teenage girl against a world of her own creation, emphasizing her relationship with the doctor who gave her the ammunition of self-understanding with which to help herself. ""I wrote this novel, which is a fictionalized autobiography, to give a picture of what being schizophrenic feels like and what can be accomplished with a trusting relationship between a gifted therapist and a willing patient. It is not a case history or study. I like to think it is a hymn to reality."" - Joanne Greenberg","What Is Goth?. What Is Goth? is a humorous, self-deprecating look at Goth culture from the inside out. Imagine The Preppy Handbook colliding with Charles Addams. Then add a lot more melancholy and a lot more spooky. What Is Goth? dispels the false stereotypes and reinforces the true ones surrounding Goths and Goth culture. ""To the mundane,"" Voltaire writes, ""Goths are weird, black-clad freaks who are obsessed with death; they are sad all of the time. Take a closer look at the Goth scene, however, and you will find a rich tapestry of ideas and practices and a menagerie of colorful characters. Oh, dear. I said 'colorful.'"" Yes, Goths are pale, wear black clothing, love black makeup (on men and women), mope, listen to real downer music, and perfect the art of living in a perpetual state of ennui and melancholy. But there's so much more to being Goth. Goths come from all walks of life. Many are teenagers who live with their parents; others are doctors, lawyers, musicians, and so on. Most Goths are highly","Phantom Pain. Listen to Arnon Grunberg discuss ""Phantom Pain"" on ""The Connection"" with Dick Gordon. A one-time literary novelist of some respectability, now brought low by the double insult of obscurity and crippling debt, Robert G. Mehlman is a man in need of money and recognition, fast. But Mehlmanis publisher is only interested in his long overdue novel, since the people donit want short stories, and his portfolio was liquidated months ago. So, it is to culinary writing that he turns. A practiced decadent, a habitual spendthrift, and a serial womanizer, he has, ostensibly, all the right qualities. But the path to fame is never a smooth one. ""Phantom Pain"" is the bitterly funny but unpublished manuscript of Mehlmanis autobiography. In it, he tells the parallel stories of his decaying marriage and his puzzling affair with a woman he meets by chance and who accompanies him on the road. Their journey takes them on a chauffeur-driven, midnight run away from New York City to Atlantic City where they ga",Second Ring of Power.,"L'Étranger. Meursault, le narrateur, employe de bureau algerois, apprend la mort de sa mere. Il prend l'autobus pour se rendre a l'asile ou elle a fini ses jours et assiste avec indifference a la veillee et a l'enterrement. Le lendemain, samedi, il rencontre Marie dans un etablissement de bains, l'emmene au cinema et passe la nuit avec elle. Le dimanche s'etire dans l'ennui et le desoeuvrement. Meursault retrouve son bureau et ses voisins: Celeste le restaurateur, le vieux Salamano qui bat son chien, et Raymond Sintes, dont on dit dans le quartier qu'il <>. Celui-ci demande a Meursault de rediger une lettre destinee a une femme qui l'a trompe. Le samedi suivant, Meursault se rend a la plage avec Marie. Au retour, ils assistent a une scene violente au cours de laquelle Raymond frappe sa maitresse. La police etant intervenue, Meursault accepte de temoigner en faveur de Raymond ... Meursault et Marie vont passer le dimanche a la plage, avec Raymond. Deux Arabes les ont suivis. L'un est le frere de la","Jackdaws. In his own bestselling tradition of Eye of the Needleand The Key to Rebecca, Ken Follett once again strikes Nazi pay dirt as a gang of all-female saboteurs go behind German lines.","Brave New World and Brave New World Revisited. Brave New Worldand Brave New World Revisitedare reissued in this handsome one-volume hardcover edition, with a new foreword by Christopher Hitchens. The astonishing novel Brave New World, originally published in 1932, presents Aldous Huxley's vision of the future--of a world utterly transformed. Through the most efficient scientific and psychological engineering, people are genetically designed to be passive and therefore consistently useful to the ruling class. This powerful work of speculative fiction sheds a blazing critical light on the present and is considered to be Aldous Huxley's most enduring masterpiece. The nonficton work Brave New World Revisited, published in 1958, is a fascinating work in which Huxley uses his tremendous knowledge of human relations to compare the modern-day world with his prophetic fatasy envisioned in Brave New World, including the threats to humanity, such as over-population, propaganda, and chemical persuasion. Description from inside jacket sleeve.","The Complete Poems. This collection includes all the poems from the incomplete ""Collected Poems"" of 1929 and from the separate smaller volumes issued during Lawrence's lifetime; uncollected poems; an appendix of juvenilia and another containing variants and early drafts; and all Lawrence's critical introductions to his poems. It also includes full textual and explanatory notes. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and notes by distinguished scholars and contemporary authors, as well as up-to-date translations by award-winning translators.",Modern Reader's Guide to Dante's the Divine Comedy.,Las luces de septiembre (Niebla #3). Un misterioso fabricante de juguetes que vive recluido en una gigantesca mansion poblada de seres mecanicos y sombras del pasado... Un enigma en torno a extranas luces que brillan entre la niebla que rodea el islote del faro. Una criatura de pesadilla que se oculta en lo mas profundo del bosque... Estos y otros elementos tejen la trama del misterio que unira a Irene e Ismael para siempre durante un magico verano en Bahia Azul. Un misterio que los llevara a vivir la mas emocionante de las aventuras en un laberintico mundo de luces y sombras.,"Disordered Minds. When a local councillor and an anthropologist re-investigate the controversial murder conviction of a mentally retarded 20-year-old, they're unprepared for the disturbing facts that come to light--and the personal demons with which they must come to terms.","Seize the Night (Moonlight Bay #2). New on CD. Christopher Snow, the protagonist of Fear Nothing, returns and is on the trail of missing children in Koontz's newest thriller. Snow believes the children are still alive and that their disappearances have something to do with clandestine scientific experiments at a nearby abandoned military base. Unabridged. 12 CDs.",Access the Power of Your Higher Self: Your Source of Inner Guidance and Spiritual Transformation (Pocket Guides to Practical Spirituality).,"Lincoln on Leadership: Executive Strategies for Tough Times. You think you have it rough? Only ten days before Abraham Lincoln took the oath of office in 1861, the Confederate States of America seceded from the Union taking all Federal agencies, forts, and arsenals within their territory. To make matters worse, Lincoln, who was elected by a minority of the popular vote, was viewed by his own advisors as nothing more than a gawky, second-rate country lawyer with no leadership experience. What Lincoln did to become our most honored and revered president is history, how he can help you to run your organization is not. Lincoln On Leadership is the first book to examine Abraham Lincoln's diverse leadership abilities and how they can be applied to today's complex world. You'll discover why you should: * Seize the initiative and never relinquish it * Wage only one war at a time * Encourage risk-taking while providing job security * Avoid issuing orders and instead - request, imply, or make suggestions * Once in a while, let things slip, unbenowst-like.","Pippi Longstocking. The beloved story of a spunky young girl and her hilarious escapades. Tommy and his sister Annika have a new neighbor, and her name is Pippi Longstocking. She has crazy red pigtails, no parents to tell her what to do, a horse that lives on her porch, and a flair for the outrageous that seems to lead to one adventure after another!","Smoke and Mirrors: Short Fiction and Illusions. In the deft hands of Neil Gaiman, magic is no mere illusion... and anything is possible. In this, Gaiman's first book of short stories, his imagination and supreme artistry transform a mundane world into a place of terrible wonders -- a place where an old woman can purchase the Holy Grail at a thrift store, where assassins advertise their services in the Yellow Pages under ""Pest Control,"" and where a frightened young boy must barter for his life with a mean-spirited troll living beneath a bridge by the railroad tracks. Explore a new reality -- obscured by smoke and darkness, yet brilliantly tangible -- in this extraordinary collection of short works by a master prestidigitator. It will dazzle your senses, touch your heart, and haunt your dreams.","Murder at the Vicarage (Miss Marple #1). Murder at the Vicaragemarks the debut of Agatha Christie's unflappable and much beloved female detective, Miss Jane Marple. With her gift for sniffing out the malevolent side of human nature, Miss Marple is led on her first case to a crime scene at the local vicarage. Colonel Protheroe, the magistrate whom everyone in town hates, has been shot through the head. No one heard the shot. There are no leads. Yet, everyone surrounding the vicarage seems to have a reason to want the Colonel dead. It is a race against the clock as Miss Marple sets out on the twisted trail of the mysterious killer without so much as a bit of help from the local police.","La Cantatrice chauve / La Leçon. Qu'importe que la cantatrice soit chauve puisqu'elle n'existe pas ! Dans cette petite ""anti-piece"", premiere oeuvre dramatique de Ionesco, il n'est fait reference que deux fois a la cantatrice chauve, personnage dont on ne sait rien et qui n'apparait jamais. Il s'agit bien la d'un Nouveau Theatre, celui qui donne naissance a des pieces sans heros, sans sacro-sainte division en actes, sans action, sans intrigue, avec en guise de denouement la quasi-repetition du debut, et dont les traditionnelles retrouvailles sont remplacees par une parodie de reconnaissance d'une invraisemblance ahurissante. Les personnages, tout droit sortis d'un manuel de langue, ne s'expriment que par cliches, disent une chose pour aussitot affirmer son contraire, trouvent une jubilation idiote a employer proverbes et maximes tout en les pervertissant sans meme s'en apercevoir... Cependant, tres vite, le langage s'""autonomise"", se libere de toute contrainte, et l'on assiste avec plaisir au divorce du sens et du ver","We the Living. Ayn Rand said of her first novel, We the Living: ""It is as near to an autobiography as I will ever write. The plot is invented, the background is not....The specific events of Kira's life were not mine; her ideas, her convictions, her values, were and are."" First published in 1936, the theme of this classic novel is the struggle of the individual against the state. It portrays the impact of the Russian Revolution on three human beings who demand the right to live their own lives an pursue their own happiness. It tells of a young woman's passionate love, held like a fortress against the corrupting evil of a totalitarian state. We the Livingis not a story of politics, but of the men and women who have to struggle for existence behind the Red banners and slogans. It is a picture of what those slogans do to human beings. What happens to the defiant ones? what happens to those who succumb. Against a vivid panorama of political revolution and personal revolt, Ayn Rand shows what the theory o","Ancient Philosophy. Sir Anthony Kenny here tells the fascinating story of the birth of philosophy and its remarkable flourishing in the ancient Mediterranean world. This is the initial volume of a four-book set in which Kenny will unfold a magisterial new history of Western philosophy, the first major single-author history of philosophy to appear in decades. Ancient Philosophyspans over a thousand years and brings to life the great minds of the past, from Thales, Pythagoras, and Parmenides, to Socrates, Epictetus, Marcus Aurelius, and Augustine. The book's great virtue is that it is written by one of the world's leading authorities on the subject. Instead of an uncritical, straightforward recitation of known factsPlato and his cave of shadows, Aristotle's ethics, Augustine's City of Godwe see the major philosophers through the eyes of a man who has spent a lifetime contemplating their work. Thus we do not simply get an overview of Aristotle, for example, but a penetrating and insightful critique of his th",Favorite Tales of Sholom Aleichem.,"Ragtime. Ragtimeis set in America at the beginning of the 20th century. Its characters: three remarkable families whose lives become entwined with people whose names are Henry Ford, Emma Goldman, Harry Houdini, J.P. Morgan, Evelyn Nesbit, Sigmund Freud, and Emilio Zapata. It is a novel so original, so full of imagination and subtle pleasure, that to describe it further would only dilute the pure joy of reading. Turn to the first page. Begin. You will never have read anything like Ragtimebefore. Nothing quite like it has ever been written before.","No Name. 'Mr Vanstone's daughters are Nobody's Children'. Magdalen Vanstone and her sister Norah learn the true meaning of social stigma in Victorian England only after the traumatic discovery that their dearly loved parents, whose sudden deaths have left them orphans, were not married at the time of their birth. Disinherited by law and brutally ousted from Combe-Raven, the idyllic country estate which has been their peaceful home since childhood, the two young women are left to fend for themselves. While the submissive Norah follows a path of duty and hardship as a governess, her high-spirited and rebellious younger sister has made other decisions. Determined to regain her rightful inheritance at any cost, Magdalen uses her unconventional beauty and dramatic talent in recklessly pursuing her revenge. Aided by the audacious swindler Captain Wragge, she braves a series of trials leading up to the climactic test: can she trade herself in marriage to the man she loathes? Written in the early 1860s",The Works and Days/Theogony.,"The Brothers Karamazov. The Brothers Karamazovis a murder mystery, a courtroom drama, and an exploration of erotic rivalry in a series of triangular love affairs involving Karamazov and his three sons - the impulsive and sensual Dmitri; the coldly rational Ivan; and the healthy young novice Alyosha. Through the gripping events of their story, Dostoevsky portrays the social and spiritual strivings in what was both a golden age and a tragic turning point in Russian culture.",Toys Go Out: Being the Adventures of a Knowledgeable Stingray a Toughy Little Buffalo and Someone Called Plastic (Toys #1).,Posing for Portrait Photography: A Head-To-Toe Guide.,"Act of Treason (Mitch Rapp #9). The fallout from a horrific Washington explosion has just begun--and so has CIA superagent Mitch Rapp's hunt for a killer with a personal agenda--in this explosive thriller from #1 New York Times bestselling author Vince Flynn. In the final weeks of a fierce presidential campaign, a motorcade carrying candidate Josh Alexander is shattered by a car bomb. Soon after the attack, Alexander is carried to victory by a sympathy vote, but his assailants have not been found. When CIA director Irene Kennedy and Special Agent Skip McMahon receive damaging intelligence on Washington's most powerful players, they call on Mitch Rapp--the one man reckless enough to unravel a global network of contract killers on an explosive mission that leads back to the heart of our nation's capital...and the inner sanctum of the Oval Office.","The Five People You Meet in Heaven. From the author of Tuesdays with Morrie, a novel that explores the unexpected connections of our lives, and the idea that heaven is more than a place; it's an answer. From the author of the phenomenal #1 New York Times bestseller Tuesdays with Morrie, a novel that explores the unexpected connections of our lives, and the idea that heaven is more than a place; it's an answer. Eddie is a wounded war veteran, an old man who has lived, in his mind, an uninspired life. His job is fixing rides at a seaside amusement park. On his 83rd birthday, a tragic accident kills him as he tries to save a little girl from a falling cart. He awakes in the afterlife, where he learns that heaven is not a destination. It's a place where your life is explained to you by five people, some of whom you knew, others who may have been strangers. One by one, from childhood to soldier to old age, Eddie's five people revisit their connections to him on earth, illuminating the mysteries of his ""meaningless"" life, and",Poems From The Hobbit.,"The Sea of Monsters (Percy Jackson and the Olympians #2). Alternate Cover Edition. Percy Jackson's seventh-grade year has been surprisingly quiet. Not a single monster has set foot on his New York prep-school campus. But when an innocent game of dodgeball among Percy and his classmates turns into a death match against an ugly gang of cannibal giants, things get . . . well, ugly. And the unexpected arrival of Percy's friend Annabeth brings more bad news: the magical borders that protect Camp Half-Blood have been poisoned by a mysterious enemy, and unless a cure is found, the only safe haven for demigods will be destroyed. In this fresh, funny, and hugely anticipated follow up to The Lightning Thief, Percy and his friends must journey into the Sea of Monsters to save their beloved camp. But first, Percy will discover a stunning new secret about his family--one that makes him question whether being claimed as Poseidon's son is an honor or simply a cruel joke.",The Blood Wood (Earthdawn 6113).,"And Still I Rise. In this inspiring poem, Maya Angelou celebrates the courage of the human spirit over the harshest of obstacles. An ode to the power that resides in us all to overcome the most difficult circumstances, this poem is truly an inspiration and affirmation of the faith that restores and nourishes the soul. Entwined with the vivid paintings of Diego Rivera, the renowned Mexican artist, Angelou's words paint a portrait of the amazing human spirit, its quiet dignity, and pools of strength and courage. An ideal gift for a friend, lover, or family member, this special edition will be treasured by all who receive it.","The Ruined Map. Of all the great Japanese novelists, Kobe Abe was indubitably the most versatile. With The Ruined Map, he crafted a mesmerizing literary crime novel that combines the narrative suspense of Chandler with the psychological depth of Dostoevsky. Mr. Nemuro, a respected salesman, disappeared over half a year ago, but only now does his alluring yet alcoholic wife hire a private eye. The nameless detective has but two clues: a photo and a matchbook. With these he embarks upon an ever more puzzling pursuit that leads him into the depths of Tokyo's dangerous underworld, where he begins to lose the boundaries of his own identity. Surreal, fast-paced, and hauntingly dreamlike, Abe's masterly novel delves into the unknowable mysteries of the human mind. Translated from the Japanese by E. Dale Saunders.","Galileo's Daughter: A Historical Memoir of Science Faith and Love. Dramatically recolors the personality and accomplishment of a mythic figure whose seventeenth-century clash with Catholic doctrine continues to define the schism between science and religion. Inspired by a long fascination with Galileo, and by the remarkable surviving letters of Galileo's daughter, a cloistered nun, Dava Sobel has written a biography unlike any other of the man Albert Einstein called ""the father of modern physics--indeed of modern science altogether."" Galileo's Daughter also presents a stunning portrait of a person hitherto lost to history, described by her father as ""a woman of exquisite mind, singular goodness, and most tenderly attached to me."" The son of a musician, Galileo Gahlei (1564-1642) tried at first to enter a monastery before engaging the skills that made him the foremost scientist of his day. Though he never left Italy, his inventions and discoveries were heralded around the world. Most sensationally, his telescopes allowed him to reveal a new reality in","Silence. Beneath the light of the candle I am sitting with my hands on my knees, staring in front of me. And I keep turning over in my mind the thought that I am at the end of the earth, in a place which you do not know and which your whole lives through you will never visit. It is 1640 and Father Sebastian Rodrigues, an idealistic Jesuit priest, sets sail for Japan determined to help the brutally oppressed Christians there. He is also desperate to discover the truth about his former mentor, rumoured to have renounced his faith under torture. Rodrigues cannot believe the stories about a man he so revered, but as his journey takes him deeper into Japan and then into the hands of those who would crush his faith, he finds himself forced to make an impossible choice: whether to abandon his flock or his God. The recipient of the 1966 Tanizaki Prize, Silence is Shusaku Endo's most highly acclaimed work and has been called one of the twentieth century's finest novels. As empathetic as it is powerful,","The Girl With The Golden Eyes. It is in the Tuileries, just outside the Cafe des Feuillants, that Henri de Marsay first catches sight of the girl with the golden eyes and can almost believe in love. Haunted by her shimmery image, returning daily to the Tuileries for another glimpse of her dark beauty, he learns her name - Paquita Valdes - and discovers her address. But a fairy-tale princess has never been more inaccessibly locked in a tower as has Paquita in a mansion on the Rue Saint-Lazare. Vowing conquest, Henri de Marsay elaborately plots his seduction of the girl with the golden eyes, but with his sensual triumph comes the bitter revelation that he has a powerful rival for the love of Paquita - the Marquise de San-Real, his own half-sister. A cry of vengeance and the call of blood bring Balzac's taut exploration of the dark side of Parisian society in this novella from his trilogy, History of the Thirteen, to its unexpected if inevitable end.",Schmidt Delivered (Schmidt #2).,"Cold Mountain. Cold Mountainis a novel about a soldier's perilous journey back to his beloved near the Civil War's end. At once a love story & a harrowing account of one man's long walk home, Cold Mountain introduces a new talent in American literature. Based on local history & family stories passed down by Frazier's great-great-grandfather, Cold Mountainis the tale of a wounded Confederate soldier, Inman, who walks away from the ravages of the war & back home to his prewar sweetheart, Ada. His odyssey thru the devastated landscape of the soon-to-be-defeated South interweaves with Ada's struggle to revive her father's farm, with the help of an intrepid young drifter named Ruby. As their long-separated lives begin to converge at the close of the war, Inman & Ada confront the vastly transformed world they've been delivered. Frazier reveals insight into human relations with the land & the dangers of solitude. He also shares with the great 19th century novelists a keen observation of a society undergoing","Hello Cruel World: 101 Alternatives to Suicide for Teens Freaks and Other Outlaws. Celebrated transsexual trailblazer Kate Bornstein has, with more humor and spunk than any other, ushered us into a world of limitless possibility through a daring re-envisionment of the gender system as we know it. Here, Bornstein bravely and wittily shares personal and unorthodox methods of survival in an often cruel world. A one-of-a-kind guide to staying alive outside the box, Hello, Cruel Worldis a much-needed unconventional approach to life for those who want to stay on the edge, but alive. Hello, Cruel Worldfeatures a catalog of 101 alternatives to suicide that range from the playful (moisturize!), to the irreverent (shatter some family values), to the highly controversial. Designed to encourage readers to give themselves permission to unleash their hearts' harmless desires, the book has only one directive: ""Don't be mean."" It is this guiding principle that brings its reader on a self-validating journey, which forges wholly new paths toward a resounding decision to choose life. T","The Killing of Monday Brown. Sandra West Prowell's second Shamus Award-nominated mystery proves Phoebe Siegel is ready for readers of Sue Grafton's Kinsey Millhone and Sara Paretsky's V. I.Warshawski novels.Lauded by ""The New York Times Book Review,"" this sizzling mystery explores crime on an Indian reservation. The victim, Monday Brown, is a white man who pillaged the Native American culture for profit. The suspect is Matthew Wolf, a young Crow traditionalist who'd do anything to preserve his heritage. Investigator Phoebe Siegel, hired to clear Matthew's name, discovers the truth in the sacred mysteries of the Crow culture.","The Proud Highway: Saga of a Desperate Southern Gentleman 1955-1967. Here, for the first time, is the private and most intimate correspondence of one of America's most influential and incisive journalists--Hunter S. Thompson. In letters to a Who's Who of luminaries from Norman Mailer to Charles Kuralt, Tom Wolfe to Lyndon Johnson, William Styron to Joan Baez--not to mention his mother, the NRA, and a chain of newspaper editors--Thompson vividly catches the tenor of the times in 1960s America and channels it all through his own razor-sharp perspective. Passionate in their admiration, merciless in their scorn, and never anything less than fascinating, the dispatches of The Proud Highwayoffer an unprecedented and penetrating gaze into the evolution of the most outrageous raconteur/provocateur ever to assault a typewriter.","Planet of the Apes: Colony. A race of intelligent primates has made a distant world their home. Over the years their numbers have grown. And now, needing more room, the colony sends scouts into theunknown land beyond. But by venturing forward, the apes are encroaching upon hostile ground -- where creatures dwell that can rip an adult simian to pieces in less than an instant; monstrous reptilians whose incredible savagery isequaled only by their awesome brainpower. To venture into their midst is almost certain doom -- but to remain behind would be suicide. Because another foe is lurking in the shadows: the enemy called Man. And in the ruins of a crashed human starship a hideous melding of brain, flesh, and metal lives on -- waiting ... plotting ... refusing to die as long as a single ape draws breath on the planet.","Cursor's Fury (Codex Alera #3). The power-hungry High Lord of Kalare has launched a rebellion against the aging First Lord, Gaius Sextus, who with the loyal forces of Alera must fight beside the unlikeliest of allies-the equally contentious High Lord of Aquitaine. Meanwhile, young Tavi of Calderon joins a newly formed legion under an assumed name even as the ruthless Kalare unites with the Canim, bestial enemies of the realm whose vast numbers spell certain doom for Alera. When treachery from within destroys the army's command structure, Tavi finds himself leading an inexperienced, poorly equipped legion-the only force standing between the Canim horde and the war-torn realm.","Jonah's Gourd Vine. Jonah's Gourd Vine, Zora Neale Hurston'sfirst novel, originally published in 1934, tells the story of John Buddy Pearson, ""a living exultation"" of a young man who loves too many women for his own good. Lucy, his long-suffering wife, is his true love, but there's also Mehaley and Big 'Oman, as well as the scheming Hattie, who conjures hoodoo spells to ensure his attentions. Even after becoming the popular pastor of Zion Hope, where his sermons and prayers for cleansing rouse the congregation's fervor, John has to confess that though he is a preacher on Sundays, he is a ""natchel man"" the rest of the week. And so in this sympathetic portrait of a man and his community, Zora Neale Hurstonshows that faith, tolerance, and good intentions cannot resolve the tension between the spiritual and the physical. That she makes this age-old dilemma come so alive is a tribute to her understanding of the vagaries of human nature.",Pierre / Israel Potter / The Piazza Tales / The Confidence-Man / Uncollected Prose / Billy Budd.,Euripides: Iphigenia at Aulis (Companions to Greek & Roman Tragedy).,"The Sea. The author of ""The Untouchable"" (""contemporary fiction gets no better than this""--Patrick McGrath, ""The New York Times Book Review"") now gives us a luminous novel about love, loss, and the unpredictable power of memory. The narrator is Max Morden, a middle-aged Irishman who, soon after his wife's death, has gone back to the seaside town where he spent his summer holidays as a child--a retreat from the grief, anger, and numbness of his life without her. But it is also a return to the place where he met the Graces, the well-heeled vacationing family with whom he experienced the strange suddenness of both love and death for the first time. The seductive mother; the imperious father; the twins--Chloe, fiery and forthright, and Myles, silent and expressionless--in whose mysterious connection Max became profoundly entangled, each of them a part of the ""barely bearable raw immediacy"" of his childhood memories. Interwoven with this story are Morden's memories of his wife, Anna--of their life t","The Cat Who Walks Through Walls (The World As Myth). When a stranger attempting to deliver a cryptic message is shot dead at his table, Dr. Richard Ames is thrown headfirst into danger, intrigue, and other dimensions, where a plot to rescue a sentient computer could alter human history...","Why Are All The Black Kids Sitting Together in the Cafeteria?: A Psychologist Explains the Development of Racial Identity. The classic, bestselling book on the psychology of racism-now fully revised and updated Walk into any racially mixed high school and you will see Black, White, and Latino youth clustered in their own groups. Is this self-segregation a problem to address or a coping strategy? Beverly Daniel Tatum, a renowned authority on the psychology of racism, argues that straight talk about our racial identities is essential if we are serious about enabling communication across racial and ethnic divides. These topics have only become more urgent as the national conversation about race is increasingly acrimonious. This fully revised edition is essential reading for anyone seeking to understand the dynamics of race in America. ""An unusually sensitive work about the racial barriers that still divide us in so many areas of life.""-Jonathan Kozol",Diablo II Ultimate Strategy Guide.,"Alvin Journeyman (Tales of Alvin Maker #4). Alvin Miller, a gifted seventh son of a seventh son, utilizes his skills as a Maker to help create a brighter future for America, but his task is further challenged by his ancient enemy, the Unmaker, who plots to end Alvin's life.","The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1). Don't leave Earth without this hilarious international bestseller about the end of the world and the happy-go-lucky days that follow. Join the gruesome two-some of Arthur Dent and his friend, Ford Perfect, in their now-famous intergalactic journey through time and space.","The Real Trial of Oscar Wilde. Oscar Wilde had one of literary history's most explosive love affairs with Lord Alfred ""Bosie""Douglas. In 1895, Bosie's father, the Marquess of Queensberry, delivered a note to the Albemarle Club addressed to ""Oscar Wilde posing as sodomite."" With Bosie's encouragement, Wilde sued the Marquess for libel. He not only lost but he was tried twice for ""gross indecency"" and sent to prison with two years' hard labor.With this publication of the uncensored trial transcripts,readers can for the first time in more than a century hear Wilde at his most articulate and brilliant. The Real Trial of Oscar Wildedocuments an alarmingly swift fall from grace; it is also a supremely moving testament to the right to live, work, and love as one's heart dictates.","The Adventures of Tom Sawyer (Adventures of Tom and Huck #1). Who could forget the pranks, the adventures, the sheer fun of Tom Sawyer? It's something every child should experience and every child will love. From Tom's sly trickery with the whitewashed fence--when he cleverly manipulates everyone so they happily do his work for him--to his and Becky Thatcher's calamities in Bat Cave, the enjoyment just never ends. The illustrations for this series were created by Scott McKowen, who, with his wife Christina Poddubiuk, operates Punch & Judy Inc., a company specializing in design and illustration for theater and performing arts. Their projects often involve research into the visual aspects of historical settings and characters. Christina is a theater set and costume designer and contributed advice on the period clothing for the illustrations. Scott created these drawings in scratchboard an engraving medium which evokes the look of popular art from the period of these stories. Scratchboard is an illustration board with a specifically prepared surface","Make Four Million Dollars by Next Thursday!. In this sequel to ""Be a Perfect Person in Just Three Days!,"" Jason Nozzle, young, would-be millionaire, finds a copy of Dr. K. Pinkerton Silverfish's book ""Make Four Million Dollars by Next Thursday!"" and follows its recommendations carefully. ""This entertaining escapade will provoke chuckles in even the most reluctant readers."" -- ""Publishers Weekly."" An IRA-CBC Children's Choice.","The Demon Princes Volume Two: The Face The Book of Dreams. Jack Vance is undoubtedly one of the most gifted and versatile authors of science fiction today. The winner of a Hugo, a Nebula, and a World Fantasy Award, Vance lays claim to a career that spans more than five decades of critical acclaim and devoted readership. Tor Books has recognized his widespread audience and for years has brought classic Jack Vance novels back into print--most recently The Demon Princes, Volume One, and omnibus containing the first three books of Vance's beloved Demon Princes series. Tor now presents The Demon Princes, Volume Two,and omnibus containing the series' final two novels, The Face and The Book of Dreams. Kirth Gersen carries in his pocket a slip of paper with a list of five names written upon it--the names of five Demon Princes. The Demon Princes are a race of beings who disguise themselves as humans and delight in power and destruction. however, to Kirth they are merely murderers who killed his family and destroyed his home planet--and who deserves to","Battle Cry. Battle Cryis the riveting Marine epic by the bestselling author of such classics as Trinityand Exodus. Originally published in 1953, Leon Uris's Battle Cryis the raw and exciting story of men at war from a legendary American author. This is the story of enlisted men - Marines - at the beginning of World War II. They are a rough-and-ready tangle of guys from America's cities and farms and reservations. Led by a tough veteran sergeant, these soldiers band together to emerge as part of one of the most elite fighting forces in the world. With staggering realism and detail, we follow them into intense battles - Guadalcanal and Tarawa - and through exceptional moments of camaraderie and bravery. Battle Crydoes not extol the glories of war, but proves itself to be one of the greatest war stories of all time.","Refactoring: Improving the Design of Existing Code. As the application of object technology--particularly the Java programming language--has become commonplace, a new problem has emerged to confront the software development community. Significant numbers of poorly designed programs have been created by less-experienced developers, resulting in applications that are inefficient and hard to maintain and extend. Increasingly, software system professionals are discovering just how difficult it is to work with these inherited, non-optimal applications. For several years, expert-level object programmers have employed a growing collection of techniques to improve the structural integrity and performance of such existing software programs. Referred to as refactoring, these practices have remained in the domain of experts because no attempt has been made to transcribe the lore into a form that all developers could use... until now. In Refactoring: Improving the Design of Existing Software, renowned object technology mentor Martin Fowler breaks n",The Theban Plays (Everyman's Library #93).,"The Omega Cage (Matador #4). Sentenced for a crime he didn't commit, Dain Maro has been incarcerated in the Omega Cage--a prison located on an isolated planet and housing the scum of the galaxy. Escape was supposed to be impossible, but the Omega Cage has never had to contain the likes of Dain Maro before.","Reservation Blues. The life of Spokane Indian Thomas Builds-the-Fire irrevocably changes when blues legend Robert Johnson miraculously appears on his reservation and passes the misfit storyteller his enchanted guitar. Inspired by this gift, Thomas forms Coyote Springs, an all-Indian Catholic band who find themselves on a magical tour that leads from reservation bars to Seattle and New York--and deep within their own souls.",Sister Bernadette's Barking Dog: The Quirky History and Lost Art of Diagramming Sentences.,"American Caesar: Douglas MacArthur 1880-1964. MacArthur, the public figure, the private man, the soldier-hero whose mystery and appeal created a uniquely American legend, portrayed in a biography that will challenge the cherished myths of admirers and critics alike. Illustrations Preamble: Reveille First Call Ruffles & Flourishes (1880-1917) Charge (1917-1918) Call to Quarters (1919-1935) To the Colors (1935-1941) Retreat (1941-1942) The Green War (1942-1944) At High Port (1944-1945) Last Post (1945-1950) Sunset Gun (1950-1951) Recall (1951) Taps (1951-1964) Acknowledgments Notes Bibliography Copyright Acknowledgments Index","Songs of the Humpback Whale. Sometimes finding your own voice is a matter of listening to the heart.... Jodi Picoult's powerful novel portrays an emotionally charged marriage that changes course in one explosive moment....For years, Jane Jones has lived in the shadow of her husband, renowned San Diego oceanographer Oliver Jones. But during an escalating argument, Jane turns on him with an alarming volatility. In anger and fear, Jane leaves with their teenage daughter, Rebecca, for a cross-country odyssey charted by letters from her brother Joley, guiding them to his Massachusetts apple farm, where surprising self-discoveries await. Now Oliver, an expert at tracking humpback whales across vast oceans, will search for his wife across a continent -- and find a new way to see the world, his family, and himself: through her eyes.","Catching Alice. After losing a job, boyfriend, and apartment all within one kick-me-when-I'm-down week, Alice Lewis desperately needs a break. So when an old pal sweeps into London and offers her escape, Alice jumps at the chance--and onto the next plane to Los Angeles, the city of . . . yeah, right. L.A. turns out to be a little less ""angelic"" than the down-to-earth English girl anticipated. For one, there's the new nine-to-five: the unbelievably glamorous, frenzied chore of coddling (doing PR for) the stars--not to mention the bevy of gorgeous, stick-thin models who suddenly appear in Alice's orbit and the suntan/convertible lifestyle that taunts her pasty-white self (starting with her thighs). And just when she thinks her new life couldn't get any more surreal, Alice acquires that most American of accessories: her very own stalker. While the B-list actresses grumble how unfair it is that Alice gets a stalker and they don't, Alice tries to figure out who the mystery man leaving her poems and flowers","Father of Frankenstein. James Whale, the elegant director of such classic horror films as""Frankenstein"" and ""The Bride of Frankenstein, "" was found at his Los Angeles mansion in 1957, dead of unnatural causes. Christopher Bram, whose social insight and wit have earned him comparisons to Henry James and Gore Vidal, explores the mystery of Whale's last days in this evocative and suspenseful work of fiction. Home from the hospital after a minor stroke, Whale becomes convinced that his time is nearly over. Increasingly confused and disoriented, he is overwhelmed by images from the past: his working-class childhood in Britain, lavish Hollywood premieres in the 1930s attended with a nervous lover, meeting Garbo, parties with Elsa Manchester, Charles Laughton, and Elizabeth Taylor, nightmares from his own movies. Handsome ex-marine Clayton Boone, an angry loner who is Whale's gardener, becomes the focus of a fantastic plot Whale devises to provide his life with the dramatic ending it deserves. Bram juxtaposes the wo","Seduced by Moonlight (Merry Gentry #3). To some I am Meredith Gentry, P.I. To others I am Princess Merry, heir to the throne of Faerie. And there are those who whisper that I am both of these and more. My aunt, the Queen of Air and Darkness, no long distracted by her sadistic pastimes, now focusses unwaveringly on me. I spend each night with my immortal guards, but still no child has come of our decadent pleasures. But something IS happening to me. I appear to have awakened a force that's lain dormant for thousands of years and I haven't the damndest idea how or why... It all began with the chalice. I dreamed it, and there it was - cool and hard - when I awoke. My guards know this ancient relic well - its disappearance so many ages ago stripped them of their vital powers. And here it is with us now. My touch resonates with its force. A strange, dazzling magic now courses through my half-mortal half-Sidhe body. But while my guards cherish me for this unexpected gift, there are those who loathe me for it and would rather the U","The Glory and the Dream: A Narrative History of America 1932-72. This great time capsule of a book captures the abundant popular history of the United States from 1932 to 1972. It encompasses politics, military history, economics, the arts, science, fashion, fads, social change, sexual mores, communications, graffiti - everything and anything indigenous that can be captured in print. Masterfully compressing four crowded decades of our history, The Glory and the Dream relives the epic, significant, or just memorable events that befell the generation of Americans whose lives pivoted between the America before and the America after the Second World War. From the Great Depression through the second inauguration of Richard M. Nixon, Manchester breathes life into this great period of America's growth.","A Small Pinch of Weather. Anything is magically possible in these twelve short stories by gifted storyteller, Joan Aiken.",Legend of the Worst Boy in the World.,"Eugene Onegin. Eugene Onegin is the master work of the poet whom Russians regard as the fountainhead of their literature. Set in imperial Russia during the 1820s, Pushkin's novel in verse follows the emotions and destiny of three men - Onegin the bored fop, Lensky the minor elegiast, and a stylized Pushkin himself - and the fates and affections of three women - Tatyana the provincial beauty, her sister Olga, and Pushkin's mercurial Muse. Engaging, full of suspense, and varied in tone, it also portrays a large cast of other characters and offers the reader many literary, philosophical, and autobiographical digressions, often in a highly satirical vein. Eugene Onegin was Pushkin's own favourite work, and it shows him attempting to transform himself from romantic poet into realistic novelist. This new translation seeks to retain both the literal sense and the poetic music of the original, and capture the poem's spontaneity and wit. The introduction examines several ways of reading the novel, and the tex","Aspects of the Theory of Syntax. Beginning in the middle '50s & emanating largely from MIT, an approach was developed to linguistic theory & to the study of the structure of particular languages that diverges in many respects from modern linguistics. Altho this approach is connected to the traditional study of language, it differs enough in its general objectives & in specific conclusions about the sturcutre of language to warrant a name, ""transformational generative grammar"". Preface Methodological preliminaries Categories & relations in syntactic theory Deep structures & grammatical transformations Some residual problems Notes Bibliography Index","On the Bus: The Complete Guide to the Legendary Trip of Ken Kesey and the Merry Pranksters and the Birth of Counterculture. The fabled 1964 cross-country bus trip of Ken Kesey and the Merry Pranksters - on a psychedelically painted school bus crammed with amplifiers, cameras, costumes, and assorted contraband as cargo and Beat legend Neal Cassady at the wheelmarked the irreversible end of the ""Eisenhower Era, "" and set an American cultural revolution in motion. On the Bus is a celebration of the unforgettable exploits of the Merry Pranksters, immortalized in Tom Wolfe's bestselling book. In this engrossing popular history, the spirit of the era is captured in a remarkable living chronicle, combining analysis and history with colorful additional narrative by Kesey sidekick Ken Babbs. It features over 100 never-before-seen photos by Prankster photographer Ron Bevirt, Allen Ginsberg, and others, alongside candid and insightful interviews with participants and leading countercultural figures.","Lao Tzu: Tao Te Ching: A Book about the Way and the Power of the Way. Like , acclaimed author and poet Ursula K. Le Guin has attempted a nonliteral, poetic rendition of the Tao Te Ching. She brings to it a punctuated grace that can only have been hammered out during long trials of wordsmithing. The wisdom that she finds in the Tao Te Chingis primal, and her spare, undulating phrases speak volumes. By making the text her own, Le Guin avoids such questions as ""Is it accurate?"" By making it her own, she has made it for us--a new, uncarved block from which we are free to sculpt our own meaning.","God of Tarot (Tarot #1). Paul is a monk, which is better than a warrior on the planet Tarot, where religions are wielded like swords.",The New Whole Foods Encyclopedia: A Comprehensive Resource for Healthy Eating.,"Flap Your Wings. When a strange egg appears in their nest, Mr. and Mrs. Bird kindly take it upon themselves to raise the ""baby bird"" inside. But when the egg hatches, the Birds are in for a big surprise--""Junior"" is the oddest-looking baby bird they've ever seen--with big, long jawsfull of teeth and an appetite to match. In fact, he looks more like a baby alligatorthan a baby bird! Nevertheless, the devoted Birds run themselves ragged feeding Junior until he gets so big, he must leave the nest or it will collapse underneath him. But how can Junior fly without wings? To the delight of the Birds--and readers!--the dilemma is solved when Junior takes off from a branch overlooking a pond.","A Brief History of Time. In the ten years since its publication in 1988, Stephen Hawking's classic work has become a landmark volume in scientific writing, with more than nine million copies in forty languages sold worldwide. That edition was on the cutting edge of what was then known about the origins and nature of the universe. But the intervening years have seen extraordinary advances in the technology of observing both the micro- and the macrocosmic worlds. These observations have confirmed many of Professor Hawking's theoretical predictions in the first edition of his book, including the recent discoveries of the Cosmic Background Explorer satellite (COBE), which probed back in time to within 300,000 years of the universe's beginning and revealed wrinkles in the fabric of space-time that he had projected. Eager to bring to his original text the new knowledge revealed by these observations, as well as his own recent research, Professor Hawking has prepared a new introduction to the book, written an entirel","Desert Children. U.N. Special Ambassador Waris Dirie was born to a family of tribal nomads in Somalia. She told her story--enduring female circumcision, fleeing through the desert, and, improbably, becoming a top model--in her first book,Desert Flower.In Desert Dawn,she wrote about her return to Somalia and her work as a U.N. Special Ambassador against FGM (female genital mutilation). Her latest book recounts her investigations into the practice of FGM in Europe--it is estimated that as many as 500,000 women and girls have undergone FGM or are at risk. Here are the voices of women who have felt emboldened by Waris Dirie's courage.","Starship Troopers. Starship Troopers is a classic novel by one of science fictions greatest writers of all time and is now a Tri-Star movie. In one of Heinleins most controversial bestsellers, a recruit of the future goes through the toughest boot camp in the universe and into battle with the Terran Mobile Infantry against mankinds most frightening enemy.","You Can't Be Neutral on a Moving Train: A Personal History of Our Times. Howard Zinn, author of A People's History of the United States, tells his personal stories about more than thirty years of fighting for social change, from teaching at Spelman College to recent protests against war. A former bombardier in WWII, Zinn emerged in the civil rights movement as a powerful voice for justice. Although he's a fierce critic, he gives us reason to hope that by learning from history and engaging politically, we can make a difference in the world.","A Matter of Trust (Justice #0). Michael Lassiter hires J.T. Sloan, a security consultant, to protect her company. Sloan shares a painful past with her associate and friend Jason McBride. Sarah Martin, is a gentle practitioner of eastern medicine. Four very different people, each wounded by personal betrayal, find their lives inextricably linked.","Because I Remember Terror Father I Remember You. Because I Remember Terror, Father, I Remember Youdestroys our complacency about who among us can commit unspeakable atrocities, who is subjected to them, and who can stop them. From age four to eighteen, Sue William Silverman was repeatedly sexually abused by her father, an influential government official and successful banker. Through her eyes, we see an outwardly normal family built on a foundation of horrifying secrets that long went unreported, undetected, and unconfessed.","Hidden Agendas (Tom Clancy's Net Force #2). In the year 2010, computers are the new superpowers. Those who control them, control the world. To enforce the Net Laws, Congress creates the ultimate computer security agency within the FBI: the Net Force.A list of every U.S. spy in the Euro-Asian theater ... the movements of rival drug cartels ... Someone with access to classified information is posting it on the Internet --- and it's costing lives. Net Force Commander Alex Michaels is in the hot seat. Now, before a hostile Senate committee, he must justify the very existence of the Net Force. Meanwhile, a virus is unleashed that throws the federal financial systems into chaos. And the Net Force operatives must hunt the wily hacker through the twists and turns of cyberspace --- down a path that leads them dangerously close to home ...","The House That Jack Built. After Craig Bellman, a successful young New York lawyer, is horribly injured in a street mugging, he and his wife, Effie, retreat to the Hudson Valley to restore his health and save their relationship. When they discover a derelict old mansion, Valhalla, Craig becomes fascinated by it. He ignores Effie's misgivings and starts to make inquiries about buying it, undeterred by the expense and its history: it was built by legendary gambler and womanizer Jack Belias - and every owner since Belias has come to a tragic end. Even today, Valhalla echoes with its terrible past. Out of loyalty to her husband Effie tries to overcome her fears, but recruits a local spiritualist in an attempt to rid the house of its threatening vibrations. But death and destruction return to Valhalla, and Craig, obsessed by the house, becomes more of a stranger to Effie every day. It would appear that the spirit of Jack Belias is still with them...",Selected Poetry of Emily Dickinson.,The Altman Code (Covert-One #4).,La Vida Nueva.,"Dreamland (Dreamland #1). The beast isalive and prowling the high seas. As extremist Islamic pirates, armed and supported by a powerful Saudi terrorist, prey on civilian vessels in the Gulf of Aden, America aggressively answers with serious muscle -- a next-generation littoral warship with a full range of automated weapons systems that the enemy has dubbed ""Satan's Tail."" However, unforeseen technological problems combined with the suicidal tendencies of a fanatical foe mean support is needed from above -- and a pair of Dreamland's awesome Megafortresses and their Flighthawk escorts are dispatched to the war zone.But bitter professional rivalries threaten to damage, perhaps even destroy, the mission, as a vengeful opponent takes advantage of the disruption -- to strengthen his outlaw navy and set its sights horrifically high -- raising the stakes in a battle the U.S. and the world simply cannot afford to lose.",Maya Cosmogenesis 2012: The True Meaning of the Maya Calendar End-Date.,"Nathan the Wise Minna von Barnhelm and Other Plays and Writings. Lessing was a playwright, scholar, poet, archeologist, philosopher, and critic. His genius is evident in the works collected in this volume, which includes the comedy Minna von Barnhelm, the tragedy Emilia, Galotti, Nathan the Wise, The Jews (and related correspondence), Ernst and Falk: Conversations for the Freemasons, and selections from philosophical and theological writings.","Our Ancestors: The Cloven Viscount The Baron in the Trees The Non-Existent Knight. Contains 3 novellas originally published between 1952-1959: The Cloven Viscount, The Baron In the Trees, The Non-Existent Knight.","Chemistry: The Central Science. This text offers students an integrated educational solution to the challenges of the chemistry course with an expanded media programme that works in concert with the text, helping with problem solving, visualization and applications.",Suddenly Daddy (Suddenly #1).,"Half Asleep in Frog Pajamas. A paperback original, which describes a bizarre weekend through the eyes of a young broker who has just experienced a stockmarket crash. From the author of EVEN COWGIRLS GET THE BLUES.","Romeo and Juliet. In Romeo and Juliet, Shakespeare creates a world of violence and generational conflict in which two young people fall in love and die because of that love. The story is rather extraordinary in that the normal problems faced by young lovers are here so very large. It is not simply that the families of Romeo and Juliet disapprove of the lover's affection for each other; rather, the Montagues and the Capulets are on opposite sides in a blood feud and are trying to kill each other on the streets of Verona. Every time a member of one of the two families dies in the fight, his relatives demand the blood of his killer. Because of the feud, if Romeo is discovered with Juliet by her family, he will be killed. Once Romeo is banished, the only way that Juliet can avoid being married to someone else is to take a potion that apparently kills her, so that she is burried with the bodies of her slain relatives. In this violent, death-filled world, the movement of the story from love at first sight to","Persuasive Writing: Mini-Lessons Strategies Activities. This complete resource is jam-packed with engaging mini-lessons, strategies, and activities. Students will learn how to identify persuasive words, analyze ads and commercials, write and give speeches, and much more.","The Wife (Kristin Lavransdatter #2). Original 3 Volumes: Kransen ('20), Husfrue ('21) & Korset ('22). In Kristin Lavransdatter(1920-22), Sigrid Undset interweaves political, social & religious history with the daily aspects of family life to create a colorful, richly detailed tapestry of Norway during the 14th-century. The trilogy is more than a journey into the past. Undset's own life, her familiarity with sagas, folklore & a wide range of medieval literature, her experiences as a daughter, wife & mother, & her deep religious faith profoundly influenced her writing. Her grasp of the connections between past & present & of human nature itself, combined with the extraordinary quality of her writing, sets her works far above the historical novel genre. This new translation by Tina Nunnally, the 1st English version since Charles Archer's translation in the 1920s, captures her strengths as a stylist. Nunnally, an award-winning translator, retains the natural dialog & lyrical flow of the original Norwegian, with its echoes of","Blame It on Paris. Can an insecure American woman find happiness with a sexy Parisian waiter--- even if she doesn't like the French? Laura has spent most of her adult life avoiding serious relationships, flitting around the world, and keeping her romantic expectations comfortably low. The last thing she wants is to have her globe-trotting ways curtailed by a messy emotional entanglement. As far as she's concerned, chocolate is just as satisfying as true love--and a lot less complicated. So how, in the name of all that is romantic, has she managed to get involved with a dangerously charming Frenchman named Sebastien? And only weeksbefore she's scheduled to leave Paris for good? Everyone knows that Frenchmen are chain-smoking, manic-depressive, faithless, male chauvinistic, perfectionist snobs. What's worse, they live in France. The cultural differences alone are enough to kill any relationship, even if Laura wanted one. She's from small-town Georgia. He's a sophisticated Parisian. They go together like gr","Gerontius. Gerontius is the story of a real voyage in the life of Sir Edward Elgar, the celebrated composer of the quintessentially English tune 'Land of Hope and Glory'. The cruise up the Amazon is a holiday for the disillusioned music-maker. In telling the story of his journey, Hamilton-Paterson explores the waning of creative genius, post-war disenchantment and the effects of the changing times on an artist imprisoned in his own immense reputation.","Sorcery Rising (Fool's Gold #1). With this thrilling fantasy debut, Jude Fisher has created nothing less than an epic masterpiece. Filled with magic and magical quests, war and deception, sex and romance, and painted on a canvas rich with different fantastic cultures and exotic landscapes, and with one of the most dynamic and charismatic heroines to ever grace the pages of a fantasy novel, Sorcery Rising is a true blockbuster.",Nos rêves de Castelbay.,"Betty Friedan and the Making of ""The Feminine Mystique"": The American Left the Cold War and Modern Feminism.","Born to Be Wild. Dear Reader: Get yourself ready for Mary Lisa Beverly--a soap-opera phenom who's just won her third Daytime Emmy for her role as Sunday Cavendish on Born to Be Wild. She's fun and lovable and has lots of crazy friends, most of whom hang out at her house in the Colony, the famous gated community in Malibu. Unfortunately, there is one bad thing to poleax her champagne life--someone is trying to kill her. You'll meet Mary Lisa's family in Goddard Bay, Oregon. She's blessed with her father, cursed with her mother, and betwixt and between with her two nutzoid sisters. And how about guys? There aren't any hotties in L.A. of interest to Mary Lisa, but in Goddard Bay--there are District Attorney John Goddard and Chief of Police Jack Wolf. And guess what? Even in the boondocks, bad stuff can happen. Mary Lisa's best friends, Lou Lou Bollinger_and Elizabeth Fargas, become embroiled in the baffling attempts on Mary Lisa's life in L.A., with unexpected results. I hope you laugh a lot with Born to","D is for Dahl: A gloriumptious A-Z guide to the world of Roald Dahl. Did you know that Roald Dahl loved chocolate, but never ate spaghetti? Or that he was a terrible speller? Or that he had four sisters? D is for Dahl is an A to Z collection of facts, trivia, and zany details that bring Roald Dahl and his memorable characters to life. Filled with Quentin Blake's illustrations plus black and white photos, each spread is exploding with information about the creator of Willie Wonka, James, and Matilda; from his family tree to the exact type of pencil he used to write his stories. Perfect for devoted fans and Dahl newcomers alike, this is a glorimptious guide to the world of Roald Dahl. Roald Dahl (1916-1990) wrote many beloved and award-winning books for children, including Charlie and the Chocolate Factory, James and the Giant Peach, and The Witches.","Survival in Auschwitz. In 1943, Primo Levi, a twenty-five-year-old chemist and ""Italian citizen of Jewish race,"" was arrested by Italian fascists and deported from his native Turin to Auschwitz. Survival in Auschwitz is Levi's classic account of his ten months in the German death camp, a harrowing story of systematic cruelty and miraculous endurance. Remarkable for its simplicity, restraint, compassion, and even wit, Survival in Auschwitz remains a lasting testament to the indestructibility of the human spirit.","Discovering Great Artists: Hands-On Art for Children in the Styles of the Great Masters. Featuring more than 150 activities, this guide teaches the styles, works, and techniques of the great masters--Van Gogh, Michelangelo, Rembrandt, and more--through innovative, hands-on, open-ended activities for children Kindergarten through Middle School (ages 6 to 13).","The Age of Grief. The luminous novella and stories in The Age of Griefexplore the vicissitudes of love, friendship, and marriage with all the compassion and insight that have come to be expected from Jane Smiley, the Pulitzer Prize--winning author of A Thousand Acres. In ""The Pleasure of Her Company,"" a lonely, single woman befriends the married couple next door, hoping to learn the secret of their happiness. In ""Long Distance,"" a man finds himself relieved of the obligation to continue an affair that is no longer compelling to him, only to be waylaid by the guilt he feels at his easy escape. And in the incandescently wise and moving title novella, a dentist, aware that his wife has fallen in love with someone else, must comfort her when she is spurned, while maintaining the secret of his own complicated sorrow. Beautifully written, with a wry intelligence and a lively comic touch, The Age of Grief captures moments of great intimacy with grace, clarity, and indelible emotional power.","Twelfth Night: Or What You Will. Penny Gay has written a new Introduction to this updated edition of Shakespeare's popular comedy. She stresses the play's theatricality, its elaborate linguistic games and its complex use of Ovidian myths. In addition, Gay analyzes its delicate balancing of romance and realism and exploration of gender, sexuality and identity. First Edition Hb (1985): 0-521-22752-6 First Edition Pb (1985): 0-521-29633-1","The Heart of a Leader. INFLUENCE IS AN ART!

Millions of people have improved their leadership style and ""people skills"" after reading Ken Blanchard's best-selling book The One-Minute Manager.

Now, Blanchard helps us discover the art of influence through the greatest life and leadership lessons he's learned in his rich career as an educator and business leader. The Heart of a Leader offers Blanchard's insight and wisdom on choosing values, aiming for excellence, maintaining integrity, finding the courage to change, helping others reach their potential, and more. With The Heart of a Leader you'll master key attitudes and actions to impact the lives of those around you.

Influence is an art - and it begins with the heart of a leader. It's time to let your heart soar!","The Beginning: The Cove / The Maze (FBI Thriller #1-2). The Coveand The Maze, the first two thrillers in the FBI series, for the first time together in one volume. In these exciting novels of intrigue and suspense, readers are introduced to Special Agents Dillon Savich and Lacey Sherlock-and they'll watch the sparks fly as the agents' relationship heats up amid cases that could destroy everything they hold dear. The Cove-In this fast-paced page-turner, the daughter of a murdered high-powered lawyer seeks sanctuary in a quaint little town, only to learn she can't escape her past-or FBI Special Agent Dillon Savich. The Maze-Full of twists and turns, this cliffhanger teams Savich with new agent Lacey Sherlock in a case that leads them back to the murder of Sherlock's sister seven years ago-and puts both of their lives on the line.","Eye Contact (Mark Manning Mystery #2). Reviews for Michael Craft's Mark Manning series have been unanimously enthusiastic, full of praise for Craft's tightly-wound and intriguing mystery plots, as well as his sensitive, insightful portrayal of a man coming to terms with his sexuality. Kensington will re-release ""Eye Contact"", as well as Flight Dreams (5/00) and Body Language (7/00), so that the entire Mark Manning series will be available as it continues to be published by St. Martin's Press.""Eye Contact"" is a fiercely unpredictable, adrenaline-rushed story of murder, erotic illusion and a devastating crime that reveals the mysteries of the human heart. It begins as a simple assignment for Chicago Journal reporter Mark Manning. He's been hired to replace colleague Cliff Nolan on a top story: renowned astrophysicist Pavo Zarnik claims to have discovered a tenth planet. To the skeptical reporter, there is no story because there is no proof. But soon, Manning makes some startling discoveries. Nolan's body is found with a bulle","Stiff Upper Lip Jeeves (Jeeves #13). Bertie Wooster vows that nothing will induce him to return to Totleigh Towers, lair of former magistrate Sir Watkyn Bassett. Apart from Sir Watkyn himself, the place is infested with his ghastly daughter Madeline and her admirer, would-be dictator Roderick Spode. But when his old friend 'Stinker' Pinker asks for Bertie's help, there is nothing for it but to buckle down and go there. His subsequent adventures involve a black statuette, a Brazilian explorer with a healthy appetite for whisky-and-soda, an angry policeman, and all the horrors of a school treat. It takes Jeeves, posing as Chief Inspector Witherspoon of the Yard, to sort out the mess and retrieve his employer from the soup.","Travels of Marco Polo. His journey through the East began in 1271--when, still a teenager, he set out of Venice and found himself traversing the most exotic countries. His acceptance into the court of the great emperor Kublai Khan, and his service to the vast and dazzling Mongol empire, led him to places as far away as Tibet and Burma, lands rich with gems and gold and silk, but virtually unknown to Europeans. Later, as a prisoner of war, Marco Polo would record the details of his remarkable travels across harsh deserts, great mountain ranges, and dangerous seas, as well as of his encounters with beasts and birds, plants and people. His amazing chronicle is both fascinating and awe-inspiring--and still serves as the most vivid depiction of the mysterious East in the Middle Ages. Edited and with an Introduction by Milton Rugoff and an Afterword by Howard Mittelmark","Seventeen and In-Between. Another story about Barthe DeClements's bestselling heroine, Elsie Edwards. In Seventeen and In-Between, Elsie has two guys who want her--and one tough choice to make!","Main Street. With Commentary by E. M. Forster, Dorothy Parker, H. L. Mencken, Lewis Mumford, Rebecca West, Sherwood Anderson, Malcolm Cowley, Alfred Kazin, Constance Rourke, and Mark Schorer. Main Street, the story of an idealistic young woman's attempts to reform her small town, brought Lewis immediate acclaim when it was published in 1920. It remains one of the essential texts of the American scene. Lewis Mumford observed: ""In Main Streetan American had at last written of our life with something of the intellectual rigor and critical detachment that had seemed so cruel and unjustified [in Charles Dickens and Matthew Arnold]. Young people had grown up in this environment, suffocated, stultified, helpless, but unable to find any reason for their spiritual discomfort. Mr. Lewis released them."" Sinclair Lewis (1885-1951), was born in Sauk Centre, Minnesota and graduated from Yale in 1907. In 1930 he became the first American recipient of the Nobel Prize in Literature. Main Street(1920) was his first","Homegrown Democrat: A Few Plain Thoughts from the Heart of America. In this thoughtful, deeply personal work, one of the nation's best-loved voices takes the plunge into politics and comes up with a book that has had all of America talking. Here, with great heart, supple wit, and a dash of anger, Garrison Keillor describes the simple democratic values-the Golden Rule, the obligation to defend the weak against the powerful, and others- that define his hard-working Midwestern neighbors and that today's Republicans seem determined to subvert. A reminiscence, a political tract, and a humorous meditation, Homegrown Democratis an entertaining, refreshing addition to today's rancorous political debate. * A New York Timesbestseller * Updated and revised with a new introduction for the 2006 midterm elections * A Featured Alternate Selection of the Book-of-the-Month Club","Nightfall. Cassidy Roarke is in love with Mr. Wrong. His name is Richard Tiernan. He is deadly handsome, darkly brilliant, and devastatingly attractive to women. He has been convicted of killing his wife, and his children have disappeared. Now he wants to make Cassidy the latest victim of his powers of seduction and secret agenda. Cassidy knows all this. But still she chooses to surrender her heart and soul to a lover whose reasons for wanting her are as mysterious as the violent act that branded his a murderer. Cassidy is his now, to do with what he wishes...as he leads her through a labyrinth of desire that is her only path to the terrifying truth...","Mercy Watson: Princess in Disguise. When the Watsons decide to zip their porcine wonder into a formfitting princess dress for Halloween -- complete with tiara -- they are certain that Mercy will be beautiful beyond compare. Mercy is equally certain she likes the sound of trick-or-TREATING and can picture those piles of buttered toast already. As for the Lincoln Sisters next door, how could they know that their cat would get into the act and lead them all on a Halloween ""parade"" of hysterical proportions?","Beyond Seduction (Beyond Duet #2). To avoid marriage, Merry Vance has concocted a sinfully scandalous scheme: to pose for Nicolas Craven, London's most sought-after artist. No man in his right mind would marry a woman who posed nude for this notorious rogue.But Nicolas has his own plans for the fiesty young woman. And Merry has no idea how hot it can get in an artist's studio.","The Rough Guide to Cuba 3. This Rough Guide is the most up-to-date, full-length guide to one of the Caribbean's most compelling destinations. The authors' twenty-four ""things not to miss"" present a selective taste of the country's highlights; fine colonial buildings, stunning scenery, outdoor activities and cultural entertainment. The guide is full of informed descriptions and accurate listings of the best bars, restaurants and music venues to be seen at, from the lively city of Havana to the seaside resorts of Cayo Coco and Guardalavaca. Each listing is pinpointed on clear, easy-to-use maps and plans. There is well-written background on the country's turbulent history and detailed essays on Cuban sport, music, and wildlife.",The 5 Love Languages / The 5 Love Languages Journal.,The Halloween Activity Book: Creepy Crawly Hairy Scary Things to Do.,"Lipstick Jungle. The new novel that fans of the bestselling author have been waiting for, about three sexy, powerful career women who will do anything to stay at the top of their fields Victory Ford is the darling of the fashion world. Single, attractive, and iconoclastic, she has worked for years to create her own signature line. As Victory struggles to keep her company afloat, she learns crucial lessons about what she really wants in a relationship. Nico O'Neilly is the glamorous, brilliant editor of Bonfire Magazine--the pop-culture bible for fashion, show business, and politics. Considered one of the most powerful women in publishing, she seems to have it all. But in a mid-life crisis, she suddenly realizes this isn't enough. Wendy Healy's chutzpah has propelled her to the very top of the cut-throat movie industry. When it becomes clear that a competitor is trying to oust her, something has to give--and Wendy must decide between her career and her marriage. In Lipstick Jungle, Bushnell once again d","The Daring Young Man on the Flying Trapeze and Other Stories. A timeless selection of brilliant short stories that won William Saroyan a position among the foremost, most widely popular writers of America when it first appeared in 1934.With the greatest of ease William Saroyan flew across the literary skies in 1934 with the publication of The Daring Young Man on the Flying Trapeze and Other Stories. One of the first American writers to describe the immigrant experience in the U.S., Saroyan created characters who were Armenians, Jews, Chinese, Poles, Africans, and the Irish. The title story touchingly portrays the thoughts of a very young writer, dying of starvation. All of the tales were written during the great depression and reflect, through pathos and humor, the mood of the nation in one of its greatest times of want.","Casino Royale (James Bond #1). Introducing James Bond: charming, sophisticated, handsome, chillingly ruthless and licensed to kill. This, the first of Ian Fleming's tales of secret agent 007, finds Bond on a mission to neutralize a lethal, high-rolling Russian operative called simply ""le Chiffre"" -- by ruining him at the Baccarat table and forcing his Soviet spymasters to ""retire"" him. It seems that lady luck is taken with 007 -- le Chiffre has hit a losing streak. But some people just refuse to play by the rules, and Bond's attraction to a beautiful female agent leads him to disaster and an unexpected savior...",Emma.,"Short Cuts: Selected Stories. The nine stories and one poem collected in this volume formed the basis for the astonishingly original film ""Short Cuts"" directed by Robert Altman. Collected altogether in this volume, these stories form a searing and indelible portrait of American innocence and loss. From the collections Will You Please Be Quiet, Please?, Where I'm Calling From, What We Talk About When We Talk About Love, and A New Path to the Waterfall; including an introduction by Robert Altman. With deadpan humor and enormous tenderness, this is the work of ""one of the true contemporary masters"" (The New York Review of Books). From the eBook edition.","Zaat. This unusual and much lauded novel tells the story of the life of an Egyptian woman the eponymous Zaat during the regimes of three Egyptian presidents: Abdel Nasser, Sadat, and Mubarak. Imbued with an Egyptian sense of humor and deeply rooted in the culture and politics of the modern period, the novel takes a humorous but often black look at the changes that have occurred in Egypt over the past few decades. Zaat's life experiences and relationships are set against economic and social upheavals in a style that is both sophisticated and bawdy, highly ironic and often extremely poignant. Zaat's story is interspersed and illustrated with extracts from newspapers of the day headlines, articles, captions, death notices, advertisements reflecting events and incidents contemporary with her life. Beautifully put together with bitter and cutting irony, they tell of corruption, financial scandals, torture, foreign debt, and social problems. The heroine epitomizes the hopes, dreams, and ambitions",Time Twisters.,Cold Counsel: Women in Old Norse Literature and Myth.,The Pizza Monster (Olivia Sharp Agent for Secrets #1).,The Communist Manifesto and Other Writings.,"Tiger Prince. Lost in Paradise, they began a fantasy affair. Caren Blakemore was a woman in need of a vacation. Running away from a painful divorce and her high-pressure job in Washington, D.C., she headed south--to sun, sand and relaxation. Derek Allen was a man trying to escape the scandal-hungry press. He found the perfect hideaway--complete with the woman of his dreams. Throughout Jamaica days and nights, they shared half-truths and careless passions... But then it ended, and Caren learned the price she would pay. As the notorious Tiger Prince, Derek's every move created headlines, and his association with Caren had just incited international havoc. Heading for public disgrace, she was left with only one way out...","The Complete Maus. Combined for the first time here are Maus I: A Survivor's Tale and Maus II - the complete story of Vladek Spiegelman and his wife, living and surviving in Hitler's Europe. By addressing the horror of the Holocaust through cartoons, the author captures the everyday reality of fear and is able to explore the guilt, relief and extraordinary sensation of survival - and how the children of survivors are in their own way affected by the trials of their parents. A contemporary classic of immeasurable significance.","Island. In Island, his last novel, Huxley transports us to a Pacific island where, for 120 years, an ideal society has flourished. Inevitably, this island of bliss attracts the envy and enmity of the surrounding world. A conspiracy is underway to take over Pala, and events begin to move when an agent of the conspirators, a newspaperman named Faranby, is shipwrecked there. What Faranby doesn't expect is how his time with the people of Pala will revolutionize all his values and--to his amazement--give him hope.","The King of Attolia (The Queen's Thief #3). By scheming and theft, the Thief of Eddis has become King of Attolia. Eugenides wanted the queen, not the crown, but he finds himself trapped in a web of his own making. Then he drags a naive young guard into the center of the political maelstrom. Poor Costis knows he is the victim of the king's caprice, but his contempt for Eugenides slowly turns to grudging respect. Though struggling against his fate, the newly crowned king is much more than he appears. Soon the corrupt Attolian court will learn that its subtle and dangerous intrigue is no match for Eugenides.","A Cavern of Black Ice (Sword of Shadows #1). HIGH ADVENTURE ON THE SWORD EDGE OF DESTINY A Cavern of Black Ice is the first book in J.V. Jones's Sword of Shadow series As a newborn Ash March was abandoned--left for dead at the foot of a frozen mountain. Found and raised by the Penthero Iss, the mighty Surlord of Spire Vanis, she has always known she is different. Terrible dreams plague her and sometimes in the darkness she hears dread voices from another world. Iss watches her as she grows to womanhood, eager to discover what powers his ward might possess. As his interest quickens, he sends his living blade, Marafice Eye, to guard her night and day. Raif Sevrance, a young man of Clan Blackhail, also knows he is different, with uncanny abilities that distance him from the clan. But when he and his brother survive an ambush that plunges the entire Northern Territories into war, he yet seeks justice for his own . . . even if means he must forsake clan and kin. Ash and Raif must learn to master their powers and accept their joint fat","Ideas Have Consequences. In what has become a classic work, Richard M. Weaver unsparingly diagnoses the ills of our age and offers a realistic remedy. He asserts that the world is intelligible, and that man is free. The catastrophes of our age are the product not of necessity but of unintelligent choice. A cure, he submits, is possible. It lies in the right use of man's reason, in the renewed acceptance of an absolute reality, and in the recognition that ideas--like actions--have consequences.","Jurassic Park (Jurassic Park #1). En esta espectacular novela, los dinosaurios vuelven a conquistar la Tierra. En una isla remota, un grupo de hombres y mujeres emprende una carrera contra el tiempo para evitar un desastre mundial provocado por la desmedida ambicion de comercializar la ingenieria genetica. Pero todos los esfuerzos resultaran vanos cuando el inescrupuloso proyecto quede fuera de control y el mundo a merced de unas bestias monstruosas... Parque jurasico, la novela mas celebre de Michael Crichton y una de las mas leidas en los ultimos anos, fue adaptada al cine por Steven Spielberg en una pelicula que se convirtio en el gran acontecimiento cinematografico de 1993 y en el origen del fenomeno de masas llamado <>.","Magician (The Riftwar Saga #1-2). At Crydee, a frontier outpost in the tranquil Kingdom of the Isles, an orphan boy, Pug, is apprenticed to a master magician--and the destinies of two worlds are changed forever. Suddenly the peace of the Kingdom is destroyed as mysterious alien invaders swarm the land. Pug is swept up into the conflict but for him and his warrior friend, Tomas, an odyssey into the unknown has only just begun. Tomas will inherit a legacy of savage power from an ancient civilization. Pug's destiny is to lead him through a rift in the fabric of space and time to the mastery of the unimaginable powers of a strange new magic. This revised edition was prepared to celebrate the tenth anniversary of its publication, and incorporates text omitted from the original edition.",JoJo's Bizarre Adventure Vol. 8 (Stardust Crusaders #8).,"Embrace. Embrace is the story of the awakening of Karl De Man, a thirteen-year-old student at the Berg, an exclusive academy for boys in South Africa in the 1970s. The events of Karl's school life are interwoven with memories from his childhood and first years at the Berg, as he falls in love with both his best friend and his choirmaster.","The Ship Avenged. It's ten years later, and Joat, the eleven year old techno-demon from ""The Ship Avenged,"" is an adult herself, and by hook, crook, and blackmail (with an assist from Rand, her very own Artificial Intelligence), she's become one of the youngest commercial ship owners in human space. Using the good ship WYAL (for While You Ain't Looking) for various motley ""transport"" jobs, she has quickly gained a reputation as a trustworthy courier with a flexible approach to the rules. Which is why Centrals Worlds Security haas recruited Joat and the WYAL to determine the present whereabouts of the Kolnari space raiders, with whom Joat has an old score to settle. But Belazair of the Kolnari has his own plans for revenge through an incurable and highly infectious disease that quickly destroys the higher brain functions, leaving the body a mindless husk. Belazair needs to find a carrier ship to spread the infection - and the carrier he has hired is Joat, who is completely unaware that she is receiving a","All the Names. Senhor Jose is a low-grade clerk in the city's Central Registry, where the living and the dead share the same shelf space. A middle-aged bachelor, he has no interest in anything beyond the certificates of birth, marriage, divorce, and death that are his daily routine. But one day, when he comes across the records of an anonymous young woman, something happens to him. Obsessed, Senhor Jose sets off to follow the thread that may lead him to the woman-but as he gets closer, he discovers more about her, and about himself, than he would ever have wished. The loneliness of people's lives, the effects of chance, the discovery of love-all coalesce in this extraordinary novel that displays the power and art of Jose Saramago in brilliant form.","Jennifer Government. In Max Barry's twisted, hilarious and terrifying vision of the near future, the world is run by giant corporations and employees take the last names of the companies they work for. It's a globalised, ultra-capitalist free market paradise! Hack Nike is a lowly merchandising officer who's not very good at negotiating his salary. So when John Nike and John Nike, executives from the promised land of Marketing, offer him a contract, he signs without reading it. Unfortunately, Hack's new contract involves shooting teenagers to build up street cred for Nike's new line of $2,500 trainers. Hack goes to the police - but they assume that he's asking for a subcontracting deal and lease the assassination to the more experienced NRA. Enter Jennifer Government, a tough-talking agent with a barcode tattoo under her eye and a personal problem with John Nike (the boss of the other John Nike). And a gun. Hack is about to find out what it really means to mess with market forces.","On the Road. On The Roadswings to the rhythms of 1950s underground America, jazz, sex, generosity, chill dawns and drugs, with Sal Paradise and his hero Dean Moriarty, traveller and mystic, the living epitome of Beat. Now recognized as a modern classic, Kerouac's American Dream is nearer that of Walt Whitman than F. Scott Fitzgerald's, and the narrative goes racing towards the sunset with unforgettable exuberance, poignancy and passion.","A Harlot High and Low. Finance, fashionable society, and the intrigues of the underworld and the police system form the heart of this powerful novel, which introduces the satanic genius Vautrin, one of the greatest villains in world literature.","Las aventuras de Sherlock Holmes. Los relatos que se incluyen en esta edicion pertenecen a EL REGRESO DE SHERLOCK HOLMES (1904) y fueron escritos despues de que Conan Doyle se viera obligado a resucitar a su personaje por el exito obtenido. Las aventuras del detective y de su ayudante estan en la linea de los relatos cortos propios para ser publicados en la prensa y leidos rapidamente, por lo que el estilo queda en segundo lugar. En ellos puede observarse las caracteristicas del personaje (inteligencia, capacidad de deduccion, ironia) y tambien los rasgos tipicos de la narracion policiaca: enigma a resolver por el detective-protagonista tras la observacion de los detalles aparentemente irrelevantes.","Arrowsmith. Originally published in 1925, after three years of anticipation, the book follows the life of Martin Arrowsmith, a rather ordinary fellow who gets his first taste of medicine at 14 as an assistant to the drunken physician in his home town. It is Leora Tozer who makes Martin's life extraordinary. With vitality and love, she urges him beyond the confines of the mundane to risk answering his true calling as a scientist and researcher. Not even her tragic death can extinguish her spirit or her impact on Martin's life. After years of work as a small town doctor and a research scientist, Arrowsmithheads for the West Indies with a serum to halt an epidemic. A tragic turn of events forces him to come to terms with his career and his personal life. As the son and grandson of physicians, Sinclair Lewis had a store of experiences and imparted knowledge to draw upon for Arrowsmith.",Death Ship of Dartmouth (Knights Templar #21).,"The Dream and the Underworld. In a deepening of the thinking begun in The Myth of Analysisand Re-Visioning Psychology, James Hillman develops the first new view of dreams since Freud and Jung.","Star Wars: The New Essential Chronology. At last, it's the ultimate history of the spectacular Star Wars saga, expanded, lavishly illustrated, and in full color for the first time. With the completion of Episodes I, II, and III, the epic story that's captivated millions can now be told in its entirety, from the dramatic adventures of the Knights of the Old Republic and the deadly Clone Wars to the birth of the Empire, from the destruction of the Death Star, to the birth of the New Jedi Order. Beautifully illustrated by Mark Chiarello, Tommy Lee Edwards, and John Van Fleet, Star Wars: The New Essential Chronology offers the comprehensive and official chronicle of that extraordinary galaxy so far, far away. Herein you'll find * the climactic events from all epochs of Star Wars-those explosive turning points in the shaping of the galaxy * a gripping account of the controversial Clone Wars-the treachery that fueled them and their terrifying aftermath * profiles of key players in the history of the Star Wars galaxy, along with all","Moonraker (James Bond #3). Moonraker, Britain's new ICBM-based national defense system, is ready for testing, but something's not quite right. At M's request, Bond begins his investigation with Sir Hugo Drax, the leading card shark at M's club, who is also the head of the Moonraker project. But once Bond delves deeper into the goings-on at the Moonraker base, he discovers that both the project and its leader are something other than they appear to be.",Cliffs Notes on Woolf's Mrs. Dalloway.,The Enemy (Jack Reacher #8).,Secretos De Familia.,"Nine Coaches Waiting. Linda Martin, an English woman is hired to be a governess for a young French boy. But a strange terror coiled in the shadows behind the brooding elegance of the huge Chateau Valmy. It lay there like some dark and twisted thing -- waiting, watching, ready to strike. Was it only chance encounter than had brought the lovely governess to the chateau? Or was it something planned? She only knew something was wrong and that she was afraid. She is unaware of the danger she faces or who to trust in order to protect the young heir. Now she could not even trust the man she loved. For Raoul Valmy was one of them -- linked by blood and name to the dark secrets of the Valmy past.","Lover Revealed (Black Dagger Brotherhood #4). Butch O'Neal is a fighter by nature. A hard-living ex-homicide cop, he's the only human ever to be allowed in the inner circle of the Black Dagger Brotherhood. And he wants to go even deeper into the vampire world--to engage in the turf war with the lessers. He's got nothing to lose. His heart belongs to a female vampire, an aristocratic beauty who's way out of his league. If he can't have Marissa, then at least he can fight side by side with the Brothers... Fate curses him with the very thing he wants. When Butch sacrifices himself to save a civilian vampire from the slayers, he falls prey to the darkest force in the war. Left for dead, he's found by a miracle, and the Brotherhood calls on Marissa to bring him back. But even her love may not be enough to save him...","Chester. Chester, a wild horse who wants to be tame, comes to the city looking for a home. 'Reading for fun: the artist's sense of pacing makes this book race along.' --Saturday Review.","You Don't Know Jack (NY Girlfriends #2). When it comes to sizzling hot romance coupled with outrageous hilarity, nobody delivers like Erin McCarthy. Now she's back with a delicious story where nothing's on the level, everybody's got something to hide, and the only thing honest is the slow, hard pull of irresistible attraction...Love. Sex. Destiny. And A Six-Foot-Four Psychic In A Bridesmaid's Dress? Honey, You Don't Know Jack... Jamie Peters no longer believes in true love. True idiots, true scumbags, true moochers - these she believes in wholeheartedly, and she's got the checkered dating history to prove it. So she's more than a little skeptical when her cross-dressing psychic tells her she's about to meet her soul mate - during an accident. Yeah, sounds about right. And then it happens. A knight in shining armor steps between her and a mugger on a subway platform. Just a regular, honest, upright Jack. The kind they don't make anymore... Jonathon Davidson doesn't believe in destiny - or lying to beautiful women as a rule. Bu","The Flanders Panel. While restoring a 15th-century painting which depicts a chess game between the Duke of Flanders and his knight, Julia, a young art expert, discovers a hidden inscription in the corner: Quis Necavit Equitem. Translation: Who killed the knight? Breaking the silence of five centuries, Julia's hunt for a Renaissance murderer leads her into a modern-day game of sin, betrayal, and death.","Eating Stone: Imagination and the Loss of the Wild. Long believed to be disappearing and possibly even extinct, the Southwestern bighorn sheep of Utah's canyonlands have made a surprising comeback. Naturalist Ellen Meloy tracks a band of these majestic creatures through backcountry hikes, downriver floats, and travels across the Southwest. Alone in the wilderness, Meloy chronicles her communion with the bighorns and laments the growing severance of man from nature, a severance that she feels has left us spiritually hungry. Wry, quirky and perceptive, Eating Stoneis a brillant and wholly original tribute to the natural world.","Sweet Anger. Kari Wynne is desperately searching for the truth surrounding her husband's death but the man who destroyed his reputation, who she should really hate, is awakening in her a passion that she has never known before.","Common Ground: The Water Earth and Air We Share. A simple story of our planet's natural resources with jewel-like paintings by Caldecott Honor author Molly Bang. Through the example of a shared village green and the growing needs of the townspeople who share it, Molly Bang presents the challenge of handling our planet's natural resources. Full color picture book.","Song of Solomon. In this celebrated novel, Nobel Prize-winning author Toni Morrison created a new way of rendering the contradictory nuances of black life in America. Its earthy poetic language and striking use of folklore and myth established Morrison as a major voice in contemporary fiction. ""Song of Solomon"" begins with one of the most arresting scenes in our century's literature: a dreamlike tableau depicting a man poised on a roof, about to fly into the air, while cloth rose petals swirl above the snow-covered ground and, in the astonished crowd below, one woman sings as another enters premature labor. The child born of that labor, Macon (Milkman) Dead, will eventually come to discover, through his complicated progress to maturity, the meaning of the drama that marked his birth. Toni Morrison's novel is at once a romance of self-discovery, a retelling of the black experience in America that uncovers the inalienable poetry of that experience, and a family saga luminous in its depth, imaginative gen",Trevayne.,"Love @ First Site. Spunky, sweet-natured Jessica Monroe is thirty-four years old and perfectly happy being single. Her girlfriends, however, disapprove. And when they secretly place a personal ad on a hot singles website on her behalf, Jess is reluctantly hurtled into the topsy-turvy world of online dating. A laugh-out-loud whirlwind of disastrous dates ensues, from Simon, who seems dreamy over e-mail but ditches her at the dinner table, leaving her with the bill, to Graham, a self-described ""Ferrari driver"" who turns out to be a car salesman--with several (old, fat, bald, creepy, cheap, stuck-up) men in between. When an unforeseen event turns her world upside down, Jess starts to wonder if the qualities she thinks she wants in a man--gorgeous, wildly successful, with a taste for fun and the finer things--really are what she ultimately needs . . . and whether, as a new mystery suitor appears in her e-mail inbox, Cupid has other possibilities up his sleeve. Told with Jane Moore's sparkling wit, wisdom, an",Pet Peeve (Xanth #29).,"Spider Mountain (Cam Richter #2). A huge dog came out of the woods from our right and lunged at my face. I ducked the snapping jaws by throwing myself backward hard enough to crack my head on the ground. The dog went over my head, landing in a heap, but then whirled around . . . Summoned by a friend, ex-cop Cam Richter agrees to do a favor: investigate the assault of a young woman in a remote area of the Great Smoky Mountains National Park. Cam knows the misty hills and shadowed hollers of the park, and his outdoor skills might break a case that local cops can't---or maybe don't want to---solve. Cam has no idea how dangerous his search will become, because in this part of Appalachia, matriarch Grinny Creigh and her extended family destroy those who intrude into their web. The Creighs control the crystal meth trade and own just about everything and everyone in their neck of the woods. But they also operate a much worse enterprise, a dark secret that terrifies any children unfortunate enough to come within their grasp. B","The Queen of Whale Cay: The Eccentric Story of 'Joe' Carstairs Fastest Woman on Water. When Marion ""Joe"" Carstairs died in 1993 at the age of ninety-three, she was largely forgotten. During the 1920s she held the world record as the fastest female speedboat racer. But as journalist Kate Summerscale discovered, when researching an obituary for the Daily Telegraph, Carstairs was also a notorious crossdresser who favored women and smoked cheroots. Supremely self-confident, she inherited a Standard Oil fortune and knew how to spend her money -- on fast boats and cars. on her female lovers, and on a Caribbean Island. Whale Cay, where she reigned over a colony of Bahamians. There, far from her bohemian past in London and Paris, Carstairs hosted a succession of girlfriends and celebrities, including Marlene Dietrich and the Duke and Duchess of Windsor. Through it all, she remained devoted to Lord Todd Wadley, a little doll who was her bosom companion until the very end.",The Science Book.,The Art of Alfred Hitchcock: Fifty Years of His Motion Pictures. This completely revised and updated edition of the classic text describes and analyzes every movie made by master filmmaker Alfred Hitchcock.,"The Rachel Papers. In his uproarious first novel Martin Amis, author of the bestselling London Fields, gave us one of the most noxiously believable -- and curiously touching -- adolescents ever to sniffle and lust his way through the pages of contemporary fiction. On the brink of twenty, Charles High-way preps desultorily for Oxford, cheerfully loathes his father, and meticulously plots the seduction of a girl named Rachel -- a girl who sorely tests the mettle of his cynicism when he finds himself falling in love with her.","Howl: Original Draft Facsimile Transcript & Variant Versions Fully Annotated by Author with Contemporaneous Correspondence. First published in 1956, Allen Ginsberg's Howlis a prophetic masterpiece, an epic raging against dehumanizing society that overcame censorship trials & obscenity charges to become one of the most widely read poems of the century. This annotated version of Ginsberg's classic is the poet's own recreation of the revolutionary work's composition process as well as a treasure trove of anecdotes, an intimate look at the poet's writing techniques & a veritable social history of the 1950s.","Heidi (Heidi #1-2). Orphaned Heidi lives with her gruff but caring grandfather on the side of Swiss mountain, where she befriends young Peter the goat-herd. She leads an idyllic life, until she is forced to leave the mountain she has always known to go and live with a sickly girl in the city. Will Heidi ever see her grandfather again? A classic tale of a young girl's coming-of-age, of friendship, and familial love.","Deadly Love (Francesca Cahill Deadly #1). The year is 1902. The place is New York City. It is a world of huge mansions and society balls, but only footsteps away are the city's darkest back alleyways. It is a time of glamour and wealth--scandal and corruption. One cold winter night, a little boy is kidnapped from his own bed while his parents attend a neighbor's elegant ball. And Francesca Cahill, the daughter of the soiree's host, stumbles across the ransom note. Determined to help in any way she can, Francesca soon is involved in the high profile police investigation--while helpelessly falling in love with New York City's newly appointed police commissioner, the powerful and enigmatic Rick Bragg. Francesca and Bragg begin to search for the answers to a shocking crime. At stake is a little boy's life. As the duo is plunged into a web of corruption, secrets, and lies, Francesca's own life begins to slowly but surely unravel--until a series of stunning truths are revealed, each taking her more deeply into the heart of true dang","Little Birds. Evocative and superbly erotic, Little Birds is a powerful journey into the mysterious world of sex and sensuality. From the beach towns of Normandy to the streets of New Orleans, these thirteen vignettes introduce us to a covetous French painter, a sleepless wanderer of the night, a guitar-playing gypsy, and a host of others who yearn for and dive into the turbulent depths of romantic experience.",Below the Root.,"The Count of Monte Cristo. 'On what slender threads do life and fortune hang.' Thrown in prison for a crime he has not committed, Edmond Dantes is confined to the grim fortress of If. There he learns of a great hoard of treasure hidden on the Isle of Monte Cristo and he becomes determined not only to escape, but also to unearth the treasure and use it to plot the destruction of the three men responsible for his incarceration. Dumas' epic tale of suffering and retribution, inspired by a real-life case of wrongful imprisonment, was a huge popular success when it was first serialised in the 1840s. Robin Buss' lively translation is complete and unabridged, and remains faithful to the style of Dumas' original. This edition includes an introduction, explanatory notes and suggestions for further reading.","For the New Intellectual: The Philosophy of Ayn Rand. This is Ayne Rand's challenge to the prevalent philosphical doctrince of our time and the ""atmosphere of guilt, of panic, of despair, of boredom, and of all-pervasive evasion"" that they create. One of the most controversial figures on the intellectual scene, Ayn Rand was the proponent of a moral philsophy - an ethic of rational self-interest - that stands in sharp opposition of the ethics of altruism and self-sacrifice. The fundamentals of this morality - ""a philosophy for living on earth"" - are here vibrantly set forth by the spokesman for a new class, For the New Intellectual.","Fluffy Humpy Poopy Puppy: A Ruff Dog-Eared Look at Man's Best Friend. From Toto to Lassie to Benji and beyond, the dog has thrived in the soil of modern-age media and pop culture. Containing over 200 images, this book serves as a tribute to man's oldest and smelliest friends.",Hell's Kitchen (John Pellam #3). The third thriller in the Location Scout trilogy takes John Pelham to New York City.,"Spook Country (Blue Ant #2). Gibsons first new book in four years is, like the bestselling and critically acclaimed Pattern Recognition, a contemporary novel with international implications.","Burnt Offerings (Anita Blake Vampire Hunter #7). ""You can't trust anyone who sleeps with the monsters."" That's what I've always said. That's what I've always believed. But now I'm the one sharing a bed with the Master Vampire of the City. Me, Anita Blake. The woman the vampires call the Executioner. From part of the solution, I've become part of the problem. So it hits close to home when an arsonist begins to target vampire-owned businesses all over town -- an arsonist who seems to want to destroy more than just property. It's the monsters who are in danger now. And it's up the the Executioner to save them from the inferno...",A Dubious Codicil.,"Dr. Mary's Monkey: How the Unsolved Murder of a Doctor a Secret Laboratory in New Orleans and Cancer-Causing Monkey Viruses are Linked to Lee Harvey Oswald the JFK Assassination and Emerging Global Epidemics. The 1964 murder of a nationally known cancer researcher sets the stage for this gripping expose of medical professionals enmeshed in covert government operations over the course of three decades. Following a trail of police records, FBI files, cancer statistics, and medical journals, this revealing book presents evidence of a web of medical secret-keeping that began with the handling of evidence in the JFK assassination and continued apace, sweeping doctors into coverups of cancer outbreaks, contaminated polio vaccine, the arrival of the AIDS virus, and biological weapon research using infected monkeys.","Back to Wando Passo. David Payne has been hailed as ""the most gifted American novelist of his generation"" (Boston Globe) and has been likened to ""Pat Conroy or perhaps a Southern John Irving"" (Winston-Salem Journal). Now, in his new novel, Payne introduces us to Ransom Hill, lead singer of a legendary-but-now-defunct indie rock group who has come to South Carolina to turn over a new leaf. A bighearted artist and a bit of a wild man, Ran knows that his wife Claire's patience with him hangs by a frayed thread. After a five-month separation, he's come south from New York City to rejoin her and their two young children at Wando Passo, Claire's inherited family estate, determined to save his marriage, his family, and himself. Back at Wando Passo, though, things don't proceed according to plan. Claire has taken a job teaching at the local music conservatory, where the dean of the faculty, Marcel Jones, is one of Claire's oldest friends. It's unclear -- to Ran, at least -- whether Claire and Marcel's relationship","Letters of E.B. White. Originally edited by Dorothy Lobrano Guth, and revised and updated by Martha White Foreword by John Updike These letters are, of course, beautifully written but above all personal, precise, and honest. They evoke E.B. White's life in New York and in Maine at every stage of his life. They are full of memorable characters: White's family, the New Yorker staff and contributors, literary types and show business people, farmers from Maine and sophisticates from New York-Katherine S. White, Harold Ross, James Thurber, Alexander Woolcott, Groucho Marx, John Updike, and many, many more. Each decade has its own look and taste and feel. Places, too-from Belgrade (Maine) to Turtle Bay (NYC) to the S.S. Buford, Alaska-bound in 1923-are brought to life in White's descriptions. There is no other book of letters to compare with this; it is a book to treasure and savor at one's leisure. As White wrote in this book, ""A man who publishes his letters becomes nudist-nothing shields him from the world's ga","Fear of Fifty: A Midlife Memoir. Seducing the Demonhas introduced Erica Jong to readers who hadn't been born when Fear of Flyingwas published in 1973. Now one of her finest works of nonfiction -and a New York Timesbestseller-is back in print with a new afterword. In Fear of Fifty, a New York Timesbestseller when first published in 1994, Erica Jong looks to the second half of her life and ""goes right to the jugular of the women who lived wildly and vicariously through Fear of Flying"" (Publishers Weekly), delivering highly entertaining stories and provocative insights on sex, marriage, aging, feminism, and motherhood. ""What Jong calls a midlife memoir is a slice of autobiography that ranks in honesty, self-perception and wisdom with [works by] Simone de Beauvoir and Mary McCarthy,"" wrote the Sunday Times (U.K.). ""Although Jong's memoir of a Jewish American princess is wittier than either.""","The Lord of the Rings: Official Movie Guide. An introduction to the talented actors and filmmakers who have labored for years to bring Tolkien's work to the screen. For several years, a huge team of dedicated moviemakers has been transforming the exotic landscapes of New Zealand into the Middle-earth of J.R.R. Tolkien's epic masterwork, The Lord of the Rings. It is a massive production by fans of Tolkien's work for fans of Tolkien's work. This fully authorized Official Movie Guide is the perfect introduction to the total immersion in Tolkien's world that filmgoers will experience. In full color throughout, including lavish, full-bleed production stills, and with exclusive biographies of the stars and filmmakers, this book gives readers a privileged access to behind-the-scenes material found nowhere else. Featuring color photos of the cast, locations, sets, costumes, and creatures of the films, the book also includes an entertaining overview of the conception, design, and logistical challenges of a film project of this epic scale","Immortality. This breathtaking, reverberating survey of human nature finds Kundera still attempting to work out the meaning of life without losing his acute sense of humour. It is one of those great unclassifiable masterpieces that appear once every twenty years or so. 'It will make you cleverer, maybe even a better lover. Not many novels can do that.' Nicholas Lezard, GQ","Echo. Francesca Lia Block has charmed and amazed young audiences with tales of the mystical and ethereal. This outstanding story is no different. Following the life of Echo, an L.A. baby born to an artistic dad and a mom who's an angel, this enthralling story offers more than fairy dust and the supernatural. It tells the tale of a girl who feels doomed to be less than angelic, at least in comparison with her mother. Mom's startling beauty and aura enchant all who meet her, and Echo can never keep up. Desperate to be loved as much, and maybe find her own identity, she escapes to the boys in her life. Ultimately, she must rely on herself for the strength to survive. Simple text ands story lines do not appeal to Block, who weaves a tale with amazing grace and the flowing energy of a true genius. Images of vampires, ghosts, and fairies fill these pages, daring the reader to believe. Told from the point of view of Echo and the key players in her life, the story imparts a dreamlike quality to Echo","Kentucky Heat. In the second book of the powerful new series that reunites the beloved Coleman and Thornton families, New York Timesbestselling author Fern Michaels brings readers into the turbulent lives of a Kentucky horseracing clan headed by the incomparable Nealy Coleman Diamond. A woman of substance, Nealy rides fast, loves hard, and lives with an appetite for winning no one can match. Now in Kentucky Heat,she tests her deepest beliefs with one shocking decision and one daring last race. . .. Kentucky Heat With Nealy, horses come first. So when her two grown children's irresponsible acts nearly cost her Shufly, the foal that carries all her hopes for the Triple Crown, she throws them both off Blue Diamond Farm, a decision that changes their future--and her own. To the world, Nealy looks unbreakable. Inside, her heart has shattered. Estranged from her daughter Emmie and son Nick, she struggles alone to build her racing stables into the best in Kentucky--and Shufly into the horse of the century.",The Further Inquiry.,"Lolita: The Screenplay. As it charts the hypnotized progress of Humbert Humbert, a hypercivilized and amoral European emigre, into the orbit of a treacherously lovely and utterly unimpressionable preteen, Lolita: A Screenplay gleefully demolishes a host of stereotypes - sexual, moral, and aesthetic. Not least among the casualties is the notion that cinema and literature are two separate spheres. For in his screenplay, Nabokov married the structural and narrative felicities of great cinema to prose as sensuously entrancing as any he had ever written, resulting in a work that will delight cineasts and Nabokovians alike.",The Greatest Sailing Stories Ever Told: Twenty-Seven Unforgettable Stories.,"Trapped in the Mirror: Adult Children of Narcissists in Their Struggle for Self. In this compelling book, Elan Golomb identifies the crux of the emotional and psychological problems of millions of adults. Simply put, the children of narcissist -- offspring of parents whose interest always towered above the most basic needs of their sons and daughters -- share a common belief: They believe they do not have the right to exist. The difficulties experienced by adult children of narcissists can manifest themselves in many ways: for examples, physical self-loathing that takes form of overeating, anorexia, or bulimia; a self-destructive streak that causes poor job performance and rocky personal relationships; or a struggle with the self that is perpetuated in the adult's interaction with his or her own children. These dilemmas are both common and correctable, Dr. Golomb tells us. With an empathic blend of scholarship and case studies, along with her own personal narrative of her fight for self, Dr. Golomb plumbs the depths of this problem, revealing its mysterious hold on","Doctor Who: Cat's Cradle-Warhead. The place is Earth. The time is the near future - all too near. Industrial development has accelerated out of all control, spawning dangerous new technologies and laying the planet to waste. While the inner cities collapse in guerrilla warfare, a dark age of superstition dawns. As destruction of the environment reaches the point of no return, multinational corporations and super-rich individuals unite in a last desperate effort - not to save humankind, but to buy themselves immortality in a poisoned world. If Earth is to survive, somebody has to stop them. From London to New York to Turkey, Ace follows the Doctor as he prepares, finally, to strike back.",What Life Was Like in the Jewel in the Crown: British India AD 1600-1905. Offers a historical look at Britain's occupation of India from 1600 to 1905.,"Love As A Foreign Language #5. Time is running out for Joel. If he doesn't make a move on Hannah soon, he's going to lose his chance forever. But can he get over his Korean cultural hang-ups in time to make his play for the girl of his dreams?","Maus I: A Survivor's Tale: My Father Bleeds History (Maus #1). A story of a Jewish survivor of Hitler's Europe and his son, a cartoonist who tries to come to terms with his father's story and history itself.",Love Mode Vol. 3.,"The Cheese Monkeys. After 15 years of designing more than 1,500 book jackets at Knopf for such authors as Anne Rice and Michael Crichton, Kidd has crafted an affecting an entertaining novel set at a state university in the late 1950s that is both slap-happily funny and heartbreakingly sad. The Cheese Monkeys is a college novel that takes place over a tightly written two semesters. The book is set in the late 1950s at State U, where the young narrator, has decided to major in art, much to his parents' dismay. It is an autobiographical, coming-of-age novel which tells universally appealing stories of maturity, finding a calling in life, and being inspired by a loving, demanding, and highly eccentric teacher.","Lila: An Inquiry Into Morals (Phaedrus #2). In this best-selling new book, his first in seventeen years, Robert M. Pirsig, author of Zen and the Art of Motorcycle Maintenance, takes us on a poignant and passionate journey as mysterious and compelling as his first life-changing work. Instead of a motorcycle, a sailboat carries his philosopher-narrator Phaedrus down the Hudson River as winter closes in. Along the way he picks up a most unlikely traveling companion: a woman named Lila who in her desperate sexuality, hostility, and oncoming madness threatens to disrupt his life. In LilaRobert M. Pirsig has crafted a unique work of adventure and ideas that examines the essential issues of the nineties as his previous classic did the seventies.",The Talbot Odyssey.,"Everything Bad is Good for You. Forget everything you've ever read about the age of dumbed-down, instant-gratification culture. In this provocative, unfailingly intelligent, thoroughly researched, and surprisingly convincing big idea book, Steven Johnson draws from fields as diverse as neuroscience, economics, and media theory to argue that the pop culture we soak in every day--from Lord of the Ringsto Grand Theft Autoto The Simpsons--has been growing more sophisticated with each passing year, and, far from rotting our brains, is actually posing new cognitive challenges that are actually making our minds measurably sharper. After reading Everything Bad is Good for You, you will never regard the glow of the video game or television screen the same way again. With a new afterword by the author. Steven Johnson's newest book, How We Got to Now, is now available from Riverhead Books.",Blood Sport. Gene Hawkins takes on the job of locating a missing priceless breeding stallion. But he gets more action than he bargained for from a group of horse thieves who want to put Hawkins out to pasture--permanently.,"Theogony/Works and Days/Shield. Hesiod belongs to the transitional period in Greek civilization between the oral tradition and the introduction of a written alphabet. His two major surviving works, the Theogony and the Works and Days, address the divine and the mundane, respectively. The Theogony traces the origins of the Greek gods and recounts the events surrounding the crowning of Zeus as their king. A manual of moral instruction in verse, the Works and Days was addressed to farmers and peasants. Introducing his celebrated translations of these two poems and of the Shield, a very ancient poem of disputed authorship, Apostolos Athanassakis positions Hesiod simultaneously as a philosopher-poet, a bard with deep roots in the culture of his native Boeotia, and the heir to a long tradition of Hellenic poetry. For this eagerly anticipated revised edition, Athanassakis has provided an expanded introduction on Hesiod and his work, subtly amended his faithful translations, significantly augmented the notes and index, and u","Paris: The Secret History. If Adam Gopnik's Paris to the Moondescribed daily life in contemporary Paris, this book describes daily life in Paris throughout its history: a history of the city from the point of view of the Parisians themselves. Paris captures everyone's imaginations: It's a backdrop for Proust's fictional pederast, Robert Doisneau's photographic kiss, and Edith Piaf's serenaded soldier-lovers; a home as much to romance and love poems as to prostitution and opium dens. The many pieces of the city coexist, each one as real as the next. What's more, the conflicted identity of the city is visible everywhere--between cobblestones, in bars, on the metro. In this lively and lucid volume, Andrew Hussey brings to life the urchins and artists who've left their marks on the city, filling in the gaps of a history that affected the disenfranchised as much as the nobility. Paris: The Secret Historyranges across centuries, movements, and cultural and political beliefs, from Napoleon's overcrowded cemeteries to B","Are We There Yet?. Sixteen-year-old Elijah is completely mellow and his 23-year-old brother Danny is completely not, so it's no wonder they can barely tolerate one another. So what better way to repair their broken relationship than to trick them into taking a trip to Italy together? Soon, though, their parents' perfect solution has become Danny and Elijah's nightmare as they're forced to spend countless hours together. But then Elijah meets Julia, and soon the brothers aren't together nearly as much. And then Julia meets Danny and soon all three of them are in a mixed-up, turned-around, never-what-you-expect world of brothers, Italy, and love. Are We There Yet?isn't about a place on a map, it's about a place in the heart. David Levithan has written a magical story of a journey definitely worth taking.","Giada's Family Dinners. In her New York Timesbestseller Everyday Italian, Giada De Laurentiis introduced us to the simple, fresh flavors of her native Italian cuisine. Now, America's favorite Italian cook is back with a new batch of simple, delicious recipes geared toward family meals--Italian style. These unpretentious and delicious meals are at the center of some of Giada's warmest memories of sitting around the table with her family, passing bowls of wonderful food, and laughing over old times. Recipes for soups like Escarole and Bean and hearty sandwiches such as the classic Italian Muffuletta make casual, easy suppers, while one-pot dinners like Giada's Chicken Vesuvio and Veal Stew with Cipollini Onions are just as simple but elegant enough for company. You'll also find recipes for holiday favorites you'll be tempted to make all year round, including Easter Pie, Turkey and Ciabatta Stuffing with Chestnuts and Pancetta, and Panettone Bread Pudding with Amaretto Sauce. Giada's Family Dinnerscelebrates the","Desolation Jones: Made in England. A former field agent for M16, Michael Jones was the first surviving victim of the Desolation Test, a radically dangerous procedure cooked up by the British government. Jones was intravenously kept alive while being force-fed a steady diet of horrific data and images non-stop as stimulants were continuously pumped into his body --- keeping him conscious and alert for a solid year. Now retired from the agency, Jones lives in Los Angeles, acting as a private investigator to the secret underground community of ex-spooks who have come in from the cold, and who have no one else to turn to. Collecting the first six issues of the Eisner-nominated series by Warren Ellis and J.H. Williams III! Michael Jones was a British spy who'd seen better days -- but things took a turn for the worse once he fell into the Desolation Project's hands. Now he's the preeminent detective for an elite clientele -- the underground community of ex-spooks in gritty L.A.",The Irish Anatomist: A Study of Flann O'Brien.,"Feeding the Hungry Heart: The Experience of Compulsive Eating. This is how Geneen Roth remembers her time as an emotional overeater and self-starver. After years of struggle, Roth finally broke free from the destructive cycle of bingeing and purging. In the two decades since her triumph, she has gone on to help tens of thousands of others do the same through her lectures, workshops, and retreats. Those she has met during this time have shared stories that are both heartrending and inspiring, which Roth has gathered for this unique book.Twenty years after its original publication, Feeding the Hungry Heartcontinues to inspire women and men, helping them win the battle against a hunger that goes deeper than a need for food.",Essays.,"The Bride Finder (St. Leger #1). Chosen by the Bride Finder, a man blessed with amazing insight, Madeline Breton has come to Cornwall to meet her new husband, the enigmatic Anatole St. Leger. But her dream of happiness soon diffuses in his overpowering shadow. Anatole knows only too well the legacies that to him have been more curses than gifts. But as Madeline embarks on an odyssey both otherworldly and undeniably real, she and her husband fall hopelessly in love--until she sees a haunting vision of murder and a terrifying enemy emerges to threaten both their lives. . . .","Dirty Little Secrets. A young, hip, sexy novel that takes readers behind the velvet rope of the glamorous and shady entertainment industry Nothing prepares Tyler Blake for the fast-paced living of New York City. A small-town girl from Georgia, she quickly gets caught up in the glamorous entertainment industry. While pursuing her dream of becoming an actress, Tyler continually gets sidetracked by men who promise to help her and finds herself going from one dysfunctional relationship to another. Just when Tyler finally believes she has found her ideal man, in hip-hop producer Brian McCall, everything begins to go horribly wrong. Trapped in a nightmarish relationship, Tyler is determined not to go down without a fight. ""Passion, deception, heartbreak, love and a delicious read...what more do you need!"" -- B. Lawson Thornton, Essence bestselling author of Misery Loves Company","El Club Dante. Una magistral obra de suspense mundialmente aclamada. Boston, 1865. Importantes personalidades estacute;n siendo brutalmente asesinadas por un criminal inspirado en los tormentos del Infierno de Dante. Soacute;lo los miembros del club Dante --poetas y profesores de Harvard dirigidos por Henry Wadsworth Longfellow-- pueden anticiparse al asesino e identificarle. Mientras preparan la primera traduccioacute;n americana de iLa divina comedia/i enfrentaacute;ndose a la oposicioacute;n de la puritana vieja guardia de Harvard, los intelectuales deberaacute;n convertirse en detectives y pasar a la accioacute;n. pNicholas Ray, el primer policiacute;a negro del departamento de Boston, dirigiraacute; la investigacioacute;n oficial mientras los miembros del club llevan a cabo sus insoacute;litas pesquisas. Un dantesco infierno medieval se cierne sobre las calles de la ciudad, en una eacute;poca que toca a su fin, convulsa por la recieacute;n terminada guerra civil, el asesinato del presidente Linc","How to Stop Worrying and Start Living. Learn how to break the worry habit -- Now and forever! With Dale Carnegie's timeless advice in hand, more than six million people have learned how to eliminate debilitating fear and worry from their lives and to embrace a worry-free future. In this classic work, How to Stop Worrying and Start Living, Carnegie offers a set of practical formulas that you can put to work today. It is a book packed with lessons that will last a lifetime and make that lifetime happier! DISCOVER HOW TO: Eliminate fifty percent of business worries immediately Reduce financial worries Avoid fatigue -- and keep looking young Add one hour a day to your waking life Find yourself and be yourself -- remember there is no one else on earth like you! Fascinating to read and easy to apply, How to Stop Worrying and Start Living deals with fundamental emotions and life-changing ideas. There's no need to live with worry and anxiety that keep you from enjoying a full, active life!",Franz Kafka: The Complete Stories.,"Hollywood Hustle (Son of the Mob #2). The fast-paced, funny sequel to the best-selling Son of the Mob. Vince Luca is in heaven . . . he''s off to Los Angeles, to attend the University of Santa Monica''s film school. College should be fantastic, and he is more thrilled about being 3,000 miles away from his mob family. But as it turns out, college brings its own problems: from other film students moving in on his girl, to a kleptomaniac roommate, to having to get a job on campus to help pay tuition. It''s a fair amount to handle, though nothing Vince couldn''t easily manage - if he didn''t keep finding himself with unexpected guests from the East Coast. It seems Vince''s dad may just be ready to expand operations to L.A. With the popularity of shows such as ""The Sopranos,"" the mafia is a topic of intrigue for young adults. The fast-paced plot, hilarious dialogue and Korman''s keen understanding of teen issues, made this a bestseller and a critical success.","Wicked: Memorias de una bruja mala (Los años malvados #1). When Dorothy triumphed over the Wicked Witch of the West in L. Frank Baum's classic tale we heard only her side of the story. But what about her arch-nemesis, the mysterious Witch? Where did she come from? How did she become so wicked? And what is the true nature of evil? Gregory Maguire creates a fantasy world so rich and vivid that we will never look at Oz the same way again. Wickedis about a land where animals talk and strive to be treated like first-class citizens, Munchkinlanders seek the comfort of middle-class stability, and the Tin Man becomes a victim of domestic violence. And then there is the little green-skinned girl named Elphaba, who will grow up to become the infamous Wicked Witch of the West, a smart, prickly, and misunderstood creature who challenges all our preconceived notions about the nature of good and evil. An astonishingly rich re-creation of the land of Oz, this book retells the story of Elphaba, the Wicked Witch of the West, who wasn't so wicked after all. Tak",Refuge (Outlanders #36).,Eugene Onegin Vol. II (Commentary).,"A Power Governments Cannot Suppress. A Power Governments Cannot Suppressis a major new collection of essays on American history, class, immigration, justice, and ordinary citizens who have made a difference. Zinn addresses America's current political/ethical crisis using lessons learned from our nation's history. Zinn brings a profoundly human, yet uniquely American perspective to each subject he writes about, whether it's the abolition of war, terrorism, the Founding Fathers, the Holocaust, defending the rights of immigrants, or personal liberties. Written in an accessible, personal tone, Zinn approaches the telling of U.S. history from an active, engaged point of view. ""America's future is linked to how we understand our past,"" writes Zinn; ""For this reason, writing about history, for me, is never a neutral act."" Zinn frames the book with an opening essay titled ""If History is to be Creative,"" a reflection on the role and responsibility of the historian. ""To think that history-writing must aim simply to recapitulate the","The World of Peter Rabbit (Original Peter Rabbit Books 1-23). All 23 original Tales by Beatrix Potter are available in a beautifully redesigned presentation box. This luxurious box features the new branded design, spot lamination and full-color original Beatrix Potter art, including a pop-up of Peter Rabbit and friends inside the lid. Titles include: #1 The Tale of Peter Rabbit #2 The Tale of Squirrel Nutkin #3 The Tailor of Gloucester #4 The Tale of Benjamin Bunny #5 The Tale of Two Bad Mice #6 The Tale of Mrs. Tiggy-Winkle #7 The Tale of Mr. Jeremy Fisher #8 The Tale of Tim Kitten #9 The Tale of Jemima Puddle-Duck #10 The Tale of Flopsy Bunnies #11 The Tale of Mrs. Tittlemouse #12 The Tale of Timmy Tiptoes #13 The Tale of Johnny Town-Mouse #14 The Tale of Mr. Tod #15 The Tale of Pigling Bland #16 The Tale of Samuel Whiskers #17 The Tale of The Pie and the Patty-Pan #18 The Tale of Ginger and Pickles #19 Little Pig Robinson #20 The Story of a Fierce Bad Rabbit #21 The Story og Miss Moppet #22 Appley Dapply's Nursery Rhymes # 23 Cecily Parsley's","The Bridegroom. Reversals, transformations, and surprises abound in these assured stories. Parables for our times--with a hint of the reckless and the absurd that we have come to expect from Ha Jin--The Bridegroom offers tales both mischievous and wise. From the National Book Award-winning author of Waiting, a new collection of short fiction that confirms Ha Jin's reputation as a master storyteller. Each of The Bridegroom's twelve stories--three of which have been selected for inclusion in The Best American Short Stories--takes us back to Muji City in contemporary China, the setting of Waiting. It is a world both exotic and disarmingly familiar, one in which Chinese men and women meet with small epiphanies and muted triumphs, leavening their lives of quiet desperation through subtle insubordination and sometimes crafty resolve. In the title story, a seemingly model husband joins a secret men's literary club and finds himself arrested for the ""bourgeois crime"" of homosexuality. ""Alive"" centers on an of","There's No Place Like Here. Sometimes it takes losing everything to truly find yourself...Since Sandy Shortt's childhood classmate disappeared twenty years ago, Sandy has been obsessed with missing things. Finding what is lost becomes her single-minded goal--from the lone sock that vanishes in the washing machine to the car keys she misplaced. It's no surprise, then, that Sandy's life's work becomes finding people who have vanished from their loved ones. Sandy's family is baffled and concerned by her increasing preoccupation. Her parents can't understand her compulsion, and she pushes them away further by losing herself in the work of tracking down these missing people. She gives up her life in order to offer a flicker of hope to devastated families...and escape the disappointments of her own. Jack Ruttle is one of those devastated people. It's been a year since his brother Donal vanished into thin air, and he has enlisted Sandy Shortt to find him. But before she is able to offer Jack the information he so desper","Mary Stewart's Merlin Trilogy (Arthurian Saga #1-3). The prophetic voice of Merlin, the mysterious enchanter of Arthurian legend, has completed his story. Written over a period of ten years, Mary Stewart's three best-selling novels now stand together in one volume - the finest work of her distinguished career. Hers is the most extended portrait in all literature in this compelling figure of Dark Age myth and history. Merlin, the protector and tutor of Arthur, has usually been portrayed as an old man. But The Crystal Cavebegins the trilogy with the story of his perilous childhood as the bastard son of a Welsh king's daughter and the secret discovery of the magic arts that will set him apart from other men. With the birth of Arthur, Merlin's guardianship began and the ancient legend continues in The Hollow Hillswith the dramatic immediacy that is Mary Stewart's special gift.","It Can't Happen Here. The only one of Sinclair Lewis's later novels to match the power of Main Street, Babbitt, and Arrowsmith, It Can't Happen Hereis a cautionary tale about the fragility of democracy, an alarming, eerily timeless look at how fascism could take hold in America. Written during the Great Depression when America was largely oblivious to Hitler's aggression, it juxtaposes sharp political satire with the chillingly realistic rise of a President who becomes a dictator to save the nation from welfare cheats, rampant promiscuity, crime, and a liberal press. Now finally back in print, It Can't Happen Hereremains uniquely important, a shockingly prescient novel that's as fresh and contemporary as today's news.","My Woman His Wife. For most couples, inviting someone into their bedroom is totally out of the question. Any normal woman would flip if her man even thought about trying a threesome with another woman. Jasmine is that woman, and more. It's not until her husband James pressures her into having a threesome that their once happy lives get turned into nothing but drama.","The Players of Gilean (Dragonlance: Tales from the War of Souls #2). Across the ages roams an immortal troupe of actors, gifted with fantastical powers and led by a mysterious artiste with a penchant for meddling. Wherever they roam, they encounter magic and monsters and evil that requires taming. This is the first anthology based on characters from the extraordinary novella ""The Travelling Players of Gilean,"" by Margaret Weis and Aron Eisenberg, which was featured in The Best of Tales, Volume One. This new anthology also features novellas by best-selling Dragonlance authors Douglas Niles, Richard A. Knaak, Paul B. Thompson, and a new collaboration by Jean Rabe and Aron Eisenberg. Contents ""Command Performance"" by Douglas Niles ""Papilla"" by Fergus Ryan ""Enter, a Ghost"" by Paul B. Thompson ""Perfect"" by Donald J. Bingle ""A Matter of Honor"" by Richard A. Knaak ""Rewrites"" by Aron Eisenberg and Jean Rabe","Pride and Prejudice. Pride and Prejudice has delighted generations of readers with its unforgettable cast of characters, carefully choreographed plot, and a hugely entertaining view of the world and its absurdities. With the arrival of eligible young men in their neighborhood, the lives of Mr. and Mrs. Bennet and their five daughters are turned inside out and upside down. Pride encounters prejudice, upward-mobility confronts social disdain, and quick-wittedness challenges sagacity, as misconceptions and hasty judgements lead to heartache and scandal, but eventually to true understanding, self-knowledge, and love. In this supremely satisfying story, Jane Austen balances comedy with seriousness, and witty observation with profound insight. If Elizabeth Bennet returns again and again to her letter from Mr Darcy, readers of the novel are drawn even more irresistibly to its captivating wisdom. --back cover","Fantastic Alice. The bestselling coauthor of Fire Sea and The Hand of Chaos has compiled a collection of all-new, first-time-in-print adventures featuring Lewis Carroll's Alice. Now out of Wonderland, Alice is taken on journeys beyond imagination to different eras and different worlds, by a talented group of fantasy's top authors, including Jodi Lynn Nye, Peter Crowther, and Lawrence Watt-Evans, among others.","World of Wonders (The Deptford Trilogy #3). Hailed by the Washington Post Book Worldas ""a modern classic,"" Robertson Davies's acclaimed Deptford Trilogyis a glittering, fantastical, cunningly contrived series of novels, around which a mysterious death is woven. World of Wonders--the third book in the series after The Manticore--follows the story of Magnus Eisengrim--the most illustrious magician of his age--who is spirited away from his home by a member of a traveling sideshow, the Wanless World of Wonders. After honing his skills and becoming better known, Magnus unfurls his life's courageous and adventurous tale in this third and final volume of a spectacular, soaring work. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and note",Statesman.,"Naomi. Junichiro Tanizaki's Naomi is both a hilarious story of one man's obsession and a brilliant reckoning of a nation's cultural confusion. When twenty-eight-year-old Joji first lays eyes upon the teenage waitress Naomi, he is instantly smitten by her exotic, almost Western appearance. Determined to transform her into the perfect wife and to whisk her away from the seamy underbelly of post-World War I Tokyo, Joji adopts and ultimately marries Naomi, paying for English and music lessons that promise to mold her into his ideal companion. But as she grows older, Joji discovers that Naomi is far from the naive girl of his fantasies. And, in Tanizaki's masterpiece of lurid obsession, passion quickly descends into comically helpless masochism.","Slouching Toward Nirvana. in this place there are the dead, the deadly and the dying. there is the cross, the builders of the cross and the burners of the cross. the pattern of my life forms like a cheap shadow on the wall before me. my love what is left of it now must crawl to wherever it can crawl. the strongest know that death is final and the happiest are those gifted with the shortest journey.","Inkspell (Inkworld #2). The captivating sequel to INKHEART, the critically acclaimed, international bestseller by Cornelia Funke, an author who is emerging as a truly modern classic writer for children. Although a year has passed, not a day goes by without Meggie thinking of INKHEART, the book whose characters became real. But for Dustfinger, the fire-eater brought into being from words, the need to return to the tale has become desperate. When he finds a crooked storyteller with the ability to read him back, Dustfinger leaves behind his young apprentice Farid and plunges into the medieval world of his past. Distraught, Farid goes in search of Meggie, and before long, both are caught inside the book, too. But the story is threatening to evolve in ways neither of them could ever have imagined.","Mark Twain's Helpful Hints for Good Living: A Handbook for the Damned Human Race. Irreverent, charming, eminently quotable, this handbook--an eccentric etiquette guide for the human race--contains sixty-nine aphorisms, anecdotes, whimsical suggestions, maxims, and cautionary tales from Mark Twain's private and published writings. It dispenses advice and reflections on family life and public manners; opinions on topics such as dress, health, food, and childrearing and safety; and more specialized tips, such as those for dealing with annoying salesmen and burglars. Culled from Twain's personal letters, autobiographical writings, speeches, novels, and sketches, these pieces are delightfully fresh, witty, startlingly relevant, and bursting with Twain's characteristic ebullience for life. They also remind us exactly how Mark Twain came to be the most distinctive and well-known American literary voice in the world. These texts, some of them new or out of print for decades, have been selected and meticulously prepared by the editors at the Mark Twain Project.","The Stephen King Universe: A Guide to the Worlds of the King of Horror. ""I am coming to understand that Roland's world actually contains all the others of my making"" Stephen King With those words, from The Dark Tower: IV Wizard and Glass, the world's most popular writer confirmed a suspicion long held by readersthat the myriad worlds and universes King has created are, in reality, one world, one universe. Here, for the first time ever is the guide to that universe, a thrilling road map and informative tour for new readers and diehard fans alike. The Stephen King Universeis the very first examination of all of King's fiction and the way in which its plots and characters, conflicts, and themes, intertwine. This definitive reference work examines his novels and short stories, as well as the motion pictures, miniseries, and teleplays that King has written. The authors spent three years discovering and tying together the threads that exist in King's fiction. Their insightful results will entertain and surprise readers new and old. Once you have read The Stephe","On Love. ""The longing for a destiny is nowhere stronger than in our romantic life"" we are told at the outset of Alain de Botton's On Love, a hip, charming, and devastatingly witty rumination on the thrills and pitfalls of romantic love. The narrator is smitten by Chloe on a Paris-London flight, and by the time they've reached the luggage carousel, he knows he is in love. He loves her chestnut hair and pale nape and watery green eyes, the way she drives a car and eats Chinese food, the gap that makes her teeth Kantian and not Platonic, her views on Heidegger's Being and Time - although he hates her taste in shoes. On Love plots the course of their affair from the initial delirium of infatuation to the depths of suicidal despair, through the (Groucho) ""Marxist"" stage of coming to terms with being loved by the unattainable beloved, through a fit of anhedonia, defined in medical texts as a disease resulting from the terror brought on by the threat of utter happiness, and finally through the nausea","Weekend Warriors (Sisterhood #1). The first in an exhilarating new series following a group of extraordinary women who are out to see justice done ... a step at a time. Nikki Quinn is devastated when her best friend Barbara is knocked down and killed by a hit-and-run driver who claims diplomatic immunity. But Nikki has her work and her lover, fellow lawyer Jack Nolan, to keep her going, whereas Barbara's mother, Myra, has nothing. Festering in a sea of recriminations and hatred, unable to gain a sense of perspective, Myra is lost...until one day she switches on the evening news and sees Marie Lewellen, mother of a murder victim, take matters into her own hands and stab her daughter's killer. An idea is born, and within months Myra and Nikki have drawn together a group of women who have one thing in common: they have been failed by the American justice system, they're down but they're not out, and they're ready to find their nemeses and make them pay. First up is Kathryn, a long-distance truck driver who was raped at a","The Ravishing of Lol Stein. Lol Stein is a beautiful young woman, securely married, settled in a comfortable life--and a voyeur. Returning with her husband and children to the town where, years before, her fiance had abandoned her for another woman, she is drawn inexorably to recreate that long-past tragedy.","The Book of Merlyn: The Unpublished Conclusion to The Once & Future King. ""... a personal as well as historical story that crisscrosses the centuries on the question of war & peace."" - NY Times This magical account of King Arthur's last night on earth spent weeks on the New York Times Best-seller List following its publication in 1977. Even in addressing the profound issues of war & peace, The Book of Merlynretains the life & sparkle for which White is known. The tale brings Arthur full circle, an ending, White wrote, that ""will turn my completed epic into a perfect fruit, 'rounded off & bright & done'.""",The Call of the Mall: How we shop.,"The Beatles Illustrated Lyrics. A must-have for every Fab Four fan, this classic visual tribute to their music is now available in a handsomely repackaged and affordable paperback edition. The music and lyrics of the Beatles have proven them to be artists of the page as well as the stage and have here provided inspiration to dozens of artists. Rendered in full color on every page are extravagantly colorful scenes and images, from the psychedelic visions evoked by ""Strawberry Fields"" to the youthful innocence that springs from ""She Loves You."" Witty commentary and candid insights from John, Paul, George and Ringo make this a very special and personal tribute.",Zizek: A Critical Introduction.,The 21 Success Secrets of Self-Made Millionaires: How to Achieve Financial Independence Faster and Easier Than You Ever Thought Possible. How to Achieve Financial Independence Faster and Easier Than You Ever Thought Possible,Liar's Poker: A Harry Garnish Mystery.,"Little House Friends (Little House Chapter Books: Laura #9). No matter where Laura Ingalls and her family settled on the frontier, Lauraalways made many friends. And when the farm work was finished and school was out for the day, Laura and her friends had wonderful adventures. From racingponiesbareback with Cousin Lena to sliding down snow-drifts with Cap Garland and the gang, Laura loved spending time with her friends. Even mean old Nellie Oleson couldn't spoil Laura's fun! These gentle adaptations from Laura Ingalls Wilder's original Little House books capture the spirit of this beloved pioneer girl and invite beginning chapter book readers into the magical world of Little House. These rare glimpses into America's frontier past bring Laura's cherished stories to a whole new generation of young readers.","The Black Sheep. Formerly an aide-de-camp to Napoleon but now without prospects, Phillippe Bridau and his younger brother Joseph, a shiftless artist, become entangled in a struggle to recover the family inheritance in a world where ""to be without money is to be without power.","The Ghosts in Baker Street: New Tales of Sherlock Holmes. Sherlock Holmes once declared: ""This world is big enough for us. No ghosts need apply."" And when Dr. Mortimer asked if the legend of the Hound of the Baskervilles was not of interest, Holmes said only: ""To a collector of fairy-tales."" And yet Conan Doyle, fascinated by psychic phenomena his entire life, and author of many horror and supernatural stories, did give Holmes a few problems of the otherworldly sort, even if they ended in rational explanations. Featuring an all-star cast of Doyle devotees that includes Caleb Carr and Daniel Stashower, hosts of Baker Street is the third collection of original mystery stories featuring the literary world's greatest detective (Murder in Baker Street; Murder, My Dear Watson)--and these stories bring Holmes and Watson up against the supernatural. This latest installment in the New Tales of Sherlock Holmes series--edited by Martin H. Greenberg, one of crime fiction's most awarded editors and anthologists--brings the reader more adventures where the","A Little House Traveler: Writings from Laura Ingalls Wilder's Journeys Across America. By the mid-1930s Laura Ingalls Wilder's journeys had taken her from Wisconsin to South Dakota, from Missouri to California and back again. She had traveled by wagon, by train, and by car; alone, with her husband, and with her daughter. She had watched the times, seasons, and people change over six decades of traveling. But one thing remained the same: Laura always kept a pencil and paper with her to jot down notes about her experiences. For the first time ever, writings from three of Laura's most memorable trips have been collected in one special omnibus edition featuring historical black-and-white photographs. On the Way Homerecounts her 1894 move with Rose and Almanzo from South Dakota to their new homestead in Mansfield, Missouri. West From Homeconsists of letters from Laura to Almanzo as she traveled to California in 1915 to visit Rose. And previously unpublished materials from Laura and Almanzo's car trip in 1931 now tell the story of their first journey back to DeSmet, the town w",Seven Men and Two Others.,"Send No Flowers (Bed & Breakfast #2). She usually didn't play the part of damsel in distress...but this ill-fated camping trip was reducing her to roles she'd never expected to encounter. When Pierce Reynolds appeared in the midst of a thunderstorm to offer her and her two small boys dinner and a dry place to sleep, Alicia Russell couldn't help but surrender to his rescuing arms...Her sons quickly grew to adore the masculine attention they'd not felt since the death of their father; and Alicia responded with breathless surprise to the powerful emotions Pierce evoked in her heart. But back in Los Angeles he withdrew alarmingly, while Alicia realized her willingness to risk loving a man again. Could their love survive his fierce secret?","Ballet for Dummies. Whether you want to participate in ballet or just watch it, the ballet experience can excite and inspire you. Ballet is among the most beautiful forms of expression ever devised: an exquisite mix of sight and sound, stunning, aesthetics, and awesome technique. Ballet For Dummiesis for anyone who wants to enjoy all that the dance forms offers - as an onlooker who wants to get a leg up on the forms you're likely to see or as an exercise enthusiast who understands that the practiceof ballet can help you gain More strength Greater flexibility Better body alignment Confidence in movement Comfort through stress reduction Infinite grace - for life From covering the basics of classical ballet to sharing safe and sensible ways to try your hand (and toes) at moving through the actual dance steps, this expert reference shows you how to Build your appreciation for ballet from the ground up. Choose the best practice space and equipment. Warm up to your leap into the movements. Locate musical option","Betsy-Tacy (Betsy-Tacy #1). Best Friends Forever There are lots of children on Hill Street, but no little girls Betsy's age. So when a new family moves into the house across the street, Betsy hopes they will have a little girl she can play with. Sure enough, they do--a little girl named Tacy. And from the moment they meet at Betsy's fifth birthday party, Betsy and Tacy become such good friends that everyone starts to think of them as one person--Betsy-Tacy. Betsy and Tacy have lots of fun together. They make a playhouse from a piano box, have a sand store, and dress up and go calling. And one day, they come home to a wonderful surprise--a new friend named Tib. Ever since their first publication in the 1940's, the Betsy-Tacy stories have been loved by each generation of young readers.","One Hundred Hungry Ants. One hundred hungry ants march off single file to sample a picnic, but when the going gets too slow, they divide into two rows of fifty, then four rows of twenty . . . until they take so long that the picnic is gone!","Betsy Was a Junior (Betsy-Tacy #7). The Best School Year Ever That's the kind of junior year Betsy Ray has planned for herself. And when her childhood friend Tib Muller moves back to Deep Valley, Betsy's sure her perfect year is off to a grand start. With charming, funny Tib around, Crowd doings are more fun than ever -- especially after Betsy starts Okto Delta, the first -- ever sorority at Deep Valley High.But soon Betsy's luck takes a bad turn. The Crowd is getting into trouble at school, and Betsy isn't given a chance to compete in the annual Essay Contest. Could Betsy's best school year turn out to be her worst?","Light a Penny Candle. Evacuated from Blitz-battered London, shy and genteel Elizabeth White is sent to stay with the boisterous O'Connors in Kilgarret, Ireland. It is the beginning of an unshakeable bond between Elizabeth and Aisling O'Connor, a friendship which will endure through twenty turbulent years of change and chaos, joy and sorrow, soaring dreams and searing betrayals... Writing with warmth, wit and great compassion, Maeve Binchy tells a magnificent story of the lives and loves of two women, bound together in a friendship that nothing could tear asunder - not even the man who threatened to come between them forever.",They Do It With Mirrors.,"The Quickie. When Lauren Stillwell discovers her husband leaving a hotel room with another woman, she decides to beat him at his own game. But while she's sneaking around, her husband is hatching a plan of his own. After a torrid quickie with a co-worker, Lauren hears a struggle outside her window and looks out just in time to see her husband loading her lover's limp body into the trunk of a car. When the body shows up in a pool of shallow water, she races to the scene of the crime. But Lauren Stillwell is no regular wronged woman. She's a NYC cop--and she's just been assigned to this case. Unable to tell anyone what she saw and unwilling to turn her husband in, Lauren is paralyzed by a secret that will tear her life apart. But as she attempts to point fingers away from her husband, she uncovers something shocking: her husband didn't have an affair--what he did was far worse than she could have ever imagined.A gripping story of secrets and infidelities that begins where Adrian Lyne's movie Unfaithf","Hope Springs Eternal (Prairie River #4). Albert, Nessa's friend from the orphanage, has journeyed to Prairie River. Nessa is thrilled to see him, but after waiting months, she realizes his arrival will not make her life any less complicated. Nessa's winter was frought with trials, but now spring has come to Prairie River - and so has her dear friend Albert. Albert is Nessa's oldest friend from the orphanage, and she had prayed that he would join her in Kansas ever since she journeyed to the small, remote town a year ago. But a year is a long time, and Albert's arrival is not what Nessa had imagined. Things are different between them, and Nessa must reconcile the changes if she has any hope of starting their friendship anew.","L'Équilibre du monde. Voici le grand roman de l'Inde contemporaine, realiste, foisonnant, inspire - traverse par le souffle d'un Hugo ou d'un Dickens. L'histoire se deroule au cours des annees 1970 et 1980. Dans le meme quartier vivent des personnages venus d'horizons tres divers : Ishvar et Omprakash, les deux tailleurs - des <>- ; Dina, la jeune veuve, qui, pour survivre, se lance dans la confection a domicile ; Maneck, descendu de ses lointaines montagnes pour poursuivre ses etudes ; Shankar, le cul-de-jatte, exploite par le maitre des mendiants. Bien d'autres encore... A travers les heurs et malheurs de leurs existences, Rohinton Mistry, romancier anglophone ne a Bombay, brosse une fresque qui est a la fois l'odyssee d'une nation et une parabole de la condition humaine. Un roman-fleuve qui nous emporte irresistiblement.","My Father's Dragon (My Father's Dragon #1). Elmer Elevator (narrator's father as a boy) runs away with an old alley cat to rescue a flying baby dragon being exploited on a faraway island. With the help of two dozen pink lollipops, rubber bands, chewing gum, and a fine-toothed comb, Elmer disarms the fiercest of beasts on Wild Island.",Les Fils des ténèbres.,"Dead Sleep. Jordan Glass, a photojournalist on a well-earned vacation, wanders into a Hong Kong art museum and is puzzled to find fellow patrons eyeing her with curiosity. Minutes later, she stumbles upon a gallery containing a one-artist exhibition called ""The Sleeping Women,"" a mysterious series of paintings that has caused a sensation in the world of modern art. Collectors have come to believe that the canvases depict female nudes not in sleep but in death, and they command millions at auction. When Jordan approaches the last work in the series, she freezes. The face in the painting seems to be her own. This unsettling event hurls her back into a nightmare she has fought desperately to put behind her-for, in fact, the face in the painting belongs not to Jordan but to her twin sister, murdered one year ago. At the urging of the FBI, Jordan becomes both hunter and hunted in a duel with the anonymous artist, a gifted murderer who knows the secret history of Jordan's family, and truths that even sh","ヒカルの碁 14、sai vs toya koyo. Qi woJi mentosuruZhe Tong Shi , Zuo Wei toTa Shi Ming Ren niyorunetsutoQi gaiyoiyoJue Zhao noShi woYing eru. Shen noYi Shou niJin duitanoha, Guo tashitedochiranoTian Cai Qi Shi ka!? hikarutoCang Tian Liu Duan gaTong Se noQi Shi woShi tsuteDui Ju suruBai Re noYi Se Qi moShou Lu !!",Trust Fund.,JoJo's Bizarre Adventure Vol. 6 (Stardust Crusaders #6).,Tripwire (Jack Reacher #3).,Jojo's Bizarre Adventure Tome 16: L'Expérience du combat ! (Stardust Crusaders #4).,"Tales from Firozsha Baag [Jan 01 2002] Mistry Rohinton. ""Patterns of life are selfish and unforgiving."" explains Nariman Hansotia,the resident storyteller of Firozsha Baag.And in these eleven intersecting stories, Rohinton Mistry opens our eyes and our hearts to the rich, complex patterns of life inside this Bombay apartment building. The occupants - from Jaakaylee, the ghost-seer, through Najamai, the only owner of a refrigerator in Firozsha Baag, to Rustomji the Curmudgeon and Kersi, the young boy whose life threads through the book - all express the tensions between the past and the present, between the old world and the new. Compassionate and funny in turns, Tales from Firozsha Baag illuminates the very meaning of change through this pungent and exuberantly textured mosaic of lives.",Marx's Concept of Man. A provocative new view of Marx stressing his humanist philosophy and challenging both Soviet distortion and Western ignorance of his basic thinking.,"Word of Honor. He is a good man, a brilliant corporate executive, an honest, handsome family man admired by men and desired by women. But a lifetime ago Ben Tyson was a lieutenant in Vietnam. There the men under his command committed a murderous atrocity -- and together swore never to tell the world what they had done. Now the press, army justice, and the events he tried to forget have caught up with Ben Tyson. His family, his career, and his personal sense of honor hang in the balance. And only one woman can reveal the truth of his past -- and set him free.","A Whole Lotta Love. Four bestselling authors deliver four larger-than-life stories of big, bold, and beautiful women looking for ""A Whole Lotta Love.""","The Lost Years of Merlin. The Saga Begins... A raging sea tosses a boy upon the shores of ancient Wales. Left for dead, he has no memory, no name, and no home. But it is his determination to find out who he is - to learn the truth about his mysterious powers - that leads him to a strange and enchanted land. And it is there he discovers that the fate of this land and his personal quest are strangely entwined. He is destined to become the greatest wizard of all time--known to all as Merlin. ""An extraordinary journey of mind, body, and spirit - for both Merlin and ourselves."" - Madeleine L'Engle","Selected Stories. Spanning almost thirty years and settings that range from big cities to small towns and farmsteads of rural Canada, this magnificent collection brings together twenty-eight stories by a writer of unparalleled wit, generosity, and emotional power. In her Selected Stories, Alice Munro makes lives that seem small unfold until they are revealed to be as spacious as prairies and locates the moments of love and betrayal, desire and forgiveness, that change those lives forever. To read these stories--about a traveling salesman and his children on an impromptu journey; an abandoned woman choosing between seduction and solitude--is to succumb to the spell of a writer who enchants her readers utterly even as she restores them to their truest selves. Walker brothers cowboy -- Dance of the happy shades -- Postcard -- Images -- Something I've been meaning to tell you -- The Ottawa Valley -- Material -- Royal beatings -- Wild swans -- The beggar maid -- Simon's luck -- Chaddeleys and Flemings -- Dul","Red Herrings and White Elephants: The Origins of the Phrases We Use Every Day. Mad hatter . . . pie in the sky . . . egg on your face.We use these phrases every day, yet how many of us know what they really mean or where they came from? From bringing home the bacon to leaving no stone unturned, the English language is peppered with hundreds of common idioms borrowed from ancient traditions and civilizations throughout the world. In Red Herrings and White Elephants, Albert Jack has uncovered the amazing and sometimes downright bizarre stories behind many of our most familiar and eccentric modes of expression: If you happen to be a bootlegger, your profession recalls the Wild West outlaws who sold illegal alcohol by concealing slender bottles of whiskey in their boots. If you're on cloud nine, you owe a nod to the American Weather Bureau's classification of clouds, the ninth topping out all others at a mountainous 40,000 feet. If you opt for the hair of the dogthe morning after, you're following the advice of medieval English doctors, who recommended rubbing the ha",My Sister's Keeper.,"Unsung Heroes Of Rock 'n' Roll: The Birth Of Rock In The Wild Years Before Elvis. Long before Elvis Presley entered Sam Phillips's Sun Records studio in 1954, rock 'n' roll was being performed and recorded by the likes of Big Joe Turner, Louis Jordan, Wynonie Harris, the Clovers, the Dominoes, the Midnighters, Screamin' Jay Hawkins, Wanda Jackson, and Johnny Ace. More than just a series of shrewd and evocative portraits of these and sixteen other performers, this book is also a paean to a forsaken time of relentless excess, sudden ruin, and fierce music. For this edition, the author has contributed a new listing of recent CD reissues. From 1945 to 1955, from Chinese hillbillies to Elvis's long-lost twin brother, here are the Unsung Heroes of Rock 'n' Roll.","Alcoholics Anonymous. Alcoholics Anonymous (also known as the Big Bookin recovery circles) sets forth cornerstone concepts of recovery from alcoholism and tells the stories of men and women who have overcome the disease. The fourth edition includes twenty-four new stories that provide contemporary sharing for newcomers seeking recovery from alcoholism in A.A. during the early years of the 21st century. Sixteen stories are retained from the third edition, including the ""Pioneers of A.A."" section, which helps the reader remain linked to A.A.'s historic roots, and shows how early members applied this simple but profound program that helps alcoholics get sober today. Approximately 21 million copies of the first three editions of ""Alcoholics Anonymous"" have been distributed. It is expected that the new fourth edition will play its part in passing on A.A.'s basic message of recovery. This fourth edition has been approved by the General Service Conference of Alcoholics Anonymous, in the hope that many more may be","Cerulean Sins (Anita Blake Vampire Hunter #11). Cerulean Sins, the eleventh entry in the hugely-popular Anita Blake series, finds everyone's favorite vampire hunter keeping house and kicking butt. Anita Blake is trying to get her life back to ""normal"" after a break-up with her werewolf lover. She has settled into a pattern of domesticity, which means that the new man in her life, the leopard shapeshifter Micah, has no problem sharing her with Jean-Claude, Master Vampire of the City. Things are as peaceful as they ever get for someone who raises the dead, when Jean-Claude receives an unexpected and unwelcome visitor: Musette, the very beautiful, very twisted representative of the European Council of Vampires. Anita soon finds herself caught up in a dangerous game of vampire power politics. To add to her troubles, she is asked to consult on a series of brutal killings, which seem to be the work of something un-human. The investigation leads her to Cerulean Sins, a vampire-run establishment that deals in erotic videos, videos that cate","The Classic Ten: The True Story of the Little Black Dress and Nine Other Fashion Favorites. Nancy MacDonell Smith explores the origins, meaning, and remarkable staying power of the ten staples of feminine fashion: * the little black dress * the white shirt * the cashmere sweater * blue jeans * the suit * high heels * pearls * lipstick * sneakers * the trench coat Tracing the evolution of each item from inception to icon status, she reveals the history and social significance of each, from the black dress's associations with danger and death to the status implications of the classic white shirt. Incorporating sources from history, literature, magazines, and cinema, as well as her own witty anecdotes, Smith has created an engaging, informative guide to modern style.","Castle of Wizardry (The Belgariad #4). A magnificent epic set against a history of seven thousand years of the struggles of Gods and Kings and men - of strange lands and events - of fate and a prophecy that must be fulfilled! THE BELGARIAD It had all begun with the theft of the Orb that had so long protected the West from the evil God Torak. Before that, Garion had been a simple farm boy. Afterward, he discovered that his aunt was really the Sorceress Polgara and his grandfather was Belgarath, the Eternal Man. Then, on the long quest to recover the Orb, Garion found to his dismay that he, too, was a sorcerer. Now, at last, the Orb was regained and the quest was nearing its end. Of course, the questors still had to escape from this crumbling enemy fortress and flee across a desert filled with Murgo soldiers searching for them, while Grolim Hierarchs strove to destroy them with dark magic. Then, somehow, they must manage to be in Riva with the Orb by Erastide. After that, however, Garion was sure that his part in these great",Artful Paper Dolls: New Ways to Play with a Traditional Form.,Romeo and Juliet.,"A Midsummer Night's Dream. Unique features of the Signet Classic Shakespeare An extensive overview of Shakespeare's life, world, and theater by the general editor of the Signet Classic Shakespeare series, Sylvan Barnet A special introduction to the play by the editor, Wolfgang Clemen, University of Munich A note on the sources from which Shakespeare derived A Midsummer Night's Dream Dramatic criticism from the past and present: commentaries by William Hazlitt, John Russell Brown, Frank Kermode, Linda Bamber, Camille Wells Slights A comprehensive stage and screen history of notable actors, directors, and productions of A Midsummer Night's Dream, then and now Text, notes, and commentaries printed in the clearest, most readable type Up-to-date list of recommended readings","The Time Machine. The Time Traveller, a dreamer obsessed with traveling through time, builds himself a time machine and, much to his surprise, travels over 800,000 years into the future. He lands in the year 802701: the world has been transformed by a society living in apparent harmony and bliss, but as the Traveler stays in the future he discovers a hidden barbaric and depraved subterranean class. Wells's transparent commentary on the capitalist society was an instant bestseller and launched the time-travel genre. The Time Machine inspired the international bestseller The Map of Time byFelix J. Palma. As a gift to our readers, we are including the first three chapters of The Map of Timein this ebook edition.","Trace (Kay Scarpetta #13). Now freelancing from south Florida, Dr. Kay Scarpetta returns to Richmond, Virginia, the city that turned its back on her five years ago. Investigating the death of a young girl, she must follow the twisting leads and track the strange details in order to make the dead speak-and to reveal the sad truth that may be more than even she can bear.",1001 Illuminated Initial Letters: 27 Full-Color Plates.,"Don't Get Too Comfortable: The Indignities of Coach Class The Torments of Low Thread Count The Never-Ending Quest for Artisanal Olive Oil and Other First World Problems. A bitingly funny grand tour of our culture of excess from an award-winning humorist. Whether David Rakoff's contrasting the elegance of one of the last flights of the supersonic Concorde with the good-times-and-chicken-wings populism of Hooters Air; working as a cabana boy at a South Beach hotel; or traveling to a private island off the coast of Belize to watch a soft-core video shoot where he is provided with his very own personal manservant rarely have greed, vanity, selfishness, and vapidity been so mercilessly skewered. Somewhere along the line, our healthy self-regard has exploded into obliterating narcissism; our manic getting and spending have now become celebrated as moral virtues. Simultaneously a Wildean satire and a plea for a little human decency, Don t Get Too Comfortableshows that far from being bobos in paradise, we are in a special circle of gilded-age hell.","The Red Badge of Courage & The Veteran. One of the greatest works of American literature, The Red Badge of Couragegazes fearlessly into the bright hell of war through the eyes of one young soldier, the reluctant Henry Fleming. Written by Stephen Crane at the age of twenty-one, the novel imagines the Civil War's terror and loss with an unblinking vision so modern and revolutionary that, upon publication, critics hailed it as a work of literary genius. Ernest Hemingway declared, ""There was no real literature of our Civil War . . . until Stephen Crane wrote The Red Badge of Courage."" This Modern Library Paperback Classics edition includes the short story ""The Veteran,"" Crane's tale of an aged Civil War soldier looking back at his past.","Switch on the Night. A LONELY LITTLE boy who is scared of the dark sits in his room alone, with only light for company, until a little girl named Dark appears and shows him that light switches don't just switch off the light--they switch on the night. And to switch on the night is to switch on the stars, the moon, the crickets, and the frogs. With the Dillons' dreamlike illustrations, Switch on the Nightis sure to reassure any child who has felt afraid of the unkown; the story will also impress adult readers with its imaginative approach to understanding that which is different. ""Bradbury's story of a boy who conquers his fear of the night with the help of a child named Dark has been newly illustrated with appropriately mysterious, dramatic artwork, clearly influenced by M. C. Escher's work.""--The Horn Book ""The Dillons' interpretation works well intellectually and aesthetically.""--Booklist","Das Parfum. Die Geschichte eines Mörders. Von Jean-Baptiste Grenouille, dem finsteren Helden, sei nur verraten, dass er 1738 in Paris, in einer stinkigen Fischbude, geboren wird. Die Ammen, denen das Kerlchen an die Brust gelegt wird, halten es nur ein paar Tage mit ihm aus: Er sei zu gierig, ausserdem vom Teufel besessen, wofur es untrugliche Indizien gebe: den fehlenden Duft, den unverwechselbaren Geruch, den Sauglinge auszustromen pflegen.",Jimmy Corrigan: El Chico más Listo del Mundo.,"The Portable Chaucer. Both The Canterbury Talesand Troilus and Cressidaare presented complete in this anthology, in fresh modern translations by Theodore Morrison that convey both the gravity and gaiety of the Middle English originals. The Portable Chauceralso contains selections from The Book of Duchess, The House of Fame, The Bird's Parliament, and The Legend of Good Women,together with short poems. Morrison's introduction is vital for its insights into Chaucer as man and artist, and as a product of the Middle Ages whose shrewdness, humor, and compassion have a wonderfully contemporary ring.","Unleashing the Ideavirus: Stop Marketing AT People! Turn Your Ideas into Epidemics by Helping Your Customers Do the Marketing thing for You.. The book that sparked a marketing revolution. ""This is a subversive book. It says that the marketer is not--and ought not to be--at the center of successful marketing. The customer should be. Are you ready for that?"" --From the Foreword by Malcolm Gladwell, author of The Tipping Point. Counter to traditional marketing wisdom, which tries to count, measure, and manipulate the spread of information, Seth Godin argues that the information can spread most effectively from customer to customer, rather than from business to customer. Godin calls this powerful customer-to- customer dialogue the ideavirus, and cheerfully eggs marketers on to create an environment where their ideas can replicate and spread. In lively detail, Godin looks at the ways companies such as PayPal, Hotmail, GeoCities, even Volkswagen have successfully launched ideaviruses. He offers a ""recipe"" for creating your own ideavirus, identifies the key factors in the successful spread of an ideavirus (powerful sneezers, hives,",Jojo's Bizarre Adventure Tome 14: Le revolver est plus fort que l'épée (Stardust Crusaders #3).,"War and Peace. Widely considered the greatest novel ever written in any language, War and Peacehas as its backdrop Napoleon's invasion of Russia and at its heart three of the most memorable characters in literature: Pierre Bezukhov, a quixotic young man in search of spiritual joy; Prince Andrey Bolkonsky, a cynical intellectual transformed by the suffering of war; and the bewitching and impulsive Natasha Rostov, daughter of a count. As they seek fulfillment, fall in love, make mistakes, and become scarred by battle in different ways, these characters and their stories interweave with those of a huge cast, from aristocrats to peasants, from soldiers to Napoleon himself. In this first English translation in more than forty years, Anthony Briggs faithfully reveals Tolstoy's art in stirring prose, clearing up ambiguities that have plagued many modern translations. This volume also includes an afterword by eminent historian Orlando Figes, a list of characters, descriptions of the three main battles, chapt","Odd Thomas (Odd Thomas #1). ""The dead don't talk. I don't know why."" But they do try to communicate, with a short-order cook in a small desert town serving as their reluctant confidant. Odd Thomas thinks of himself as an ordinary guy, if possessed of a certain measure of talent at the Pico Mundo Grill and rapturously in love with the most beautiful girl in the world, Stormy Llewellyn. Maybe he has a gift, maybe it's a curse, Odd has never been sure, but he tries to do his best by the silent souls who seek him out. Sometimes they want justice, and Odd's otherworldly tips to Pico Mundo's sympathetic police chief, Wyatt Porter, can solve a crime. Occasionally they can prevent one. But this time it's different. A mysterious man comes to town with a voracious appetite, a filing cabinet stuffed with information on the world's worst killers, and a pack of hyena-like shades following him wherever he goes. Who the man is and what he wants, not even Odd's deceased informants can tell him. His most ominous clue is a page ri",鋼之鍊金術師 2.,"Street of the Five Moons (Vicky Bliss #2). Vicky Bliss, a brain with a body like a centerfold, often has a tough time getting people to take her seriously. But when it comes to medieval history, this blonde beauty knows her stuff -- and she's a master at solving mysteries that would turn the art world upside down.Vicky gasped at the sight of the exquisite gold pendant her boss at Munich's National Museum held in his hand. The Charlemagne talisman replica, along with a note in hieroglyphs, was found sewn into the suit pocket of an unidentified man found dead in an alley. Vicky vows to find the master craftsman who created it. It's a daring chase that takes her all the way to Rome and through the dusty antique centers and moonlit streets of the most romantic city in the world. But soon she's trapped in a treacherous game of intrigue that could cost her life -- or her heart...","Think Like a Guy: How to Get a Guy by Thinking Like One. How are you going to snag one if you don't know how to....Think Like a Guy? E! News anchor Giuliana DePandi knows that if you want a little piece of his heart, you're going to have to learn to get into his head--and she shares her knowledge as an on-the-town dater in L.A. into this funny but oh-so-practical and effective volume. DePandi knows what it's like ""out there"", and has done extensive field work to learn what turns guys off...and on. Here's a pop quiz: Should you ...mention your mom on a first date? ...cook a guy breakfast after your first sleepover at his place? ...pick at your food when he takes you to dinner? ...tell him how many lovers you've had before he came along? ...leave him long voicemails if you can't reach him on the phone? The resounding answer to all the questions above, according to DePandi, is: NO! You should, in fact, be busy and breezy, offer to pay for dinner, leave short voicemails (and none at all if you don't have anything concrete to say), stay well-dres","Gerald's Game. Gerald und Jessie Burlingame haben sich in ihr einsames Sommerhaus zuruckgezogen. Gerald mochte dem eintonigen Eheleben etwas Schwung verleihen und fesselt seine Frau ans Bett. Jessie halt gar nichts von den neuen Sexspielchen ihres Mannes und versetzt ihm einen Tritt - mit fur ihn todlichen Folgen. Mit Handschellen ans Bett gefesselt, beginnt fur Jessie ein qualender Albtraum: Nachts bekommt sie unheimlichen Besuch...","Slowness. Milan Kundera's lightest novel, a divertimento, an opera buffa, Slownessis also the first of this author's fictional works to have been written in French. Disconcerted and enchanted, the reader follows the narrator of Slownessthrough a midsummer's night in which two tales of seduction, separated by more than two hundred years, interweave and oscillate between the sublime and the comic. Underlying this libertine fantasy is a profound meditation on contemporary life: about the secret bond between slowness and memory, about the connection between our era's desire to forget and the way we have given ourselves over to the demon of speed. And about ""dancers"" possessed by the passion to be seen, for whom life is merely a perpetual show emptied of every intimacy and every joy.","Focus: The Future of Your Company Depends on It. What's the secret to a company's continued growth and prosperity? Internationally known marketing expert Al Rieshas the answer: focus. His commonsense approach to business management is founded on the premise that long-lasting success depends on focusing on core products and eschewing the temptation to diversify into unrelated enterprises. Using real-world examples, Ries shows that in industry after industry, it is the companies that resist diversification, and focus instead on owning a category in consumers' minds, that dominate their markets. He offers solid guidance on how to get focused and how to stay focused, laying out a workable blueprint for any company's evolution that will increase market share and shareholder value while ensuring future success.","Tanglewreck. A little way in the future, Time is distorting. Time Tornados are causing havoc. People are whirled out of their own time, never to return, and a woolly mammoth has been seen on the banks of the River Thames","The Bonesetter's Daughter. Ruth Young and her widowed mother, LuLing, have always had a tumultuous relationship. Now, before she succumbs to forgetfulness, LuLing gives Ruth some of her writings, which reveal a side of LuLing that Ruth has never known. . . . In a remote mountain village where ghosts and tradition rule, LuLing grows up in the care of her mute Precious Auntie as the family endures a curse laid upon a relative known as the bonesetter. When headstrong LuLing rejects the marriage proposal of the coffinmaker, a shocking series of events are set in motion-all of which lead back to Ruth and LuLing in modern San Francisco. The truth that Ruth learns from her mother's past will forever change her perception of family, love, and forgiveness.",What Came Before He Shot Her (Inspector Lynley #14).,"Enslaved by Ducks. The book that Entertainment Weeklycalled ""hilarious,"" Publishers Weeklydeclared ""a true pleasure,"" Booklistcalled ""heartwarming,"" and the Dallas Morning Newspraised as ""rich and funny"" is now available in paperback. When Bob Tarte bought a house in rural Michigan, he was counting on a tranquil haven. Then Bob married Linda. She wanted a rabbit, which seemed innocuous enough until the bunny chewed through their electrical wiring. And that was just the beginning. Before long, Bob found himself constructing cages, buying feed, clearing duck waste, and spoon-feeding a menagerie of furry and feathery residents. His life of quiet serenity vanished, and he unwittingly became a servant to a relentlessly demanding family. Whether commiserating with Bob over the fate of those who are slaves to their animals or regarding his story as a cautionary tale about the rigors of animal ownership, readers on both sides of the fence have found Tarte's story of his chaotic squawking household irresistible--","Writing the Novel: From Plot to Print. For years, readers have turned to Lawrence Block's novels for mesmerizing entertainment. And for years, writers have turns to Block's ""Writing the Novel"" for candid, conversational, practical advice on how to put a publishable novel on paper.","The Complete Sherlock Holmes Volume II. ""eccentric, arrogant, and ingenious Sherlock Holmes. He and his trusted friend, Dr. Watson, step from Holmes's comfortable quarters at 221b Baker Street into the swirling fog of Victorian London to exercise that unique combination of detailed observation, vast knowledge, and brilliant deduction. Inevitably, Holmes rescues the innocent, confounds the guilty, and solves the most perplexing puzzles known to literature. Volume II The Complete Sherlock Holmes begins with The Return of Sherlock Holmes, in which Conan Doyle resurrects his famous detective after he had killed him off in the last tale in The memoirs of Sherlock Holmes (found in Volume I of The Complete Sherlock Holmes). The first story in The Return features the infamously inventive explanation of how Holmes escaped certain death. Along with His Last Bow, The Case Book of Sherlock Holmes, and The Valley of Fear, this collection also includes a pair of parodies, ""The Field Bazaar"" and ""How Watson Learned the Trick,"" and two essa","Cradle to Cradle: Remaking the Way We Make Things. ""Reduce, reuse, recycle,"" urge environmentalists; in other words, do more with less in order to minimize damage. But as architect William McDonough and chemist Michael Braungart point out in this provocative, visionary book, such an approach only perpetuates the one-way, ""cradle to grave"" manufacturing model, dating to the Industrial Revolution, that creates such fantastic amounts of waste and pollution in the first place. Why not challenge the belief that human industry must damage the natural world? In fact, why not take nature itself as our model for making things? A tree produces thousands of blossoms in order to create another tree, yet we consider its abundance not wasteful but safe, beautiful, and highly effective. Waste equals food. Guided by this principle, McDonough and Braungart explain how products can be designed from the outset so that, after their useful lives, they will provide nourishment for something new. They can be conceived as ""biological nutrients"" that will easi","The Malloreon Vol. 1: Guardians of the West / King of the Murgos / Demon Lord of Karanda (The Malloreon #1-3). Discover the magic of The Malloreon-David Eddings's acclaimed series, the sequel to his bestselling The Belgariad. Now the first three Malloreon books appear in a single volume, taking us on an epic quest across strange lands among gods, kings, sorcerers, and ordinary men. It is a gripping tale of two ancient warring destinies fighting a battle of good against evil. Garion has slain the evil God Torak and is now the King of Riva. The prophecy has been fulfilled-or so it seems. For there is a dire warning, as a great evil brews in the East. Now Garion once again finds himself with the fate of the world resting on his shoulders. When Garion's infant son is kidnapped by Zandramas, the Child of Dark, a great quest begins to rescue the child. Among those on the dangerous mission are Garion and his wife, Queen Ce'Nedra, and the immortal Belgarath the Sorcerer and his daughter, Polgara. They must make their way through the foul swamps of Nyissa, then into the lands of the Murgos. Along the wa",Any Woman's Blues.,"Three Complete Novels: Postmortem / Body Of Evidence / All That Remains (Kay Scarpetta #1 #2 #3). Here, in one volume, are three thrilling Kay Scarpetta mysteries: ""Postmortem"", ""Body Of Evidence"" and ""All That Remains"". Patricia Cornwell's experience as a prize-winning crime reporter and in the Virginia chief medical examiner's office inform these brilliantly plotted and vividly told stories. Praised by the critics and readers alike, Cornwell's Kay Scarpetta mysteries are a must for every reading list. The new Kay Scarpetta mystery Unnatural Exposure will be released June 30. The paperback edition of Cause of Death is due out July 15.","How To Meditate: An Anthology Of Talks On Meditation And ""Meditation: The Bridge Is Flowing But The River Is Not"".","Metamorphoses: Volume I Books I-VIII. The Metamorphoses is a Latin narrative poem by the Roman poet Ovid, considered his magnum opus. Comprising fifteen books and over 250 myths, the poem chronicles the history of the world from its creation to the deification of Julius Caesar within a loose mythico-historical framework. Book I - The Creation, the Ages of Mankind, the flood, Deucalion and Pyrrha, Apollo and Daphne, Io, Phaeton. Book II - Phaeton (cont.), Callisto, the raven and the crow, Ocyrhoe, Mercury and Battus, the envy of Aglauros, Jupiter and Europa. Book III - Cadmus, Diana and Actaeon, Semele and the birth of Bacchus, Tiresias, Narcissus and Echo, Pentheus and Bacchus. Book IV - The daughters of Minyas, Pyramus and Thisbe, the Sun in love, Salmacis and Hermaphroditus, the daughters of Minyas transformed, Athamas and Ino, the transformation of Cadmus, Perseus and Andromeda. Book V - Perseus' fight in the palace of Cepheus, Minerva meets the Muses on Helicon, the rape of Proserpina, Arethusa, Triptolemus. Book VI -","The Sea. The author of The Untouchable(""contemporary fiction gets no better than this""--Patrick McGrath, The New York Times Book Review) now gives us a luminous novel about love, loss, and the unpredictable power of memory. The narrator is Max Morden, a middle-aged Irishman who, soon after his wife's death, has gone back to the seaside town where he spent his summer holidays as a child--a retreat from the grief, anger, and numbness of his life without her. But it is also a return to the place where he met the Graces, the well-heeled vacationing family with whom he experienced the strange suddenness of both love and death for the first time. The seductive mother; the imperious father; the twins--Chloe, fiery and forthright, and Myles, silent and expressionless--in whose mysterious connection Max became profoundly entangled, each of them a part of the ""barely bearable raw immediacy"" of his childhood memories. Interwoven with this story are Morden's memories of his wife, Anna--of their life togeth","The Twenty-Seventh City. St. Louis, Missouri, is a quietly dying river city until it hires a new police chief: a charismatic young woman from Bombay, India, named S. Jammu. No sooner has Jammu been installed, though, than the city's leading citizens become embroiled in an all-pervasive political conspiracy. A classic of contemporary fiction, The Twenty-Seventh Cityshows us an ordinary metropolis turned inside out, and the American Dream unraveling into terror and dark comedy.","The History of the Siege of Lisbon. ""If proofreaders were given their freedom and did not have their hands and feet tied by a mass of prohibitions more binding than the penal code, they would soon transform the face of the world, establish the kingdom of universal happiness, giving drink to the thirsty, food to the famished, peace to those who live in turmoil, joy to the sorrowful ... for they would be able to do all these things simply by changing the words ..."" The power of the word is evident in Portuguese author Jose Saramago's novel, The History of the Siege of Lisbon. His protagonist, a proofreader named Raimundo Silva, adds a key word to a history of Portugal and thus rewrites not only the past, but also his own life. Brilliantly translated from the Portuguese by Giovanni Pontiero, The History of the Siege of Lisbon is a meditation on the differences between historiography, historical fiction, and ""stories inserted into history."" The novel is really two stories in one: the reimagined history of the 1147 siege of L",L'Orient c'est l'Orient.,"Experiencing Father's Embrace. Experiencing Father's Embrace is an excellent resource for anyone interested in growing or ministering in the Father's love message. The author's style of writing makes this book easy to read, yet it is one of the most thorough and profoundly impacting books available on knowing God as a Father.",A Companion to Plato's Republic.,"The Long Hard Road Out of Hell. The 150,000-copy national bestselling autobiography of Marilyn Manson, America's most controversial celebrity icon, is offered with a bonus chapter not included in the hardcover. ""By turns moving, funny, appalling, disturbing. . . . There has never been anything like it"".--""Rolling Stone"". 80 b&w photos. 16-page color insert. In his twenty-nine years, rock idol Manson has experienced more than most people have (or would want to) in a lifetime. Now, in his shocking and candid memoir, he takes readers from backstage to gaol cells, from recording studios to emergency rooms, from the pit of despair to the top of the charts, and recounts his metamorphosis from a frightened Christian schoolboy into the most feared and revered music superstar in the country.",Bright Lights Big City.,"Candy Licker. SHE WANTED TO BE A HIP-HOP STAR BUT THE STREETS GOT IN THE WAY. Have you ever laid down with a man and wasn't sure if you'd ever get back up? Tossed the sheets with a bone-knocking fear that only a hard-core hustler could produce? Sexed him like your life depended on it, because in reality it did? You still with me? Then let's roll over to my house. Harlem. 145th Street. Grab a seat and brace yourself as I show you the kind of pain that street life and so-called success can bring. . . . Nineteen-year-old Candy Raye Montana, an ex--drug runner for the Gabriano crime family and a former foster child, dreams of becoming a hip-hop superstar, if only someone will discover her talents. Someone does. Mega music producer and king thug of Harlem, Junius ""Hurricane"" Jackson, CEO of the House of Homicide recording studio, cuts a deal and puts Candy on the stage. Suddenly she is a hot new artist on the notorious Homicide Hitz record label. Her career takes off and she blazes the charts, but it's n",The Wicked (Vampire Huntress #8).,"Orlando. Virginia Woolf's Orlando 'The longest and most charming love letter in literature', playfully constructs the figure of Orlando as the fictional embodiment of Woolf's close friend and lover, Vita Sackville-West. Spanning three centuries, the novel opens as Orlando, a young nobleman in Elizabeth's England, awaits a visit from the Queen and traces his experience with first love as England under James I lies locked in the embrace of the Great Frost. At the midpoint of the novel, Orlando, now an ambassador in Costantinople, awakes to find that he is a woman, and the novel indulges in farce and irony to consider the roles of women in the 18th and 19th centuries. As the novel ends in 1928, a year consonant with full suffrage for women. Orlando, now a wife and mother, stands poised at the brink of a future that holds new hope and promise for women.",The Brothers Karamazov.,"Her Smoke Rose Up Forever. These 18 darkly complex short stories and novellas touch upon human nature and perception, metaphysics and epistemology, and gender and sexuality, foreshadowing a world in which biological tendencies bring about the downfall of humankind. Revisions from the author's notes are included, allowing a deeper view into her world and a better understanding of her work. The Nebula Award-winning short story Love Is the Plan, the Plan Is Death, the Hugo Award-winning novella The Girl Who Was Plugged In, and the Hugo and Nebula Award-winning novella Houston, Houston, Do You Read? are included. The stories of Alice Sheldon, who wrote as James Tiptree Jr. ( Up the Walls of the World ) until her death in 1987, have been heretofore available mostly in out-of-print collections. Thus the 18 accomplished stories here will be welcomed by new readers and old fans. ''The Screwfly Solution'' describes a chilling, elegant answer to the population problem. In ''Love Is the Plan the Plan Is Death,'' the title",Oh Say Can You Say?. A collection of silly tongue-twisters.,"The Deeds of the Disturber (Amelia Peabody #5). Can fear kill? There are those who believe so but Amelia Peabody is skeptical. A respected Egyptologist and amateur sleuth, Amelia has foiled felonious schemes from Victoria's England to the Middle East. And she doubts that it was a Nineteenth-Dynasty mummy's curse that caused the death of a night watchman in the British Museum. The corpse was found sprawled in the mummy's shadow, a look of terror frozen on the guard's face. What or who killed the unfortunate man is a mystery that seems too intriguingly delicious for Amelia to pass up, especially now that she, her dashing archaeologist husband, Emerson, and their precocious son, Ramses, are back on Britain's shores. But a contemporary curse can be as lethal as one centuries old and the foggy London thoroughfares can be as treacherous as the narrow, twisting alleyways of Cairo after dark when a perpetrator of evil deeds sets his murderous sights on his relentless pursuer... Amelia Peabody!",Encuentro en el Ártico (Artemis Fowl #2).,The Art of Richard P. Feynman.,"Selected Verse. Selected verse from the poet who ""expanded the scope of lyric poetry"" (Rafael Campo, The Washington Post). The work of Federico Garcia Lorca, Spain's greatest modernist poet, has long been admired for its emotional intensity and metaphorical brilliance. The revised Selected Verse, which incorporates changes made to Garcia Lorca's Collected Poems, is an essential addition to any poetry lover's bookshelf. In this bilingual edition, Garcia Lorca's poetic range comes clearly into view, from the playful Suitesand stylized evocations of Andalusia to the utter gravity and mystery of the final elegies, confirming his stature as one of the twentieth century's finest poets.","Clay's Quilt. ""A YOUNG WRITER OF IMMENSE GIFTS . . . One of the best books I have ever read about contemporary life in the mountains of southern Appalachia. . . . I could see and feel Free Creek, and the mountain above it."" -LEE SMITH After his mother is killed, four-year-old Clay Sizemore finds himself alone in a small Appalachian mining town. At first, unsure of Free Creek, he slowly learns to lean on its residents as family. There's Aunt Easter, who is always filled with a sense of foreboding, bound to her faith above all; quiltmaking Uncle Paul; untamable Evangeline; and Alma, the fiddler whose song wends it way into Clay's heart. Together, they help Clay fashion a quilt of a life from what treasured pieces surround him. . . . ""A long love poem to the hills of Kentucky. It flows with Appalachian music, religion, and that certain knowledge that your people will always hold you close. . . . Like the finely stitched quilts that Clay's Uncle Paul labors over, the author sews a flawless seam of folks",Jonny Reb & Billy Yank.,"A Sparrow Falls (Courtney #3). A Sparrow Falls, another gripping installment in Wilbur Smith's Courtney Family Adventure series Mark Anders grew up on eight thousand acres of African land that bore his family name. Then he fought in Europe's Great War and, upon returning to his ancestral home, he saw savagery unlike any other.... In Africa, Mark's family estate has been despoiled. His grandfather has died under mysterious circumstances. And he has inherited a murderous enemy--the rogue scion of the powerful Courtney clan--in an altogether new kind of war. Now, Mark will make a fateful choice between two women. Journey into the wilderness to uncover his grandfather's fate. Find his way through battles raging between fathers and sons, generals and politicians, and nature and man. In an age of violent conflict, Mark Anders will live or die for justice--and his fight will echo across a country he always loved....",PHP & MySQL For Dummies.,"The Da Vinci Code (Robert Langdon #2). While in Paris on business, Harvard symbologist Robert Langdon receives an urgent late-night phone call: the elderly curator of the Louvre has been murdered inside the museum. Near the body, police have found a baffling cipher. While working to solve the enigmatic riddle, Langdon is stunned to discover it leads to a trail of clues hidden in the works of Da Vinci -- clues visible for all to see -- yet ingeniously disguised by the painter. Langdon joins forces with a gifted French cryptologist, Sophie Neveu, and learns the late curator was involved in the Priory of Sion -- an actual secret society whose members included Sir Isaac Newton, Botticelli, Victor Hugo, and Da Vinci, among others. In a breathless race through Paris, London, and beyond, Langdon and Neveu match wits with a faceless powerbroker who seems to anticipate their every move. Unless Langdon and Neveu can decipher the labyrinthine puzzle in time, the Priory's ancient secret -- and an explosive historical truth -- will be l","First Last and Always (Sweet Dreams #96). Gina Renzi dreams of becoming a doctor. She loves her volunteer work as a candy striper at the hospital. And when she starts dating soccer star Dave Bender, her life seems perfect - at last she has it all! But Dave refuses to listen when Gina talks about the hospital because his little sister is dying of a disease no one can cure. He doesn't want anything to do with doctors - or with girls who want to be doctors. As Dave's distrust and anger grow, Gina wonders if she can hold on to her dreams - without losing Dave's love.",Hamlet (Oxford Bookworms Library: Stage 2).,Jeeves and The Feudal Spirit (Jeeves #11).,"Five on a Treasure Island (Famous Five #1). The very first Famous Five adventure, featuring Julian, Dick, Anne, not forgetting tomboy George and her beloved dog, Timmy! There's a shipwreck off Kirrin Island! But where is the treasure? The Famous Five are on the trail - looking for clues - but they're not alone! Someone else has got the same idea. Time is running out for the Famous Five, who will follow the clues and get to the treasure first?","When Night Falls. The drowning death of her young daughter and the bitter divorce that followed drove ex-prosecutor Lannie Sullivan into a reclusive existence at her secluded mountain cabin. Now, after two years of isolation, Lannie's finally emerging from her fragile bubble -- losing herself in volunteer work at a local summer-stock theater and in the embrace of her neighbor, rugged timber baron Drum Rutledge. But Lannie's new life is in deadly danger. Not only is Drum haunted by secrets that could shatter both their lives, but less than a day's journey away, a vicious rapist has been released from jail. Jeb Bassert has sworn vengeance on the woman he holds responsible for sending him to prison for nine bitter years -- Lannie. In a thriller as chilling and dark as a moonless midnight, Linda Anderson delivers a shattering tale of murder, deception, and redemptive love.","A Book of Common Prayer. Writing with the telegraphic swiftness and microscopic sensitivity that have made her one of our most distinguished journalists, Joan Didion creates a shimmering novel of innocence and evil.A Book of Common Prayeris the story of two American women in the derelict Central American nation of Boca Grande. Grace Strasser-Mendana controls much of the country's wealth and knows virtually all of its secrets; Charlotte Douglas knows far too little. ""Immaculate of history, innocent of politics,"" she has come to Boca Grande vaguely and vainly hoping to be reunited with her fugitive daughter. As imagined by Didion, her fate is at once utterly particular and fearfully emblematic of an age of conscienceless authority and unfathomable violence.","A Case of Need. Written as Jeffery Hudson in 1968. A Case of Needis Michael Crichton's award-winning debut novel, written shortly after he completed his medical internship. Set against the ever-building pressure and pace of a large Boston medical center, the tensions flare-and explode-when a surgical operation tragically ends in death, raising countless questions. Was it accidental malpractice? A violation of the Hippocratic oath? Or cold-blooded murder?","Children of the Drake (Dragonrealm: Origins #2). The Vraad have managed to claim a portion of their new home, but bitter feelings cause trouble between factions. As Lord Barakas attempts to bring all under his iron rule, the wizard Dru Zeree's daughter Sharissa discovers that their adopted world has other plans in mind, plans that will forever change the Vraad in ways they cannot even fathom...and would fear if they knew the truth.","Ferdydurke. In this bitterly funny novel by the renowned Polish author Witold Gombrowicz. a writer finds himself tossed into a chaotic world of schoolboys by a diabolical professor who wishes to reduce him to childishness. Originally published in Poland in 1937. Ferdydurke became an instant literary sensation and catapulted the young author to fame. Deemed scandalous and subversive by Nazis. Stalinists. and the Polish Communist regime in turn. the novel (as well as all of Gombrowicz's other works) was officially banned in Poland for decades. It has nonetheless remained one of the most influential works of twentieth-century European literature. Ferdydurke is translated here directly from the Polish for the first time. Danuta Borchardt deftly captures Gombrowicz's playful and idiosyncratic style. and she allows English speakers to experience fully the masterpiece of a writer whom Milan Kundera describes as ""one of the great novelists of our century."" ""Extravagant. brilliant. disturbing. brave. funn",Study Bible: NIV.,"The Erotic Phenomenon. While humanists have pondered the subject of love to the point of obsessiveness, philosophers have steadfastly ignored it. One might wonder whether the discipline of philosophy even recognizes love. The word philosophy means ""love of wisdom,"" but the absence of love from philosophical discourse is curiously glaring. So where did the love go? In The Erotic Phenomenon,Jean-Luc Marion asks this fundamental question of philosophy, while reviving inquiry into the concept of love itself. Marion begins his profound and personal book with a critique of Descartes' equation of the ego's ability to doubt with the certainty that one exists--""I think, therefore I am""--arguing that this is worse than vain. We encounter being, he says, when we first experience love: I am loved, therefore I am; and this love is the reason I care whether I exist or not. This philosophical base allows Marion to probe several manifestations of love and its variations, including carnal excitement, self-hate, lying and per","Six Easy Pieces: Essentials of Physics Explained by Its Most Brilliant Teacher (Helix). This classic book is an essential introduction to the world of physics by one of its greatest teachers and icons. Richard Feynman inspired people around the world with his scientific brilliance, endless curiosity about the world and unorthodox outlook on life. Here he guides the reader through the very basics of physics, including atoms, energy, force, the relation of physics to other sciences, the theory of gravitation and quantum behaviour. Presenting complex ideas in simplified, understandable terms and using illustrations such as shooting bullets, waves on a seashore and even Dennis the Menace's building blocks, Six Easy Pieces gets to the heart of how the world works.","The Trolley Car Family. What is a trolley car family? A family that lives in a trolley car, of course. And that's exactly what the Parkers--all six of them--do after Pa loses his job as a trolley car driver. It's the end of the line, but the start of an infectiously funny adventure for the Trolley Car Family.","Sexing the Cherry. In a fantastic world that is and is not seventeenth-century England, a baby is found floating in the Thames. The child, Jordan, is rescued by Dog Woman and grows up to travel the world like Gulliver, though he finds that the world's most curious oddities come from his own mind. Winterson leads the reader from discussions on the nature of time to Jordan's fascination with journeys concealed within other journeys, all with a dizzying speed that shoots the reader from epiphany to shimmering epiphany.","Youth in Revolt: The Journals of Nick Twisp. Six months in the life of the world's most dangerous teenager. Youth in Revoltis the journals of Nick Twisp, California's most precocious diarist, whose ongoing struggles to make sense out of high school, deal with his divorced parents, and lose his virginity result in his transformation from an unassuming fourteen-year-old to a modern youth in open revolt. As his family splinters, worlds collide, and the police block all routes out of town, Nick must cope with economic deprivation, homelessness, the gulag of the public schools, a competitive Type-A father, murderous canines (in triplicate), and an inconvenient hair trigger on his erectile response--all while vying ardently for the affections of the beauteous Sheeni Saunders, teenage goddess and ultimate intellectual goad.","Down Under. Alternative cover editions for this ISBN can be found  As his many British fans already know, bearded Yankee butterball Bill Bryson specialises in going to countries we think we know well, only to return with travelogues that are surprisingly cynical and yet shockingly affectionate. It's a unique style, possibly best suited to the world's weirder destinations. It's helpful here: Bryson's latest subject is that oddest of continents, Australia.For a start, there's the oddly nasty fauna and flora. Barely a page of Down Underis without its lovingly detailed list of lethal antipodean critters: sociopathic jellyfish, homicidal crocs, toilet-dwelling death-spiders, murderous shrubs (yes, shrubs). Bryson's absorbing and informative portrait is of a terrain so intractably vast, a land so climatically extreme, it seems expressly designed to daunt and torment humankind. This very user-unfriendliness throws up another Aussie paradox. If the country is so hostile how come the natives are so laid",The Dream Master.,"Man's Search for Meaning. Psychiatrist Viktor Frankl's memoir has riveted generations of readers with its descriptions of life in Nazi death camps and its lessons for spiritual survival. Between 1942 and 1945 Frankl labored in four different camps, including Auschwitz, while his parents, brother, and pregnant wife perished. Based on his own experience and the experiences of others he treated later in his practice, Frankl argues that we cannot avoid suffering but we can choose how to cope with it, find meaning in it, and move forward with renewed purpose. Frankl's theory-known as logotherapy, from the Greek word logos (""meaning"")-holds that our primary drive in life is not pleasure, as Freud maintained, but the discovery and pursuit of what we personally find meaningful.","Creating the Worlds of Star Wars: 365 Days. The Barnes & Noble Review Creating the Worlds of Star Wars: 365 Daysby John Knoll -- the three-time Academy Award-nominated visual effects supervisor for the Star Wars prequel trilogy -- is a visually spectacular, absolutely essential book for Star Wars fans. This intimate, lovingly produced look at how the various environments in all six Star Wars movies were created contains literally 1,000 full-color behind-the-scenes photographs (some quite candid!) and insightful commentary by Knoll, as well as a bonus CD-ROM with cool QuickTime panoramas of some of the sets included in the three motion picture prequels. From the old-school motion-control photography in 1977's Star Wars: Episode IV -- A New Hopeto the revolutionary refinement of digital cinema in 2005's Star Wars: Episode III -- Revenge of the Sith,this book contains it all -- from creating low-altitude shots of the Death Star out of plywood to producing breathtaking digi-matte paintings of the Jedi Council Chamber skyline and aer","The Invisibles Vol. 7: The Invisible Kingdom. For countless millennia the world has been subjected to an all-encompassing apocalyptic conspiracy. Through clandestine movements, a sinister secret organization has been creating a hypnotic state of conformity and control through their manipulation of the government, business, and entertainment industry. But from the shadows, a subversive group of anarchists called the Invisibles have opposed their plot and looked to create self-awareness and freedom through disobedience. Now with the fate of all mankind hanging in the balance, the secret freedom fighting cult make their final rebellious stand in the war of control versus chaos. Collects Volume 3, Issues #1-12","Les Misérables. Les Miserablesis the great epic masterpiece of the mid-nineteenth century. Begun in 1845, the year Louis Philippe conferred a peerage and a lifetime seat in the Senate upon Victor Hugo, it was completed when the author was living in exile in the Channel Islands. Les Miserablesis a product as well as a document of the political, social, and religious upheaval that followed the Napoleonic Wars and Europe's great democratic revolutions. The story is centered on Jean Valjean, a peasant who enters the novel a hardened criminal after nineteen years spent in prison for stealing a loaf of bread for the starving children of his sister. The path of Valjean's last twenty-five years, leading from the French provinces to the battlefield of Waterloo and the ramparts of Paris during the Uprising of 1832, introduces us to secret societies of revolutionaries and the vast world of the French lower classes. Jean Valjean's flight from the police agent Javert--the prototype of over a hundred years of ficti","Faust Part Two. This is a new translation of Faust, Part Two by David Luke, whose translation of Faust, Part I was the winner of the European Poetry Translation Prize. Here, Luke expertly imitates the varied verse-forms of the original, and provides a highly readable and actable translation which includes an introduction, full notes, and an index of classical mythology.","Truth and Beauty. Ann Patchett and the late Lucy Grealy met in college in 1981, and, after enrolling in the Iowa Writers' Workshop, began a friendship that would be as defining to both of their lives as their work. In Grealy's critically acclaimed memoir Autobiography of a Face, she wrote about losing part of her jaw to childhood cancer, years of chemotherapy and radiation, and endless reconstructive surgeries. In Truth and Beauty, the story isn't Lucy's life or Ann's life but the parts of their lives they shared. This is a portrait of unwavering commitment that spans twenty years, from the long winters of the Midwest to surgical wards to book parties in New York. Through love, fame, drugs, and despair, this is what it means to be part of two lives that are intertwined--and what happens when one is left behind.","The Season: A Candid Look at Broadway. (Limelight). Playwright/novelist/screenwriter Goldman analyzes Broadway from the perspective of the audiences, playwrights, critics, producers and actors. ""Very nearly perfect... It is a loose-limbed, gossipy, insider, savvy, nuts-and-bolts report on the annual search for the winning numbers that is now big-time American commercial theatre."" Christopher Lehmann-Haupt, The New York Times","The Broken Wings. This is the exquisitely tender story of love that beats desperately against the taboos of Oriental tradition. With great sensitivity, Gibran describes his passion as a youth for Selma Karamy, the girl of Beirut who first unfolded to him the secrets of love. But it is a love that is doomed by a social convention which forces Selma into marriage with another man. Portraying the happiness and infinite sorrow of his relationship with Selma, Gibran at the same time probes the spiritual meaning of human existence with profound compassion. **Lightning Print On Demand Title","The Spectator Bird. This tour-de-force of American literature and a winner of the National Book Award is a profound, intimate, affecting novel from one of the most esteemed literary minds of the last century and a beloved chronicler of the West. Joe Allston is a cantankerous, retired literary agent who is, in his own words, ""just killing time until time gets around to killing me"". His parents and his only son are long dead, leaving him with neither ancestors nor descendants, tradition nor ties. His job, trafficking the talent of others, has not been his choice. He has passed through life as a spectator, before retreating to the woods of California in the 1970s with only his wife, Ruth, by his side. When an unexpected postcard from a long-lost friend arrives, Allston returns to the journals of a trip he has taken years before, a journey to his mother's birthplace where he once sought a link with his past. Uncovering this history floods Allston with memories, both grotesque and poignant, and finally vindica","Hour Game (Sean King & Michelle Maxwell #2). Two disgraced former Secret Service officers team up to solve a series of copy-cat crimes in this exciting new thriller by a master of the game. Sean King was momentarily distracted when a presidential candidate he'd been guarding was assassinated a few feet from where he stood, and Michelle Maxwell left the Service under a similar cloud when she lost a ""protectee"" to an ingenious kidnapping scheme, events told in Baldacci's typical terse, fast-paced style in Split Second. Now partners in a private investigation firm in a small Virginia town, they're hired to investigate a burglary at the home of a wealthy local family. But even before the chief suspect in the break-in meets his death in a gruesome slaying reminiscent of a serial killer long since caught and punished, King and Maxwell get caught up in a string of other murders, each of which copies the techniques of another madman, from San Francisco's Zodiac Killer to Chicago's infamous John Wayne Gacy. While the two protagonists aren","After the Wreck I Picked Myself Up Spread My Wings and Flew Away. In the raw was how the world felt now. My feelings were raw, my thoughts were raw and hurtful like knife blades. . . . In the blue had been my place to hide, now In the raw there was nowhere to hide. Jenna Abbott separates her life into two categories: before the wreck and after the wreck, Before the wreck, she was leading a normal life with her mom in suburban New York. After the wreck, Jenna is alone, trying desperately to forget what happened that day on the bridge. She's determined not to let anyone get close to her -- she never wants to feel so broken and fragile again. Then Jenna meets Crow. He is a powerfully seductive enigma, and Jenna is instantly drawn to him. Crow is able to break down the wall that Jenna has built around her emotions, and she surprises herself by telling him things she hasn't told anyone else. Can Jenna bring herself to face the memories she's tried so hard to erase?",Lonely Planet Londres.,"Z for Zachariah. Is anyone out there? Ann Burden is sixteen years old and completely alone. The world as she once knew it is gone, ravaged by a nuclear war that has taken everyone from her. For the past year, she has lived in a remote valley with no evidence of any other survivors. But the smoke from a distant campfire shatters Ann's solitude. Someone else is still alive and making his way toward the valley. Who is this man? What does he want? Can he be trusted? Both excited and terrified, Ann soon realizes there may be worse things than being the last person on Earth.","Sole Survivor. A catastrophic, unexplainable plane crash leaves three hundred and thirty dead--no survivors. Among the victims are the wife and two daughters of Joe Carpenter, a Los Angeles Post crime reporter. A year after the crash, still gripped by an almost paralyzing grief, Joe encounters a woman named Rose, who claims to have survived the crash. She holds out the possibility of a secret that will bring Joe peace of mind. But before he can ask any questions, she slips away. Driven now by rage (have the authorities withheld information?) and a hope almost as unbearable as his grief (if there is one survivor, are there others?), Joe sets out to find the mysterious woman. His search immediately leads him into the path of a powerful and shadowy organization hell-bent on stopping Rose before she can reveal what she knows about the crash. Sole Survivor unfolds at a heart-stopping pace, as a desperate chase and a shattering emotional odyssey lead Joe to a truth that will force him to reassess everythin","Inversions (Culture #6). On a backwards world with six moons, an alert spy reports on the doings of one Dr. Vosill, who has mysteriously become the personal physician to the king, despite being a foreigner and, even more unthinkably, a woman. Vosill has more enemies than she first realizes. But then she also has more remedies to hand than those who wish her ill can ever guess. Elsewhere, in another palace across the mountains, a man named DeWar serves as chief bodyguard to the Protector General of Tassasen, a profession he describes as the business of ""assassinating assassins."" DeWar, too, has his enemies, but his foes strike more swiftly, and his means of combating them are more direct. None trust the doctor, while the bodyguard trusts no one, but what is the hidden commonality linking their disparate histories? Spiraling around a central core of mystery, deceit, love, and betrayal, Inversionsis a dazzling work of science fiction from a versatile and imaginative author writing at the height of his remarkable","The Secret Swan. Shana Abe has captured the imagination of readers everywhere with her superbly sensual tales of forbidden love. Now she weaves the exquisite story of a man and woman torn apart by fate -- who realize years later that love's second bloom is the one that matters most. At fifteen Lady Amiranth St. Clare became the bride of Tristan Geraint. She thought all of her dreams had come true -- until she learned on her wedding day that Tristan had married her only for her bloodline. A week later Tristan deserted her for the glories of battle. Heartbroken, Amiranth felt she'd been abandoned, not knowing that Tristan had become a prisoner of war -- nor that he would one day return to the life he didn't know he wanted until it was taken away. Eight long years pass before Tristan finally comes home. A beautiful woman greets him in the garden, claiming to be Amiranth's cousin. Yet somehow she seems hauntingly familiar, with an ethereal radiance that stirs him deep within his heart. Is she really his wi","The Gonzo Way: A Celebration of Dr. Hunter S. Thompson. Anita Thompson. The Gonzo Way. [Golden]: Fulcrum, [2007]. First edition, first printing. Twelvemo. 112 pages. Anita Thompson pays tribute to her late husband as a writer and as a citizen, through her own words and those of who knew him best. With elegant prose and entertaining anecdotes, she reveals a Hunter Thompson who was much more than a mere embodiment of sex, drugs, and rock and roll.",No Better Place to Die: The Battle Of Stones River.,"The Door in the Hedge. Master storyteller Robin McKinley here spins two new fairy tales and retells two cherished classics. All feature princesses touched with or by magic. There is Linadel, who lives in a kingdom next to Faerieland, where princesses are stolen away on their seventeenth birthdays-and Linadel's seventeenth birthday is tomorrow. And Korah, whose brother is bewitched by the magical Golden Hind; now it is up to her to break the spell. Rana must turn to a talking frog to help save her kingdom from the evil Aliyander. And then there are the twelve princesses, enspelled to dance through the soles of their shoes every night. . . . These are tales to read with delight!","The Fall. Elegantly styled, Camus' profoundly disturbing novel of a Parisian lawyer's confessions is a searing study of modern amorality.","The Complete Aubrey/Maturin Novels (5 Volumes). Patrick O'Brian's twenty-one-volume Aubrey/Maturin series has delighted generations of devoted fans, inspired a blockbuster film, and sold millions of copies in twenty-four languages. These five omnibus volumes, beautifully produced and boxed, contain 7,000 pages of what has often been described as a single, continuous narrative. They are a perfect tribute for such a literary achievement, and a perfect gift for the O'Brian enthusiast.",Algernon Charlie and I: A Writer's Journey: Plus the Complete Original Short Novelette Version of Flowers for Algernon.,"As the Crow Flies. Growing up in the slums of East End London, Charlie Trumper dreams of someday running his grandfather's fruit and vegetable barrow. That day comes suddenly when his grandfather dies leaving him the floundering business. With the help of Becky Salmon, an enterprising young woman, Charlie sets out to make a name for himself as ""The Honest Trader"". But the brutal onset of World War I takes Charlie far from home and into the path of a dangerous enemy whose legacy of evil follows Charlie and his family for generations. Encompassing three continents and spanning over sixty years, As the Crow Fliesbrings to life a magnificent tale of one man's rise from rags to riches set against the backdrop of a changing century.","Same Sex in the City. At last, a relationship book for lesbians that tells it like it is . . . The journey from sexual curiosity to finally coming out can be confusing without proper guidance and empowering role models. In Same Sex in the City, Lauren Levin and Lauren Blitzer provide women -- gay, straight, and bi-curious alike -- with firsthand insight into the advantages and challenges of being a lesbian. In prose that is at once honest and uplifting, the Laurens relate their own experiences and those of the women they interview, as well as offer serious advice, titillating anecdotes, and a positive attitude for girls who know they're gay -- and for those who are wondering about their sexuality but are not yet sure whether their Prince Charming is really a Cinderella. Part confessional, part informational, Same Sex in the Citycovers the gamut of lesbian life -- from dating to heartbreak, and from hooking up with straight chicks to raising a family. It's the book that millions of women have been searching",Desert Heat (Joanna Brady #1).,Inventive Paris clothes: 1909-1939 - a photographic essay.,"The BFG: A Set of Plays. Roald Dahl fans will rejoice at the opportunity to bring their favorite books and characters to life. Five of Dahl's hugely popular, beloved books have been adapted into winning plays for children. With useful tips on staging, props, and costumes, these plays can be produced with a minimum amount of resources and experience. Teachers, parents, and children everywhere will recognize Quentin Blake's appealing classic cover art and will find these easy-to-perform plays to be a great source of entertainment!","The Forest House (Avalon #2). The Forest House--prequel to The Mists of Avalon, Marion Zimmer Bradley's beloved and enduring classic--is a mesmerizing epic of one woman's mythic role at a turning point in history.In a Britain struggling to survive Roman invasion, Eilan is the daughter of a Druidic warleader, gifted with visions and marked by fate to become a priestess of the Forest House. But fate also led Eilan to Gaius, a soldier of mixed blood, son of the Romans sent to subdue the native British. For Gaius, Eilan felt forbidden love, and her terrible secret will haunt her even as she is anointed as the new High Priestess. With mighty enemies poised to destroy the magic the Forest House shelters, Eilan must trust in the power of the great Goddess to lead her through the treacherous labyrinth of her destiny. Take The Forest HouseQuiz!","The Laws Of Our Fathers (Kindle County Legal Thriller #4). In Kindle County, a woman is killed in an apparent random drive-by shooting. The woman turns out to be the ex-wife of a prominent state senator and an old acquaintance of Judge Sonia Klonsky, on whose desk the case lands. As the pursuit of justice takes bizarre and unusual turns, Judge Klonsky is brought face-to-face with a host of extraordinary personalities and formidable enemies bent on her destruction.",The Coen Brothers: Interviews.,Lützen 1632 : climax of the Thirty Years war.,At the Mountains of Madness and Other Novels of Terror.,"Eyes of Prey (Lucas Davenport #3). Lucas Davenport, ""one of the best hard-case cops on the crime scene today"" (Houston Post) returns in John Sandford's #1 New York Timesbestselling Prey series... Lieutenant Davenport's sanity was nearly shattered by two murder investigations. Now he faces something worse...Two killers. One hideously scarred. The other strikingly handsome, a master manipulator fascinated with all aspects of death. The dark mirror of Davenport's soul...This is the case that will bring Davenport back to life. Or push him over the edge. With a New Introduction by John Sandford","Eaters of the Dead. The year is A.D. 922. A refined Arab courtier, representative of the powerful Caliph of Bagdad, encounters a party of Viking warriors who are journeying to the barbaric North. He is appalled by their Viking customs -- the wanton sexuality of their pale, angular women, their disregard for cleanliness , their cold-blooded human sacrifices. But it is not until they reach the depths of the Northland that the courtier learns the horrifying and inescapable truth: He has been enlisted by these savage, inscrutable warriors to help combat a terror that plagues them -- a monstrosity that emerges under cover of night to slaughter the Vikings and devour their flesh . . .","Stephen Hawking's Universe: The Cosmos Explained. Stephen Hawking's A Brief History of Timehas sold over 9 million copies worldwide. Now, in everyday language, Stephen Hawking's Universereveals step-by-step how we can all share his understanding of the cosmos, and our own place within it. Stargazing has never been the same since cosmologists discovered that galaxies are moving away from each other at an extraordinary speed. It was this understanding of the movement of galaxies that allowed scientists to develop a theory of how the universe was created--the Big Bang theory. Working with this theory, Stephen Hawking and other physicists felt challenged to come up with a scientific picture that would tackle the fundamental question: what is the nature of the universe? Stephen Hawking's Universe charts this work and provides simple explanations for phenomena that arouse our curiosity. This work is a voyage of discovery with an astonishing set of conclusions that will enable us to understand how matter can be produced from nothing at all a","The Man Who Smiled (Kurt Wallander #4). Dalgliesh. ""The Man Who Smiled"" begins with Wallander deep in a personal and professional crisis after killing a man in the line of duty; eventually, he vows to quit the Ystad police force for good. Just then, however, a friend who had asked Wallander to look into the death of his father winds up dead himself, shot three times. Ann-Britt Hoglund, the department's first female detective, proves to be his best ally as he tries to pierce the smiling facade of his prime suspect, a powerful multinational business tycoon. But just as he comes close to uncovering the truth, the same shadowy threats responsible for the murders close in on Wallander himself. All of Mankell's talents as a master of the modern police procedural--which have earned him legions of fans worldwide--are showcased in ""The Man Who Smiled,"" which is the fourth of the eight Wallander books published thus far in English.","That's Silly. Two playmates have unusual experiences with both magic and pretending, and are not always sure which is which.","The Fourth Hand. While reporting a story from India, a New York television journalist has his left hand eaten by a lion; millions of TV viewers witness the accident. In Boston, a renowned hand surgeon awaits the opportunity to perform the nation's first hand transplant; meanwhile, in the distracting aftermath of an acrimonious divorce, the surgeon is seduced by his housekeeper. A married woman in Wisconsin wants to give the one-handed reporter her husband's left hand--that is, after her husband dies. But the husband is alive, relatively young, and healthy.","When the Wind Blows (When the Wind Blows #1). Frannie O'Neill is a caring young veterinarian living in the Colorado Rockies, trying to erase the memory of her beloved husband's mysterious murder. It is not long before another neighbor suddenly dies, and FBI agent Kit Harrison arrives at Frannie's doorstep. Kit is hell-bent on solving the heinous case despite resounding protests from the FBI and the thrashing of his own internal demons.Kit secretly pursues the investigation, yet witnesses keep turning up dead. Then Frannie stumbles upon an astonishing discovery in the nearby woods, and their lives are altered in ways they could never have imagined. Simply knowing the secret of Max -- the terrified 11-year-old girl with an amazing gift -- could mean death. As more and more diabolical details are unearthed, the murderer's bloody trail ultimately leads the trio to an underground lab network, known as ""the School."" Here scientists conduct shockingly incomprehensible experiments involving children and genetic alteration.","Anyone But You. For Nina Askew, turning forty means freedom--from the ex-husband, freedom from their stuffy suburban home, freedom to focus on what she wants for a change. And what she wants is something her ex always vetoed--a puppy. A bouncy, adorable puppy. Instead she gets...Fred. Overweight, middle-aged, a bit smelly and obviously depressed, Fred is light-years from perky. But he does manage to put Nina in the path of Alex Moore, her gorgeous, younger-by-a-decade neighbor. Alex seems perfect--he's a sexy, seemingly sane, surprisingly single E.R. doctor--but the age gap convinces Nina that anyone but Alex would be better relationship material. But with every silver-haired stiff she dates, the more she suspects it's the young, dog-loving doc she wants to sit and stay!","Queen of Sorcery (The Belgariad #2). The master Sorcerer Belgarath and his daughter Polgara the arch-Sorceress were on the trail of the Orb, seeking to regain its saving power before the final disaster prophesized by the legends. And with them went Garion, a simple farm boy only months before, but now the focus of the struggle. He had never believed in sorcery and wanted no part of it. Yet with every league they traveled, the power grew in him, forcing him to acts of wizardry he could not accept. ""BELGARIAD is exactly the kind of fantasy I like. It has magic, adventure, humor, mystery, and a certain delightful human insight."" =PIERS ANTHONY=","Democracy in America. Democracy in Americahas had the singular honor of being even to this day the work that political commentators of every stripe refer to when they seek to draw large conclusions about the society of the USA. Alexis de Tocqueville, a young French aristocrat, came to the young nation to investigate the functioning of American democracy & the social, political & economic life of its citizens, publishing his observations in 1835 & 1840. Brilliantly written, vividly illustrated with vignettes & portraits, Democracy in Americais far more than a trenchant analysis of one society at a particular point in time. What will most intrigue modern readers is how many of the observations still hold true: on the mixed advantages of a free press, the strained relations among the races & the threats posed to democracies by consumerism & corruption. So uncanny is Tocqueville's insight & so accurate are his predictions, that it seems as tho he were not merely describing the American identity but actually hel","Chosen Prey (Lucas Davenport #12). A New York Timesbestseller! Lucas Davenport returns in the most harrowing and unexpected Prey novel yet--the story of a congenial man, and his most uncongenial obsession... An art history professor and writer and cheerful pervert, James Qatar had a hobby: he took secret photographs of women and turned them into highly sexual drawings. One day, he took the hobby a step further and... well, one thing led to another, and he had to kill her. A man in his position couldn't be too careful, after all. And you know something? He liked it. Already faced with a welter of confusion in his personal life, Deputy Chief Lucas Davenport decides to take this case himself, hoping that some straightforward police work will clear his head, but as the trail begins to take some unexpected turns, it soon becomes clear that nothing is straightforward about this killer. The man is learning as he goes, Lucas realizes, taking great strides forward with each murder. He is becoming a monster -- and Lucas may have","The Axe (The Master of Hestviken #1). Set in thirteenth-century Norway, a land racked by political turmoil and bloody family vendettas, The Axeis the first volume in Sigrid Undset's epic tetralogy, The Master of Hestviken. In it we meet Olav Audunsson and Ingunn Steinfinnsdatter, who were betrothed as children and raised as brother and sister. Now, in the heedlessness of youth, they become lovers, unaware that their ardor will forge the first link in a chain of murder, exile, and disgrace. Soaringly romantic and psychologically nuanced, Undset's novel is also a meticulous re-creation of a world split between pagan codes of retribution and the rigors of Christian piety--a world where law is a fragile new invention and manslaughter is so common that it's punishable by fine.","Blood Meridian or the Evening Redness in the West. An epic novel of the violence and depravity that attended America's westward expansion, Blood Meridianbrilliantly subverts the conventions of the Western novel and the mythology of the ""wild west."" Based on historical events that took place on the Texas-Mexico border in the 1850s, it traces the fortunes of the Kid, a fourteen-year-old Tennesseean who stumbles into the nightmarish world where Indians are being murdered and the market for their scalps is thriving.",The Reality Dysfunction Part 2: Expansion (Night's Dawn 1).,"The Tale of Genji. Yoshitaka Amano has been praised around the world for his lush watercolors and evocative work dealing with myth and legend. In The Tale of GenjiMr. Amano brings his considerable talent to retelling one of the most famous of Japanese myths: written by Murasaki Shikibu shortly after 1000 AD and considered by most scholars to be the first novel ever written, The Tale of Genjiis the story of the romantic adventures of Genji, the amazingly handsome prince and his many romantic conquests. Told through stunning paintings, Mr. Amano brings this classic story to life for a new generation. As one of the most respected stories of all time, The Tale of Genjiholds a worldwide place of honor among lovers of myth and legend. Will appeal to the legions of Vampire Hunter Dfans worldwide, as well as fans of his work on Sandman(written by New York Times-bestselling author Neil Gaiman) and Wolverine(with award-winning author Greg Rucka).","Holes (Holes #1). Stanley tries to dig up the truth in this inventive and darkly humorous tale of crime and punishment--and redemption. Ages 10+ Stanley Yelnats is under a curse. A curse that began with his no-good-dirty-rotten- pig-stealing-great-great-grandfather and has since followed generations of Yelnats. Now Stanley has been unjustly sent to a boys' detention center, Camp Green Lake, where the warden makes the boys ""build character"" by spending all day, every day, digging holes: five feet wide and five feet deep. It doesn't take long for Stanley to realize there's more than character improvement going on at Camp Green Lake. The boys are digging holes because the warden is looking for something. Stanley tries to dig up the truth in this inventive and darkly humorous tale of crime and punishment--and redemption.","The Annotated Huckleberry Finn. ""All modern American literature comes from one book by Mark Twain called Huckleberry Finn,"" Ernest Hemingway once declared. First published in 1885, the book has delighted millions of readers, while simultaneously riling contemporary sensibilities, and is still banned in many schools and libraries. Now, Michael Patrick Hearn, author of the best-selling The Annotated Wizard of Oz, thoroughly reexamines the 116-year heritage of that archetypal American boy, Huck Finn, and follows his adventures along every bend of the mighty Mississippi River. Hearn's copious annotations draw on primary sources including the original manuscript, Twain's revisions and letters, and period accounts. Reproducing the original E. W. Kemble illustrations from the first edition, as well as countless archival photographs and drawings, some of them previously unpublished, The Annotated Huckleberry Finnis a book no family's library can do without; it may well prove to be the classic edition of the great American no","The Wall. Riveting & compelling, The Walltells the inspiring story of forty men & women who escape the dehumanizing horror of the Warsaw ghetto. John Hersey's novel documents the Warsaw ghetto both as an emblem of Nazi persecution & as a personal confrontation with torture, starvation, humiliation & cruelty--a gripping, visceral story, impossible to put down.","Unearthly Neighbors. The anthropologist's dream... Monte Stewart was an extremely intelligent, somewhat contentious anthropologist with a sense of humor and a nonconformist approach to life. As an expert in his field, he was chosen to approach the first apparently human-like form of life ever to be encountered on another planet. Here was the chance he had been waiting for all his life --- an opportunity to make contact, to investigate, to ascertain the facts about an altogether new man-like species, with the added knowledge that the peace of the worlds depended upon the establishment of friendly relations. But Stewart and his team of experts couldn't get to first base. They tried for weeks --- then vicious unreasoned tragedy struck their camp. What had gone wrong? Who were these 'people'? Why had they attacked the humans? Stewart had failed in his mission; but for his own peace of mind he had to discover the answers, and he had to do it alone.",Ballet Class.,"Wickett's Remedy. The triumphant follow-up to the bestselling Bee Season, Wickett's Remedy is an epic but intimate novel about a young Irish-American woman facing down tragedy during the Great Flu epidemic of 1918.","Death in Kashmir. Written by celebrated author M. M. Kaye, Death in Kashmir is a wonderfully evocative mystery ... When young Sarah Parrish takes a skiing vacation to Gulmarg, a resort nestled in the mountains above the fabled Vale of Kashmir, she anticipates an entertaining but uneventful stay. But when she discovers that the deaths of two in her party are the result of foul play, she finds herself entrusted with a mission of unforeseen importance. And when she leaves the ski slopes for the Waterwitch, a private houseboat on the placid shores of the Dal Lake near Srinagar, she discovers to her horror that the killer will stop at nothing to prevent Sarah from piecing the puzzle together.","To the Lighthouse. The serene and maternal Mrs. Ramsay, the tragic yet absurd Mr. Ramsay, and their children and assorted guests are on holiday on the Isle of Skye. From the seemingly trivial postponement of a visit to a nearby lighthouse, Woolf constructs a remarkable, moving examination of the complex tensions and allegiances of family life and the conflict between men and women. As time winds its way through their lives, the Ramsays face, alone and simultaneously, the greatest of human challenges and its greatest triumph--the human capacity for change.","The Sea The Sea. Charles Arrowby, leading light of England's theatrical set, retires from glittering London to an isolated home by the sea. He plans to write a memoir about his great love affair with Clement Makin, his mentor both professionally and personally, and to amuse himself with Lizzie, an actress he has strung along for many years. None of his plans work out, and his memoir evolves into a riveting chronicle of the strange events and unexpected visitors--some real, some spectral--that disrupt his world and shake his oversized ego to its very core. In exposing the jumble of motivations that drive Arrowby and the other characters, Iris Murdoch lays bare ""the truth of untruth""--the human vanity, jealousy, and lack of compassion behind the disguises they present to the world. Played out against a vividly rendered landscape and filled with allusions to myth and magic, Charles's confrontation with the tidal rips of love and forgiveness is one of Murdoch's most moving and powerful tales.",Day and Night.,Wait Till Next Year: The Story of a Season When What Should've Happened Didn't and What Could've Gone Wrong Did. Readers relive a year in sports--from locker rooms to hotel rooms to newsrooms and even hospital rooms--alternating chapters and pooling their extensive wit and wisdom.,"Small Gods (Discworld #13). Just because you can't explain it, doesn't mean it's a miracle.' Religion is a controversial business in the Discworld. Everyone has their own opinion, and indeed their own gods. Who come in all shapes and sizes. In such a competitive environment, there is a pressing need to make one's presence felt. And it's certainly not remotely helpful to be reduced to be appearing in the form of a tortoise, a manifestation far below god-like status in anyone's book. In such instances, you need an acolyte, and fast. Preferably one who won't ask too many questions...",Mission Possible.,Interviews with John Kenneth Galbraith (Conversations with Public Intellectuals).,Bulgakov's the Master and Margarita: The Text as a Cipher.,"Aeschylus: The Oresteia (A Student Guide: Landmarks of World Literature). Simon Goldhill focuses on the play's themes--justice, sexual politics, violence, and the role of man in ancient Greek culture--in this general introduction to Aeschylus' Oresteia, one of the most important and influential of all Greek dramas. After exploring how Aeschylus constructs a myth for the city in which he lived, a final chapter considers the influence of the Oresteia on more contemporary theater. The volume's organized structure and guide to further reading will make it an invaluable reference for students and teachers. First Edition Hb (1992): 0-521-40293-X First Edition Pb (1992): 0-521-40853-9","An Ideal Husband. Although Oscar Wilde (1854-1900) created a wide range of poetry, essays, and fairy tales (and one novel) in his brief, tragic life, he is perhaps best known as a dramatist. His witty, clever drama, populated by brilliant talkers skilled in the art of riposte and paradox, are still staples of the theatrical repertoire. An Ideal Husbandrevolves around a blackmail scheme that forces a married couple to reexamine their moral standards -- providing, along the way, a wry commentary on the rarity of politicians who can claim to be ethically pure. A supporting cast of young lovers, society matrons, an overbearing father, and a formidable femme fatale continually exchange sparkling repartee, keeping the play moving at a lively pace. Like most of Wilde's plays, this scintillating drawing-room comedy is wise, well-constructed, and deeply satisfying. An instant success at its 1895 debut, the play continues to delight audiences over one hundred years later. An Ideal Husbandis a must-read for Wilde","The March. In 1864, Union general William Tecumseh Sherman marched his sixty thousand troops through Georgia to the sea, and then up into the Carolinas. The army fought off Confederate forces, demolished cities, and accumulated a borne-along population of freed blacks and white refugees until all that remained was the dangerous transient life of the dispossessed and the triumphant. In E. L. Doctorow's hands the great march becomes a floating world, a nomadic consciousness, and an unforgettable reading experience with awesome relevance to our own times. WINNER OF THE NATIONAL BOOK CRITICS CIRCLE AWARD WINNER OF THE PEN/FAULKNER AWARD NEW YORK TIMES BESTSELLER","Dune (Dune #1). Arrakis: un planeta desertico donde el agua es el bien mas preciado donde llorar a los muertos es el simbolo de maxima prodigalidad. Paul Atreides: un adolescente marcado por un destino singular, dotado de extranos poderes, abocado a convertirse en dictador, mesias y martir. Los Harkonnen: personificacion de las intrigas que rodean el Imperio Galactico, buscan obtener el control sobre Arrakis para disponer de la melange, preciosa especia y uno de los bienes mas codiciados del universo. Los Fremen: seres libre que han convertido el inhospito paraje de Dune en su hogar, y que se sienten orgullosos de su pasado y temerosos de su futuro. Dune: una obra maestra unanimemente reconocida como la mejor saga de ciencia ficcion de todos los tiempos.","The Sot-Weed Factor. Considered by critics to be Barth's most distinguished masterpiece, The Sot-Weed Factorhas acquired the status of a modern classic. Set in the late 1600s, it recounts the wildly chaotic odyssey of hapless, ungainly Ebenezer Cooke, sent to the New World to look after his father's tobacco business and to record the struggles of the Maryland colony in an epic poem. On his mission, Cooke experiences capture by pirates and Indians; the loss of his father's estate to roguish impostors; love for a farmer prostitute; stealthy efforts to rob him of his virginity, which he is (almost) determined to protect; and an extraordinary gallery of treacherous characters who continually switch identities. A hilarious, bawdy tribute to all the most insidious human vices, The Sot-Weed Factorhas lasting relevance for readers of all times.","The Amber Spyglass (His Dark Materials #3). Brings the intrigue of The Golden Compass and The Subtle Knife to a heart-stopping end, marking the final volume of His Dark Materials as the most powerful of the trilogy. The Amber Spyglass brings the intrigue of The Golden Compass and The Subtle Knife to a heart-stopping end, marking the final volume of His Dark Materials as the most powerful of the trilogy. Along with the return of Lyra, Will, Mrs. Coulter, Lord Asriel, Dr. Mary Malone, and Iorek Byrnison the armored bear, come a host of new characters: the Mulefa, mysterious wheeled creatures with the power to see Dust; Gallivespian Lord Roke, a hand-high spymaster to Lord Asriel; and Metatron, a fierce and mighty angel. So, too, come startling revelations: the painful price Lyra must pay to walk through the land of the dead, the haunting power of Dr. Malone's amber spyglass, and the names of who will live--and who will die--for love. And all the while, war rages with the Kingdom of Heaven, a brutal battle that--in its shocking out","Betsy's Wedding (Betsy-Tacy #10). Betsy returns from Europe to marry Joe Willard--and soon learns that beloved friend Tacy is expecting a baby! It's wartime in America, but Betsy, Joe, and their wonderful circle of friends brave their hardships together.","Only the Ring Finger Knows. It's the ultimate expression of love - to wear matching rings with your significant other, showing the world that you are a couple. High school student, Wataru Fujii, also wears one though he is single. When he accidentally switches rings with popular and handsome senior, Yuichi Kazuki, they discover that their rings pair up! Since then, Kazuki, who is known for being kind to all becomes strangely harsh to Wataru. They alternate between hot and cold, as in between clashes they begin to sort their feelings for one another. Are Wataru and Kazuki the worst of enemies or are they actually soulmates? Already a popular genre in Japan, especially among females, Yaoi, also known as the ""Boy's Love"" genre, is becoming a rising phenomenon in North America. As one of the top titles of its genre in Japan, Only The Ring Finger Knows, will sure to engage readers to a world of intimacy and unique emotion that is solely yaoi manga.","The Physics of Star Trek. What exactly ""warps"" when you are traveling at warp speed? What is the difference between the holodeck and a hologram? What happens when you get beamed up? Are time loops really possible, and can I kill my grandmother before I was born? Until now, fans of ""Star Trek"" were hard pressed to find answers to vital questions such as these. Now Lawrence M. Krauss, an internationally known theoretical physicist and educator, has written the quintessential physics book for Trekkers and non-Trekkers alike. Anyone who has ever wondered, ""Could this really happen?"" will gain useful insights into the ""Star Trek"" universe (and, incidentally, the real universe) in this charming and accessible volume. Krauss boldly goes where ""Star Trek"" has gone -- and beyond. He uses the ""Star Trek"" future as a launching pad to discuss the forefront of modern physics. From Newton to Hawking, from Einstein to Feynman, from Kirk to Janeway, Krauss leads the reader on a voyage to the world of physics as we now know it","Return of the Straight Dope. ""When inquiring minds want to know, there is someone to turn to for an answer."" WALL STREET JOURNAL Cecil Adams's first two books covered everything from the real lyrics to ""Louie, Louie,"" to whatever became of Einstein's brain. You probably thought you couldn't stand any more genius in one lifetime. Well, fasten your intellectual seat belts! Inside you'll find 100% guaranteed top quality brilliance on every page, as he winsomely and wisely answers questions like these: Can people really hear radio broadcasts through their teeth? What does Queen Elizabeth carry in that purse, anyway? So how DO porcupines mate? And many more. When you hear the answers, you'll be glad someone asked the questions.","The Last Assassin (John Rain #5). Barry Eisler has been compared to Forsyth, Ludlum, le Carre, Ian Fleming, and Graham Greene. But his latest thriller brings Eisler into a league of his own.Even for an average citizen, a love triangle is dangerous business. For assassin John Rain--""one of the most compelling lead characters in the genre"" (USA Today)--it's going to be downright deadly.When Rain learns that his former lover, Midori, has been raising their child in New York, Rain senses a chance for reconciliation, perhaps even for redemption. But Midori and the child are being watched by Rain's enemies, and Rain's sudden appearance puts them in terrible danger. To save them, Rain is forced to use the same deadly talents he had been hoping to leave behind. With the help of Tatsu, his one-time nemesis in the Japanese FBI; and Dox, the former Marine sniper whose good ol' boy persona masks a killer as deadly as Rain himself, Rain races against time to bring his enemies into the open and eliminate them forever. But to finish","The Beach House. Jack Mullen is a driven student of the law. His brother Peter is a servant of the rich, parking the cars of the Hamptons' elite --- and perhaps satisfying their more intimate needs as well. Then Peter's body is found on the beach. Jack knows the drowning was no accident, but someone's unlimited power and money have bought the cops, the judges, the system. Now Jack is learning a lesson in justice he never got in law school ... and his astonishing plan to beat the billionaires will have you reeling --- and cheering --- to the very last page.",Jacques der Fatalist und sein Herr.,"The Languages of Tolkien's Middle-Earth. The same delight that led Tolkien to invent fourteen different languages and assorted alphabets for his Middle-earth dwellers now leads many of his fans to puzzle out translations for the Rohirrim's battle cries and to write their love letters in Elvish. Here is the perfect handbook for all such enthusiasts as well as for serious students of language. It includes a full account of Tolkien the linguist, as well as telling how to write all the languages, with guides to grammar and pronunciation, and a complete dictionary of the fourteen languages. Here is a book to deepen and enhance our enjoyment of those classics of Middle-earth, The Hobbit, The Lord of the Rings,and The Silmarillion. Ruth Noel teaches remedial and developmental reading in Riverside, California. She is the author of The Mythology of Middle-earth,on the relation between The Lord of the Ringsand European myth in general. ""The author is convincing and fascinating as she connects Tolkien's fantasies with the hallowed myths","Waiting for the Barbarians. For decades the Magistrate has run the affairs of a tiny frontier settlement, ignoring the impending war between the barbarians and the Empire, whose servant he is. But when the interrogation experts arrive, he is jolted into sympathy for the victims, and into a quixotic act of rebellion which lands him in prison.","The Wild Trees: A Story of Passion and Daring. From the #1 bestselling author of The Hot Zone comes an amazing account of scientific and spiritual passion for the tallest trees in the world, the startling biosystem of Rthe canopy, S and those who are committed to the preservation of this astonishing and largely unknown world.","Star Trek Voyager Companion. The definitive guide to the entire Star Trek: Voyager series. This fully illustrated companion is absolutely packed with must-have information, including seven years of episode guides, original photographs and character profiles. All the main characters from the series have extended coverage, with actors giving personal insights and inside information on their roles. Every episode -- more than 170 in total -- is discussed in detail, each one accompanied by data points on the crew, the ship and its place in the Delta Quadrant. Plus there is a special index which features short summaries of all the episodes for quick and easy reference. Additional features include a particular focus on favourite themes which figure strongly in the Star Trek: Voyager universe, such as Captain Proton, Time Travel and Contact with the Alpha Quadrant. The book is packed with black and white pictures, including many on-set or behind-the-scenes photographs seen here for the first time. Starting with the Star T","Dispatches. ""He seems to have brought to this book the ear of a musician & the eye of a painter...the premier war correspondence of Vietnam.""-Washington Post ""The best book I have ever read on men & war in our time.""-John le Carre."" ""Dispatches puts the rest of us in the shade.""-Hunter S. Thompson Breathing in Hell sucks Khe Sanh Illumination rounds Colleagues Breathing out","Animal: The Definitive Visual Guide to the World's Wildlife. Unrivaled in its breadth and visual impact, this unique guide sets out to illustrate, describe, and explain the incredible range of creatures that make up the animal kingdom. Exceptional Coverage. This authoritative volume starts with a clear introduction to the animal world, examining the reasons for the apparently infinite variety of animal forms and major evolutionary developments. Animal anatomy, life cycles and the principles of classification are also explored. This is followed by a superbly illustrated survey of world habitats, showing how they have adapted to each environment, and the threats that face both wildlife and plants today. The main part of the book, an up-to-date and comprehensive animal catalog, looks in detail at each major group and provides fascinating profiles of over 2,000 individual species. Visually Breathtaking. Spectacular photographic portraits bring a vast array of animals vividly to life, with special features on well-known and important animals such as","The Chessmen of Mars (Barsoom #5). Impetuous and headstrong, Tara, Princess of Helium and daughter of John Carter, defies the elements by flying into a rare, fierce Martian storm. Hurtled half a planet from her home she is threatened by grotesque, flesh eating monsters and barbarous warriors.",Operating Instructions: A Journal of My Son's First Year.,"Carpe Jugulum (Discworld #23; Witches #6). In a fit of enlightenment democracy and ebullient goodwill, King Verence invites Uberwald's undead, the Magpyrs, into Lancre to celebrate the birth of his daughter. But once ensconced within the castle, these wine-drinking, garlic-eating, sun-loving modern vampires have no intention of leaving. Ever. Only an uneasy alliance between a nervous young priest and the argumentative local witches can save the country from being taken over by people with a cultivated bloodlust and bad taste in silk waistcoats. For them, there's only one way to fight. Go for the throat, or as the vampyres themselves say...Carpe Jugulum","Nixon Agonistes: The Crisis of the Self-Made Man. From one of America's most distinguished historians comes this classic analysis of Richard Nixon. By considering some of the president's opinions, Wills comes to the controversial conclusion that Nixon was actually a liberal. Both entertaining and essential, Nixon Agonistes captures a troubled leader and a struggling nation mired in a foolish Asian war, forfeiting the loyalty of its youth, puzzled by its own power, and looking to its cautious president for confidence. In the end, Nixon Agonistes reaches far beyond its assessment of the thirty-seventh president to become an incisive and provocative analysis of the American political machine.","At the Edge of the World (Crispin #2). The more I came to know of the world, the more I knew I knew it not. He was a nameless orphan, marked for death by his masters for an unknown crime. Discovering his name -- Crispin -- only intensified the mystery. Then Crispin met Bear, who helped him learn the secret of his full identity. And in Bear -- the enormous, red-bearded juggler, sometime spy, and everyday philosopher -- Crispin also found a new father and a new world. Now Crispin and Bear have set off to live their lives as free men. But they don't get far before their past catches up with them: To find freedom and safety, they may have to travel to the edge of the world -- even if it means confronting death itself. In this riveting sequel to the Newbery-Award winning Crispin: The Cross of Lead -- the second book in a planned trilogy -- Avi explores themes of war, religion, and family as he continues the adventures of Crispin and Bear.",Ecstasy.,"Heretics of Dune (Dune Chronicles #5). With more than ten million copies sold, Frank Herbert's magnificent Dunebooks stand among the major achievements of the human imagination.Leto Atreides, the God Emperor of Dune, is dead. In the fifteen hundred years since his passing, the Empire has fallen into ruin. The great Scattering saw millions abandon the crumbling civilization and spread out beyond the reaches of known space. The planet Arrakis-now called Rakis-has reverted to its desert climate, and its great sandworms are dying.Now, the Lost Ones are returning home in pursuit of power. And as factions vie for control over the remnants of the Empire, a girl named Sheeana rises to prominence in the wastelands of Rakis, sending religious fervor throughout the galaxy. For she possesses the abilities of the Fremen sandriders-fulfilling a prophecy foretold by the late God Emperor...",The Sun Rises: and Other Questions About Time and Seasons.,The Collected Works of C.S. Lewis.,"The Van (The Barrytown Trilogy #3). Jimmy Rabbitte, Sr. is unemployed, spending his days alone and miserable. When his best friend, Bimbo, also gets laid off, they keep by being miserable together. Things seem to look up when they buy a decrepit fish-and-chip van and go into business, selling cheap grub to the drunk and the hungry--and keeping one step ahead of the environmental health officers.","Illuminations: Essays and Reflections. Studies on contemporary art and culture by one of the most original, critical and analytical minds of this century. Illuminations includes Benjamin's views on Kafka, with whom he felt the closest personal affinity, his studies on Baudelaire and Proust (both of whom he translated), his essays on Leskov and on Brecht's Epic Theater. Also included are his penetrating study on ""The Work of Art in the Age of Mechanical Reproduction,"" an illuminating discussion of translation as a literary mode, and his thesis on the philosophy of history. Hannah Arendt selected the essays for this volume and prefaces them with a substantial, admirably informed introduction that presents Benjamin's personality and intellectual development, as well as his work and his life in dark times. Reflectionsthe companion volume to this book, is also available as a Schocken paperback. Unpacking My Library, 1931 The Task of the Translator, 1913 The Storyteller, 1936 Franz Kafka, 1934 Some Reflections on Kafka, 1938 What",Freakonomics: A Rogue Economist Explores the Hidden Side of Everything.,"Bravo Two Zero. In January 1991, eight members of the SAS regiment embarked upon a top secret mission that was to infiltrate them deep behind enemy lines. Under the command of Sergeant Andy McNab, they were to sever the underground communication link between Baghdad and north-west Iraq, and to seek and destroy mobile Scud launchers. Their call sign: BRAVO TWO ZERO. Each man laden with 15 stone of equipment, they patrolled 20km across flat desert to reach their objective. Within days, their location was compromised. After a fierce fire fight, they were forced to escape and evade on foot to the Syrian border. In the desperate action that followed, though stricken by hypothermia and other injuries, the patrol 'went ballistic'. Four men were captured. Three died. Only one escaped. For the survivors, however, the worst ordeals were to come. Delivered to Baghdad, they were tortured with a savagery for which not even their intensive SAS training had prepared them. Bravo Two Zerois a breathtaking account of S",Kopfüber ins Glück.,"A Breath of Snow and Ashes (Outlander #6). A Breath of Snow and Ashescontinues the extraordinary story of 18th-century Scotsman Jamie Fraser and his 20th-century wife, Claire. The year is 1772, and on the eve of the American Revolution, the long fuse of rebellion has already been lit. Men lie dead in the streets of Boston, and in the backwoods of North Carolina, isolated cabins burn in the forest. With chaos brewing, the governor calls upon Jamie Fraser to unite the backcountry and safeguard the colony for King and Crown. But from his wife Jamie knows that three years hence the shot heard round the world will be fired, and the result will be independence -- with those loyal to the King either dead or in exile. And there is also the matter of a tiny clipping from The Wilmington Gazette, dated 1776, which reports Jamie's death, along with his kin. For once, he hopes, his time-traveling family may be wrong about the future.","Blueberry Muffin Murder (Hannah Swensen #3). Preparations are underway for Lake Eden, Minnesota's annual Winter Carnival--and Hannah Swensen is set to bake up a storm at her popular shop, The Cookie Jar. Too bad the honor of creating the official Winter Carnival cake went to famous lifestyle maven Connie Mac--a half-baked idea, in Hannah's opinion. She suspects Connie Mac is a lot like the confections she whips up on her cable TV cooking show--sweet, light, and scrumptious-looking, but likely to leave a bitter taste in your mouth. Hannah's suspicions are confirmed when Connie Mac's limo rolls into town. Turns out America's ""Cooking Sweetheart"" is bossy, bad-tempered, and downright domineering. Things finally boil over when Hannah arrives at The Cookie Jar to find the Winter Carnival cake burnt to a crisp--and Connie Mac lying dead in her pantry, struck down while eating one of Hannah's famous blueberry muffins. Next thing Hannah knows, the police have declared The Cookie Jar's kitchen crime scene off-limits. She's a baker without","Your and My Secret Vol. 1. Two teens see how the other half lives! She: cute but obnoxious, pretty but violent, petite but rude. He: shy and slender and secretly in love with her. When her mad scientist grandfather accidentally switches their bodies - it's freaky Friday, Saturday, Sunday, and every day! Akira Uehara is mortified when his best buddy starts hitting on him, and is embarrassed to look at himself in the mirror in her underwear! He can't wait to get back to being a boy. But Nanako Momoi has other ideas - she is starting to enjoy life in Akira's body!","Devil's Backbone. The Modoc Indians and American officials had been flirting with war in the Oregon Territory for some time. When Modoc chief Keintpoos murdered a Civil War hero during negotiations, the U.S. Army launched a deadly offensive against the rebel tribe. Besieged in the natural stronghold of the Lava Beds near Tule Lake, the Modocs waged bloody war for seven long months. Sergeant Seamus Donegan, on the trail of his uncle, Ian O'Rourke, arrived at Tule Lake just as the conflict erupted. Soon Donegan and the brooding O'Rourke found themselves embroiled in what would be the costliest war in frontier history...","The High Lord (Black Magician Trilogy #3). In the city of Imardin, where those who wield magic wield power, a young street-girl, adopted by the Magician's Guild, finds herself at the centre of a terrible plot that may destroy the entire world... Sonea has learned much at the magicians' guild and the other novices now treat her with a grudging respect. But she cannot forget what she witnessed in the High Lord's underground room - or his warning that the realm's ancient enemy is growing in power once more. As Sonea learns more, she begins to doubt her guildmaster's word. Could the truth really be as terrifying as Akkarin claims, or is he trying to trick her into assisting in some unspeakably dark scheme?",The Hitchhiker's Guide to the Galaxy: The Quintessential Phase (Hitchhiker's Guide: Radio Play #5).,"Nausicaä of the Valley of the Wind Vol. 4 (Nausicaä of the Valley of the Wind #4). A monk warns Nausicaa that omens of an apocalypse, Daikaisho, will appear soon and the forest will boil over to cover the land. His predictions appear to be coming true when she arrives in the Forest in the South and discovers Lord Miralupa has developed mutant spores for biological warfare, but the mould begins growing uncontrollably and there's no antidote.","Trail of Tears: The Rise and Fall of the Cherokee Nation. One of the many ironies of U.S. government policy toward Indians in the early 1800s is that it persisted in removing to the West those who had most successfully adapted to European values. As whites encroached on Cherokee land, many Native leaders responded by educating their children, learning English, and developing plantations. Such a leader was Ridge, who had fought with Andrew Jackson against the British. As he and other Cherokee leaders grappled with the issue of moving, the land-hungry Georgia legislatiors, with the aid of Jackson, succeeded in ousting the Cherokee from their land, forcing them to make the arduous journey West on the infamous ""Trail of Tears."" (Library Journal)","A Stranger Came Ashore. A wild, stormy night . . . A shipwreck . . . The sudden appearance of a stranger . . . That is how it all begins. The stranger is Finn Learson, a young and handsome man who seems to be the only survivor of the wreck. Finn Learson is charming and generous, and the Henderson family gladly give him shelter. Only young Robbie Henderson does not trust Finn Learson and his oddly unsettling secret smile. Robbie is sure that he is hiding something--but what? The clues Robbie finds are mysterious: Finn Learson's love of dancing; an ancient gold coin that Finn gives to the family; strange omens in the ashes of a fire; and beautiful young Elspeth Henderson's increasingly odd behavior. Then, in one frightening moment, Robbie recalls his grandfather's warning and discovers at last the terrible, incredible truth about Finn Learson. And Robbie knows it's up to him to save his sister . . . before it's too late. Only 12-year-old Robbie knows that the mysterious Finn Learson is the evil Great Selkie, th","Runaways Vol. 1: Pride and Joy. Meet Alex, Karolina, Gert, Chase, Molly and Nico - six young friends whose lives are about to take an unexpected dramatic turn. Discovering their parents are all secretly super-villains, together the teens run away from home and vow to turn the tables on their evil legacy!",Paula Spencer.,"Laura: The Life of Laura Ingalls Wilder. Courage, Adventure, Steadfast Love From a little house set deep in the Big Woods of Wisconsin, across Indian territory and into the Dakotas, Laura's family moved westward right along the frontier. Their true-life saga, beloved by countless millions of TV viewers and readers of the bestselling Little Housebooks, is one of spirit and devotion in the face of bitter-cold winters, wilderness trails, and heartbreaking personal tragedy. Here, for the first time, and drawing on her own unpublished memoirs is the endlessly fascinating full account of Laura's life from her earliest years through her enduring marriage to Almanzo Wilder, the ""farmer boy"" of her stories. Draws on documented records and Mrs. Wilder's unpublished memoirs to picture the people, places, and events that informed her ninety years and inspired her well-beloved Little House books","D.H. Lawrence and Italy: Twilight in Italy/Sea and Sardinia/Etruscan Places. A collection of three travel sketches on Italy, written when Lawrence was at the height of his creative powers. This edition features an introduction by Anthony Burgess.","Virginia Woolf: A Biography. The first full-scale biography of the eminent British writer, written by her nephew. Index; photographs.","Daughter of Fortune. Orphaned at birth, Eliza Sommers is raised in the British colony of Valparaiso, Chile, by the well-intentioned Victorian spinster Miss Rose and her more rigid brother Jeremy. Just as she meets and falls in love with the wildly inappropriate Joaquin Andieta, a lowly clerk who works for Jeremy, gold is discovered in the hills of northern California. By 1849, Chileans of every stripe have fallen prey to feverish dreams of wealth. Joaquin takes off for San Francisco to seek his fortune, and Eliza, pregnant with his child, decides to follow him. As we follow her spirited heroine on a perilous journey north in the hold of a ship to the rough-and-tumble world of San Francisco and northern California, we enter a world whose newly arrived inhabitants are driven mad by gold fever. A society of single men and prostitutes among whom Eliza moves--with the help of her good friend and savior, the Chinese doctor Tao Chien--California opens the door to a new life of freedom and independence for the you","Maigret Loses His Temper (Maigret #61). Inspector Maigret, after ruling out the possibility of professional murder and having his spotless reputation called into question, solves the perplexing murder of a nightclub owner who at first glance seems to have no enemies. Translated by Robert Eglesfield. Maigret is a registered trademark of the Estate of Georges Simenon.",El amor en los tiempos del cólera.,The Power of Truth: A Leading with Emotional Intelligence Conversation with Warren Bennis.,Power: Die 48 Gesetze Der Macht.,"The Monkey. 1 cassette (100 minutes). Read by David Purdham. Hal didn't know where it had come from, but every time the moth-eaten monkey with the strange yellow eyes clashed his cymbals, jang, jang, jang...somebody died. An irresistible urge had made him turn the key, but that was before he knew what it could do. He thought he had gotten rid of the evil thing once and for all. But the monkey had other plans for Hal.","Wild Swans: Three Daughters of China. A new edition of one of the best-selling and best-loved books of recent years, with a new introduction by the author. The publication of Wild Swans in 1991 was a worldwide phenomenon. Not only did it become the best-selling non-fiction book in British publishing history, with sales of well over two million, it was received with unanimous critical acclaim, and was named the winner of the 1992 NCR Book Award and the 1993 British Book of the Year Award. Few books have ever had such an impact on their readers. Through the story of three generations of women -- grandmother, mother and daughter -- Wild Swans tells nothing less than the whole tumultuous history of China's tragic twentieth century, from sword-bearing warlords to Chairman Mao, from the Manchu Empire to the Cultural Revolution. At times terrifying, at times astonishing, always deeply moving, Wild Swans is a book in a million, a true story with all the passion and grandeur of a great novel. For this new edition, Jung Chang has wr",The Poetry of Sylvia Plath.,"Firefly. When a fleshless corpse is found on a Florida estate, a reclusive caretaker, an investigative reporter, a police officer, and a woman discover that a creature whose victims die in a frenzied state of sexual ecstasy is preying on human beings.","Sounds Feelings Thoughts: Seventy Poems by Wislawa Szymborska. Translated and Introduced by Magnus J. Krynski and Robert A. Maguire Regarded as one of the best representatives since World War II of the rich and ancient art of poetry in Poland, Wislawa Szymborska (1923-2012) is, in the translators' words, -that rarest of phenomena: a serious poet who commands a large audience in her native land.- The seventy poems in this bilingual edition are among the largest and most representative offering of her work in English, with particular emphasis on the period since 1967. They illustrate virtually all her major themes and most of her important techniques. Describing Szymborka's poetry, Magnus Krynski and Robert Maguire write that her verse is marked by high seriousness, delightful inventiveness, a prodigal imagination, and enormous technical skill. She writes of the diversity, plenitude, and richness of the world, taking delight in observing and naming its phenomena. She looks on with wonder, astonishment, and amusement, but almost never with despair.",Fantastic! Wow! and Unreal!: A Book About Interjections and Conjunctions.,"Por los pelos. Tara, Katherine y Fintan son tres amigos irlandeses de la infancia que van a vivir a Londres. Los tres se juntan a menudo, se emborrachan, se rien y se confiesan las intimidades de sus vidas. Fintan descubre que tiene cancer y decide que sus amigos han de cumplir con los deseos de un hombre moribundo, Tara acaba dejando a su novio, un profesor antipatico con un gran complejo de inferioridad, Katherine conoce a un hombre y es muy feliz con su relacion. Ha pasado un ano, poco a poco Fintan se esta recuperando y todos han progresado algo en su vida personal. Hasta Tara tiene un novio mas aceptable.","Sketches from a Hunter's Album. Turgenev's first major prose work is a series of twenty-five Sketches: the observations and anecdotes of the author during his travels through Russia satisfying his passion for hunting. His album is filled with moving insights into the lives of those he encounters peasants and landowners, doctors and bailiffs, neglected wives and bereft mothers each providing a glimpse of love, tragedy, courage and loss, and anticipating Turgenev's great later works such as First Loveand Fathers and Sons. His depiction of the cruelty and arrogance of the ruling classes was considered subversive and led to his arrest and confinement to his estate, but these sketches opened the minds of contemporary readers to the plight of the peasantry and were even said to have led Tsar Alexander II to abolish serfdom.",The Week-End Book.,"Runaway. Alice Munro has been accused of telling the same story over and over, and to a certain extent the characterization is true. Her subject matter is inevitably the vagaries of love between middle-aged people in some rural Canadian setting, trapped there by the combination of their desires and weaknesses. Or, if not love, then at least the mysteries of relationships as characters struggle to understand each other and themselves. But this thematic single-mindedness can hardly be considered a criticism considering Munro tells stories better than anybody else and with a level of precision matched by few. It would be like criticizing Shakespeare for writing about politics.Runawayis no exception. The stories take place throughout Canada--northern Ontario, the Prairies, the West Coast, Stratford--and feature women and men drifting in and out of each other's orbits, pulled by forces they don't understand. In ""Runaway,"" a woman considers leaving her husband with the help of a neighbor, but the hus","Today I Feel Silly Other Moods That Make My Day. From the #1 New York Timesbestselling team of Jamie Lee Curtis and Laura Cornell, authors of I'm Gonna Like Meand Where Do Balloons Go?, Today I Feel Sillyhelps children understand and appreciate their shifting moods. Jamie Lee Curtis's zany and touching verse, paired with Laura Cornell's whimsical and original illustrations, helps kids explore, identify, and, even have fun with their ever-changing moods. Silly, cranky, excited, or sad--everyone has moods that can change each day. And that's okay! Follow the boisterous, bouncing protagonist as she explores her moods and how they change from day to day.",Alien Nation.,"The Turn of the Screw and Other Short Fiction. To read a story by Henry James is to enter a fully realized world unlike any other--a rich, perfectly crafted domain of vivid language and splendid, complex characters. Devious children, sparring lovers, capricious American girls, obtuse bachelors, sibylline spinsters, and charming Europeans populate these five fascinating nouvelles,which represent the author in both his early and late phases. From the apparitions of evil that haunt the governess in ""The Turn of the Screw"" to the startling self-scrutiny of an egotistical man in ""The Beast in the Jungle,"" the mysterious turnings of human behavior are coolly and masterfully observed--proving Henry James to be a master of psychological insight as well as one of the finest prose stylists of modern English literature. Includes ""The Turn of the Screw"" * Daisy Miller * Washington Square* ""The Beast in the Jungle"" * ""The Jolly Corner""",P.S. Your Cat Is Dead.,PS I Love You Baby Collection.,The Mystery of the Brass-Bound Trunk (Nancy Drew Mystery Stories #17). A trunk that Nancy receives from her father for a trip to Buenos Aires becomes the center of a mystery.,"Monkey Business: True Story of the Scopes Trial. The Scopes Monkey Trial in Dayton, Tennessee was a watershed moment in the history of this country. The ramifications of those proceedings are still being felt today. However, it is not necessarily the arguments from the courtroom floor that are reverberating in the halls of America today. The way the entire event was conducted and perceived by the rest of the nation set the tone for how creationists and evolutionists have been viewed by society ever since. Marvin Olasky and John Perry tell the true story in Monkey Business. Most people have a misunderstanding of what happened based on slanted newspaper reporting accounts of H. L. Menken, who made fun of creationists. As a result, the case for creationism has been crippled in the eyes of society. But this account of what happened is far from accurate. Monkey Business will offer the facts of the story and an apologetic for divine creation.",Sex and the City: Kiss and Tell.,"Julie or the New Heloise. An elegant translation of one of the most popular novels of its time. Rousseau's great epistolary novel, Julie, or the New Heloise, has been virtually unavailable in English since 1810. In it, Rousseau reconceptualized the relationship of the individual to the collective and articulated a new moral paradigm. The story follows the fates and smoldering passions of Julie d'Etange and St. Preux, a one-time lover who re-enters Julie's life at the invitation of her unsuspecting husband, M. de Wolmar. The complex tones of this work made it a commercial success and a continental sensation when it first appeared in 1761, and its embodiment of Rousseau's system of thought, in which feelings and intellect are intertwined, redefined the function and form of fiction for decades. As the characters negotiate a complex maze of passion and virtue, their purity of soul and honest morality reveal, as Rousseau writes in his preface, ""the subtleties of heart of which this work is full."" A comprehensive int","Pledged: The Secret Life of Sororities. Alexandra Robbins wanted to find out if the stereotypes about sorority girls were actually true, so she spent a year with a group of girls in a typical sorority. The sordid behavior of sorority girls exceeded her worst expectations-drugs, psychological abuse, extreme promiscuity, racism, violence, and rampant eating disorders are just a few of the problems. But even more surprising was the fact that these abuses were inflicted and endured by intelligent, successful, and attractive women. Why is the desire to belong to a sorority so powerful that women are willing to engage in this type of behavior-especially when the women involved are supposed to be considered 'sisters'? What definition of sisterhood do many women embrace? Pledged combines a sharp-eyed narrative with extensive reporting and the fly-on-the-wall voyeurism of reality shows to provide the answer.","Disney's Beauty and the Beast (A Little Golden Book). Come be our guest in the Beast's castle where teapots talk, spoons dance, and beautiful Belle discovers that things are never quite as they seem. Disney's Beauty and the Beastis retold in the classic Little Golden Book format.","The OK Book. In this clever and literal play on words, OK is turned on its side, upside down, and right side up to show that being OK can really be quite great. Whether OK personifies an OK skipper, an OK climber, an OK lightning bug catcher, or an OK whatever there is to experience, ok is an OK place to be. And being OK just may lead to the discovery of what makes one great. With spare yet comforting illustrations and text, Amy Krouse Rosenthal and Tom Lichtenheld celebrate the real skills and talents children possess, encouraging and empowering them to discover their own individual strengths and personalities. All ages","The Lord of the Rings: The Two Towers: Visual Companion. The official, fully authorized companion to the second part of Peter Jackson's award-winning trilogy, The Lord of the Rings. The Two Towers Visual Companion is a full-color guide to the characters, places and landscapes of J.R.R. Tolkien's Middle-earth as depicted in the second film in The Lord of the Rings Trilogy, and features a special introduction by Viggo Mortensen, who plays Aragorn. Lavishly illustrated with more than 100 full-color photographs, including exclusive images of Gollum, Treebeard and the battle of Helm's Deep, The Two Towers Visual Companion offers a privileged tour through the principal events of the second film. It begins with a recounting of The Fellowship of the Ring, and then takes the reader on the separate journeys undertaken by the Fellowship in The Two Towers. The Ring Quest: in which Frodo and Sam journey alone towards Mordor, alone that is, except for the sneaking figure of Gollum, who has been dogging their footsteps since Moria. The Captives' Journey: i",Minor Works: On Colours/On Things Heard/Physiognomics/On Plants/On Marvellous Things Heard/Mechanical Problems/On Indivisible Lines/The...Gorgias.,"The Dark Tower (The Dark Tower #7). Roland's ka-tet remains intact, though scattered over wheres and whens. Susannah-Mia has been carried from the Dixie Pig (in the summer of 1999) to a birthing room--really a chamber of horrors--in Thunderclap's Fedic; Jake and Father Callahan, with Oy between them, have entered the restaurant on Lex and Sixty-first with weapons drawn, little knowing how numerous and noxious are their foes. Roland and Eddie are with John Cullum in Maine, in 1977, looking for the site on Turtleback Lane where ""walk-ins"" have been often seen. They want desperately to get back to the others, to Susannah especially, and yet they have come to realize that the world they need to escape is the only one that matters. Thus the book opens, like a door to the uttermost reaches of Stephen King's imagination. You've come this far. Come a little farther. Come all the way. The sound you hear may be the slamming of the door behind you. Welcome to The Dark Tower.","The Heart Is a Lonely Hunter. With the publication of her first novel, The Heart Is a Lonely Hunter, Carson McCullers, all of twenty-three, became a literary sensation. With its profound sense of moral isolation and its compassionate glimpses into its characters' inner lives, the novel is considered McCullers' finest work, and an enduring masterpiece. At its center is the deaf-mute John Singer, who becomes the confidant for various types of misfits in a Georgia mill town during the 1930s. Each one yearns for escape from small-town life. When Singer's mute companion goes insane, Singer moves into the Kelly house, where Mick Kelly, the book's heroine (loosely based on McCullers), finds solace in her music. Brilliantly attuned to the spiritual isolation that underlies the human condition, and with a deft sense for racial tensions in the South, McCullers spins a haunting, unforgettable story that gives voice to the rejected, the forgotten, and the mistreated--and, through Mick Kelly, to the quiet, intensely personal se","Uzumaki: Spiral into Horror Vol. 2.. A sleepy town on the coast of Japan is under quiet, deadly siege, not by a person or group but by a primeval spiral shape whose victims include both parents of Shuichi Saito. In this second volume of the saga, Shuichi's girlfriend Kirie becomes further involved in the town's terrible secret when schoolmates start turning up as horrible human snails and something unspeakable is discovered within the walls of the local hospital.",C.S. Lewis and the Catholic Church.,"Outsiders Within: Writing on Transracial Adoption. Given Madonna's recent decision to adopt a child from Malawi, news and entertainment are abuzz with what you've observed yourself--in your own family, or the family next door, or passing the neighborhood playground--there's a boom in transracial adoption. Most coverage focuses on the struggles of good white parents wishing to adopt ""unfortunate"" children of color. Some touches on the irony of Black babies in the United States being exported to Canada and Europe because of their ""unwanted"" status here. Some even addresses the trafficking of children (of course, it would--that's sensational). But few look at o why babies are available for adoption in the first place o what happens when they grow up and o how we come up with solutions that are humane and just Healthy white infants have become hard to locate and expensive to adopt. So people from around the world turn to interracial and intercountry adoption, often, like Madonna, with the idea that while growing their families, they're sav",The Emotional Intelligence Quick Book: Everything You Need to Know to Put Your EQ to Work.,"La casa en Mango Street. Elogiado por la critica, admirado por lectores de todas las edades, en escuelas y universidades de todo el pais y traducido a una multitud de idiomas, La casa en Mango Streetes la extraordinaria historia de Esperanza Cordero. Contado a traves de una serie de vinetas a veces desgarradoras, a veces profundamente alegres es el relato de una nina latina que crece en un barrio de Chicago, inventando por si misma en que y en quien se convertira. Pocos libros de nuestra era han conmovido a tantos lectores.","O Sobrinho do Mágico (As Crónicas de Nárnia #1). Digory e Polly conhecem-se e tornam-se amigos num frio e chuvoso Verao em Londres. Os dois irao viver fantasticas aventuras quando o malefico tio de Digory, Andrew, que pensa que e magico, os manda repentinamente... para outro mundo. Acabam por encontrar o caminho para Narnia, um mundo encantado repleto de um sol radiante, de flores e arvores que crescem miraculosamente e de animais falantes.",Cutting Edge (Tom Clancy's Power Plays #6).,"The Idiot Girls' Action-Adventure Club: True Tales from a Magnificent and Clumsy Life. NEW YORK TIMES BESTSELLER ""I've changed a bit since high school. Back then I said no to using and selling drugs. I washed on a normal basis and still had good credit."" Introducing Laurie Notaro, the leader of the Idiot Girls' Action-Adventure Club. Every day she fearlessly rises from bed to defeat the evil machinations of dolts, dimwits, and creepy boyfriends--and that's before she even puts on a bra. For the past ten years, Notaro has been entertaining Phoenix newspaper readers with her wildly amusing autobiographical exploits and unique life experiences. She writes about a world of hourly-wage jobs that require absolutely no skills, a mother who hands down judgments more forcefully than anyone seated on the Supreme Court, horrific high school reunions, and hangovers that leave her surprised that she woke up in the first place. The misadventures of Laurie and her fellow Idiot Girls (""too cool to be in the Smart Group"") unfold in a world that everyone will recognize but no one has ever","Treasure of Khan (Dirk Pitt #19). Black Wind continued Dirk Pitt's meteoric career with one of Clive Cussler's most audacious, and well-received novels yet. But now Cussler takes an extraordinary leap, with one of his most remarkable villains ever. Genghis Khan-the greatest conqueror of all time, who, at his peak, ruled an empire that stretched from the Pacific Ocean to the Caspian Sea. His conquests are the stuff of legend, his tomb a forgotten mystery. Until now",Merde!: The Real French You Were Never Taught at School.,"Holiday Romance and Other Writings for Children. 'Holiday Romance' is a collection of four short interconnected stories written from the point of view of four children. Dickens has presented young characters that are forced to submit to the elite of the society. He advocates the right of imagination and fancy for the children. The only piece of juvenile fiction by Dickens, this work presents beautiful ideas.","Prétear Vol. 3 (Prétear #3). The Princess of Disaster is gaining power, and she is draining Leafe at an alarming rate. The Leafe Knights are calling upon Himeno to become the Pretear and destroy the seeds of the Princess, but she is engaged in a battle of her own. Her home life is quickly becoming a war zone. After Himeno's father, a one-time famous author, refuses to write any more, his new bride - Natsue - transforms into an even worse rival for Himeno. And now, Natsue is employing the help of Himeno's wicked stepsister, Mayune. The worlds of reality and of dreams both become nightmare-infested as life is slowly drained from Himeno and the living nature around her.","The Decline and Fall of the Roman Empire. An abridged edition of Edward Gibbon's THE HISTORY OF THE DECLINE AND FALL OF THE ROMAN EMPIRE, which compresses thirteen turbulent centuries into a single epic narrative. Famously sceptical about Christianity, unexpectedly sympathetic to the barbarian invaders and the Byzantine Empire, constantly aware of how political leaders often achieve the exact opposite of what they intend, Gibbon was both alert to the broad pattern of events and the significant revealing detail. Attacked for its enlightened views on politics, sexuality and religion, the first volume was none the less soon to be found 'on every table' and was widely acclaimed for the elegance of its prose. Gripping, powerfully intelligent and wonderfully entertaining, THE HISTORY OF THE DECLINE AND FALL OF THE ROMAN EMPIRE ranks as one of the literary masterpieces of its age.","Women. Alternate cover for this ISBN can be found  Low-life writer and unrepentant alcoholic Henry Chinaski was born to survive. After decades of slacking off at low-paying dead-end jobs, blowing his cash on booze and women, and scrimping by in flea-bitten apartments, Chinaski sees his poetic star rising at last. Now, at fifty, he is reveling in his sudden rock-star life, running three hundred hangovers a year, and maintaining a sex life that would cripple Casanova. With all of Bukowski's trademark humor and gritty, dark honesty, this 1978 follow-up to Post Officeand Factotumis an uncompromising account of life on the edge.",Portraits of Murder: 47 Short Stories Chosen by the Master of Suspense.,"The Prestige. A 19th Century feud between two English stage magicians. Their rivalry centers over instant displacement by electricity from one end of a stage to the other, the contest degenerating into dirty tricks. Told from the perspective of their descendants, a man and a woman.","Sunny Chandler's Return. Here is the unforgettable story of a woman who returns to her small hometown in the South--and finds that the sins of her past are right where she left them. Never. Sunny Chandler always said she'd never go back to the tiny town where she grew up. It was just three years ago that she was at the center of a notorious scandal--and the good folks of Latham Green, Louisiana, made it clear they'd never let her forget it. So Sunny packed up and headed for New Orleans, and now she wouldn't give up city life for the world. But when she's invited to her best friend's wedding, Sunny has no choice but to go home. And with her return come the whispers...the looks...the rumors she tried to escape. It doesn't take Sunny long to see that Latham Green has nothing new to offer. Except maybe Ty Beaumont. The moment Ty and Sunny first meet at a party, he can see she's no ordinary woman. With her dazzling hair, and eyes the color of gold, she's a flesh-and-blood fantasy--and Ty vows he'll have her in his","The Devil in the White City Murder Magic and Madness at the Fair That Changed America. The Chicago World Fair of 1893 and its amazing 'White City' was one of the most spectacular the world has ever seen. This is the incredible story of its realization, and of the two men whose tales it linked, and architect and a serial killer. The architect was Daniel H. Burnham, the chief builder of the White City, who created a magical landscape of white buildings set in a wonderland of canals and gardens. The killer was H. H. Holmes, a handsome young doctor with striking blue eyes who used the attraction of the great fair - and his own devilish charms - to lure scores of young women to their death. Holmes would stroll through the fair at night, when an electric dynamo transformed it into an incandescent fairyland, with his unsuspecting victims on each arm. While Burnham overcame politics, personality clashes and the fatal Chicago winds to bring together the creative talents of his architectural team in the transformation of swampy Jackson Park into the White City, Holmes was busy con","Eden Close. A compelling tale of edgy, small-town emotions, lingering obsession, and romantic salvation. Andrew, after many years, returns to his hometown to attend his mother's funeral. Planning to remain only a few days, he is drawn into the tragic legacy of his childhood friend and beautiful girl next door, Eden Close. An adopted child, Eden had learned to avoid the mother who did not want her and to please the father who did. She also aimed to please Andrew and his friends, first by being one of the boys and later by seducing them. Then one hot night, Andrew was awakened by gunshots and piercing screams from the next farm: Mr. Close had been killed and Eden blinded. Now, seventeen years later, Andrew begins to uncover the grisly story - to unravel the layers of thwarted love between the husband, wife, and tormented girl. And as the truth about Eden's past comes to light, so too does Andrew's strange and binding attachment to her reveal itself.","The Voices of Morebath: Reformation and Rebellion in an English Village. This delightful book offers a rare glimpse of life in a remote sixteenth-century English village during the dramatic changes of the Reformation. Through vividly detailed parish records kept from 1520 to 1574 by Sir Christopher Trychay, the garrulous priest of Morebath, we see how a tiny Catholic community rebelled, was punished, and reluctantly accepted Protestantism under the demands of the Elizabethan state.""Significant and striking.""-Peter Ackroyd, The Times (London); ""A vivid piece of microhistory . . . a rich and often witty portrait.""-Alexandra Walsham, History; ""This book is a gem: small, colourful, many-faceted.""-Lucy Wooding, Reviews in History; ""Stories like the one Duffy skillfully tells here, for historian and general reader alike . . . bear remembering."" -Paul Lewis, New York Times Book Review Author Biography: Eamon Duffy is professor of the History of Christianity at the University of Cambridge and president of Magdalene College. His previous books include The Stripping","Celebrations: Rituals of Peace and Prayer. Grace, dignity, and eloquence have long been hallmarks of Maya Angelou's poetry. Her measured verses have stirred our souls, energized our minds, and healed our hearts. Whether offering hope in the darkest of nights or expressing sincere joy at the extraordinariness of the everyday, Maya Angelou has served as our common voice. Celebrations is a collection of timely and timeless poems that are an integral part of the global fabric. Several works have become nearly as iconic as Angelou herself: the inspiring ""On the Pulse of Morning,"" read at President William Jefferson Clinton's 1993 inauguration; the heartening ""Amazing Peace,"" presented at the 2005 lighting of the National Christmas Tree at the White House; ""A Brave and Startling Truth,"" which marked the fiftieth anniversary of the United Nations; and ""Mother,"" which beautifully honors the first woman in our lives. Angelou writes of celebrations public and private, a bar mitzvah wish to her nephew, a birthday greeting to Oprah Winfrey",President Dad Volume 2.,"Marcovaldo. Marcovaldo is an unskilled worker in a drab industrial city in northern Italy. He is an irrepressible dreamer and an inveterate schemer. Much to the puzzlement of his wife, his children, his boss, and his neighbors, he chases his dreams-but the results are never the expected ones. Translated by William Weaver. A Helen and Kurt Wolff Book",Bob Marley - Songs of Freedom.,"Port Mungo. In a seedy river town on the Gulf of Honduras, Jack Rathbone believed he had found a place that would give him and his lover, the accomplished artist Vera Savage, the solitude they would need to create a body of work that would shake the art world to its core. But in a place where time lies thicker than the mangrove swamps that surround it, Jack and Vera discover an emotional frontier more fearsome, untamed, and dangerous than any wilderness. Told through the voice of Jack's adoring sister, Gin, Port Mungois the riveting story of this ill-fated couple, one that begins as a bohemian flight-of-fancy before unraveling into a dark, debauched and sinister tale. With Port Mungo, the incomparable Patrick McGrath, author of the acclaimed novels Spiderand Asylum, delivers a spellbinding narrative to explore the obsessive pursuit of art and love.","Virtual Light (Bridge #1). Berry Rydell, an ex-cop, signs on with IntenSecure Armed Response in Los Angeles. He finds himself on a collision course that results in a desperate romance, and a journey into the ecstasy and dread that mirror each other at the heart of the postmodern experience.","True Blue: The Oxford Boat Race Mutiny. Strikingly reminiscent of Chariots of Fire, this book tells the story of the sporting event which shook both Oxford University and its Boat Club to the very foundations during the harsh winter of 1986/7. A group of American students arrives at Oxford, hoping to put some steel into a Boat Race crew still reeling from their recent humiliating defeat at the hands of Cambridge. But disagreements over training methods soon bring to a head a bitter clash between the elected President of the Dark Blues and a fiery-tempered rower from California. Much more than the race is at stake in this clash between the amateur sporting tradition of the Boat Race and New World big-star sportsmanship. In the resulting battle, which made headline news worldwide, the rebels, having failed to remove the Boat Club President, pull out six weeks before the race. Will Oxford Coach Topolski, against all odds, mould an inexperienced and demoralized reserve crew of no-hopers into a winning team?","Milton's Paradise Lost. In his epic work Paradise LostJohn Milton seeks 'to justify the ways of God to men'through the familiar Christian myth of the fall from grace. The poem is imbued with Milton's profoundly individual view of man's place in the universe and his intellectual and spiritual quest for redemption in the face of despair. Since its creation Paradise Losthas provided inspiration for generations of writers, from the Romantic poets to Tolkien and, most recently, Philip Pullman in His Dark Materialstrilogy. Countless generations of ordinary readers have similarly had their understanding of the darker nature of the human soul illuminated by this remarkable work. In this edition the poem is presented with all 50 of the magnificent engravings produced by Gustave Dore specially for the work.","The Mantle of Kendis-Dai (Starshield #1). Created by the bestselling team of Weis & Hickman, Starshieldintroduces their newest fantastic universe with an unforgettable, magical, grand adventure! Rebellion threatens to rock the very foundation of civilization. If the wrong side wins, the people will be at the mercy of minds with no conscience or humanity. The only hope for freedom lies with the Mantle of Kendis-dai, a relic reputed to hold the power of absolute Truth. But the Mantle of Kendis-dai is long lost in the mists of myth and time...if it ever really existed at all. Merinda Neskat, dedicated to the pursuit of Truth above all, is determined to find the legendary Mantle. The key to her quest is a group of lost Earthpeople, led by the feckless Jeremy Griffiths, who holds knowledge he shouldn't have--and doesn't understand. Together, Merinda, Jeremy, and his companions set off on a dangerous race against time and deadly enemy forces, seeking a mysterious world that holds the secret that can save them--or destroy the path of","Firebirds Rising: An Anthology of Original Science Fiction and Fantasy. This star-studded follow-up to the acclaimed ""Firebirds"" contains riveting, original stories by some of today's masters of science fiction and fantasy, including Fancesca Lia Block, Alan Dean Foster, Diana Wynne Jones, and Tanith Lee.",Pilgrims Pa.,The Art of the Hunchback of Notre Dame.,"The Curious Sofa. The Curious Sofais a classic 1961 book by Edward Gorey, published under the pen name Ogdred Weary (an anagram). The book is a ""pornographic illustrated story about furniture"" (according to the cover). According to reviews, there is nothing overtly sexual in the illustrations, although innuendos (and strategically deployed urns and tree branches) abound. The New York Times Book Reviewdescribed it as ""Gorey's naughty, hilarious travesty of lust."" Gorey has stated that he intended to satirize Story of O.","Candy. I quit trusting anything that anyone told me. My life was skidding into darkness at high speed, and I couldn't stop it. I didn't think that there was a man anywhere in the world who could love me. I was 22 years old and dead on the vine. I want to see a thousand lonely strangers dancing happily at my party. An international literary phenomenon - now available for the first time in English translation--Candy is a blast of sex, drugs, and rock 'n' roll that opens up to us a modern China we've never seen before.","Girl (Girl #1). Welcome to the world of Portland teenager Andrea Marr, the bold, sexy, shy, often confused but always resilient heroine of Girl. Told in a voice that reads like the intimate diary of a young woman about to take life on full throttle, this wonderful debut novel chronicles Andrea's jittery journey from suburban mall to Portland's thriving underground rock scene - and back again, as she discovers sex, betrayal, and even love. A Catcher in the Rye for the ""Grunge"" generation, this instant classic will speak to anyone who has ever had to choose between the suffocation of conformity and the perils of rebellion.","The Outlandish Companion: Companion to Outlander Dragonfly in Amber Voyager and Drums of Autumn. #1 New York Times bestselling author Diana Gabaldon has captivated millions of readers with her critically acclaimed Outlander novels, the inspiration for the Starz original series. From the moment Claire Randall stepped through a standing stone circle and was thrown back in time to the year 1743--and into a world that threatens life, limb, loyalty, heart, soul, and everything else Claire has--readers have been hungry to know everything about this world and its inhabitants, particularly a Scottish soldier named Jamie Fraser. In this beautifully illustrated compendium of all things Outlandish, Gabaldon covers the first four novels of the main series, including: * full synopses of Outlander, Dragonfly in Amber, Voyager, and Drums of Autumn * a complete listing of the characters (fictional and historical) in the first four novels in the series, as well as family trees and genealogical notes * a comprehensive glossary and pronunciation guide to Gaelic terms and usage * the fully explicated","The Atlantis Dialogue. s/t: Plato's Original Story of the Lost City, Continent, Empire, Civilization Atlantis was first introduced to world literature by the Greek philosopher Plato in two ""dialogues"" he wrote in the fourth century B.C. His tale of a great empire that sank beneath the waves has sparked thousands of years of debate over whether Atlantis really existed. But did Plato mean his tale as history, or just as a parable to help illustrate his philosophy? In this book, you'll find everything Plato said about Atlantis, in the context he intended. Now you can read and judge for yourself!",The Mystery of the Ancient Pyramid: Cairo Egypt (Around the World in 80 Mysteries).,"The Last Kingdom (The Saxon Stories #1). From Bernard Cornwell, the New York Times bestselling author whom the Washington Post calls ""perhaps the greatest writer of historical adventure novels today,"" comes a saga of blood, rage, fidelity, and betrayal. In the ninth and tenth centuries, King Alfred and his heirs fought to secure the survival of the last outpost of Anglo-Saxon culture by battling the ferocious Vikings, whose invading warriors had already captured and occupied three of England's four kingdoms. In A.D. 866, Uhtred, a boy of ten and the son of a nobleman, is captured in the same battle that leaves his father dead. His captor is the Earl Ragnar, a Danish chieftain, who raises the boy as his own, teaching him the Viking ways of war. As a young man expected to partake in raids and bloody massacres of the English, he grapples with divided loyalties, torn between Ragnar, the warrior he loves like a father, and Alfred, whose piety and introspection leave him cold. It takes a terrible slaughter and the unexpected joys o","The Count of Monte Cristo. Alexandre Dumas's thrilling adventure of one man's quest for freedom and vengeance on those who betrayed him. EACH ENRICHED CLASSIC EDITION INCLUDES: * A concise introduction that gives readers important background information * A chronology of the author's life and work * A timeline of significant events that provides the book's historical context * An outline of key themes and plot points to help readers form their own interpretations * Detailed explanatory notes * Critical analysis, including contemporary and modern perspectives on the work * Discussion questions to promote lively classroom and book group interaction * A list of recommended related books and films to broaden the reader's experience Enriched Classics offer readers affordable editions of great works of literature enhanced by helpful notes and insightful commentary. The scholarship provided in Enriched Classics enables readers to appreciate, understand, and enjoy the world's finest books to their full potential. SERIES","Uzumaki: Spiral Into Horror Vol. 3. Kurozu-cho, a fogbound town on the coast of Japan, is haunted by a recurring pattern: a spiral manifesting itself in increasingly terrifying ways. In this third and final volume, the town is cut off from the outside by devastating hurricanes. Kirie, her boyfriend Shuichi, and the other desperate survivors must face the impending horror. The movie version of Uzumaki will soon be released in the U.S.","Something Fishy at Macdonald Hall (Macdonald Hall #7). The school year is getting off to a wacky start at Macdonald Hall. Everyone thinks Bruno and Boots are to blame, but this time the boys are innocent -- and they're determined to find the phantom practical joker.","Word Freak: Heartbreak Triumph Genius and Obsession in the World of Competitive Scrabble Players. SCRABBLE may be truly called America's game. But for every group of ""living-room players"" there is someone who is ""at one with the board."" In Word Freak, Stefan Fatsis introduces readers to those few, exploring the underground world of colorful characters for which the Scrabble game is life -- playing competitively in tournaments across the country. It is also the story of how the Scrabble game was invented by an unemployed architect during the Great Depression and how it has grown into the hugely successful, challenging, and beloved game it is today. Along the way, Fatsis chronicles his own obsession with the game and his development as a player from novice to expert. More than a book about hardcore Scrabble players, Word Freak is also an examination of notions of brilliance, memory, language, competition, and the mind that celebrates the uncanny creative powers in us all.","SantaKid. When Warrie Ransom, the Big Boss of the Exmas Express Company, decides to buy Christmas and rename it Exmas, Santa Claus, Momma Claus, and their daugher Chrissie can't believe their eyes. Everything at the North Pole seems to change overnight--the elves stop making kids' favorite toys, the Christmas doves won't fly or sing, and no one seems to laugh anymore. It looks like Christmas is going to be ruined. But then Chrissie remembers something she had learned from her dad: you must believe in something bigger than yourself. With a little help from her dad's helpers, Chrissie--as santaKid--delivers presents to children on Christmas eve, sending Warrie Ransom back to where he came from! After all, when you believe in something, magic can happen.","Stir-Fry. ""Exhilarating...irreverent, and extremely funny,""- Ms. Seventeen and sure of nothing, Maria has left her parents' small-town grocery for university life in Dublin. An ad in the Student Union - ""2 seek flatmate. No bigots."" - leads Maria to a home with warm Ruth and wickedly funny Jael, students who are older and more fascinating than she'd expected. A poignant, funny, and sharply insightful coming-of-age story, Stir-Fryis a lesbian novel that explores the conundrum of desire arising in the midst of friendship and probes feminist ideas of sisterhood and non-possessiveness. Emma Donoghue is the author of Room, Slammerkin, Hood, and Kissing the Witch. Born in Dublin, she now lives in Ontario, Canada. Stir-Fryis her first novel.","Plays 5: Arcadia / The Real Thing / Night and Day / Indian Ink / Hapgood. Plays Five: Arcadia The Real Thing Night & Day Indian Ink Hapgood This fifth collection of Tom Stoppard's plays brings together five classic plays by one of the most celebrated dramatists writing in the English language. Arcadia received the Evening Standard, the Oliver, and the Critics Awards and The Real Thing won a Tony Award.","Little Dorrit. Upon its publication in 1857, Little Dorritimmediately outsold any of Dickens's previous books. The story of William Dorrit, imprisoned for debt in Marshalsea Prison, and his daughter and helpmate, Amy, or Little Dorrit, the novel charts the progress of the Dorrit family from poverty to riches. In his Introduction, David Gates argues that ""intensity of imagination is the gift from which Dickens's other great attributes derive: his eye and ear, his near-universal empathy, his ability to entertain both a sense of the ridiculous and a sense of ultimate significance."" This Modern Library Paperback Classic is set from the text of the 1857 edition.",City of Glass: The Graphic Novel.,"Oh Play That Thing. Praised as ""a masterpiece"" by the Washington Post, A Star Called Henryintroduced the unforgettable Henry Smart and left Roddy Doyle's innumerable fans clamoring for more. Now, in his first novel set in America, Doyle delivers. Oh, Play That Thingopens with Henry on the run from his Irish Republican paymasters, arriving in New York City in 1924. But in New York, and later Chicago--where he meets a man playing wild, happy music called Louis Armstrong--Henry finds he cannot escape his past.A highly entertaining cross-country epic and a magnificent follow-up to A Star Called Henry, this prodigious, energetic, sexy novel is another Roddy Doyle triumph.","El Borbah. Meet El Borbah, a 400-pound private eye who wears a Mexican wrestler's tights and eerie mask. Subsisting entirely on junk food and beer, El Borbah conducts his investigations with tough talk and a short temper. He smashes through doors and skulls as he stalks a perfectly realized film-noir city filled with punks, geeks, business-suited creeps and mad scientists. El Borbahfeatures five science-fiction and true-detective episodes: In ""Robot Love,"" rebellious kids in nightclubs replace their ""parts"" with mechanical substitutes as part of a new fad, only to find that their parents have been automating themselves all along; in ""Love in Vein"" a mad visionary sperm donor plans a master race and turns ""his"" kids against their parents; ""Bone Voyage"" details the exploits of a cult called the Brotherhood of the Bone, a kind of cross between the Masons and the Mansons. The fantastic plots take up the weird fears of a scientific society, but the action is pure pulp. Charles Burns effortlessly spins","One Hand Clapping. ""Sometimes when I'm at work and waiting for customers I think about the two of us living like kings and not bothering about the future. Because there may not be any future to bother about, you know. Not for anybody, one of these days. And it's a wicked world."" Average couple Janet and Howard's lives begin to unravel when Howard's photographic memory helps win him a gameshow fortune. Janet doesn't want their lives to change that much. She's quite happy working at the supermarket, cooking for her husband three times a day and watching quiz shows in the evening. But once Howard unleashes his photographic brain on the world, the once modest used-car salesman can't seem to stop. And what he sees as the logical conclusion to his success isn't something Janet can agree to.","The Return of the King (The Lord of the Rings #3). The standard harcover edition of the concluding volume of The Lord of the Rings includes a large format fold-out map and extensive appendices. As the Shadow of Mordor grows across the land, the Companions of the Ring have become involved in separate adventures. Aragorn, revealed as the hidden heir of the ancient Kings of the West, has joined with the Riders of Rohan against the forces of Isengard, and takes part in the desperate victory of the Hornburg. Merry and Pippin, captured by Orcs, escape into Fangorn Forest and there encounter the Ents. Gandalf has miraculously returned and defeated the evil wizard, Saruman. Sam has left his master for dead after a battle with the giant spider, Shelob; but Frodo is still alive -- now in the foul hands of the Orcs. And all the while the armies of the Dark Lord are massing as the One Ring draws ever nearer to the Cracks of Doom.","Three Men in a Boat and Three Men on the Bummel. Martyrs to hypochondria and general seediness, J. and his friends George and Harris decide that a jaunt up the Thames would suit them to a 'T'. But when they set off, they can hardly predict the troubles that lie ahead with tow-ropes, unreliable weather-forecasts and tins of pineapple chunks - not to mention the devastation left in the wake of J.'s small fox-terrier Montmorency. Three Men in a Boat was an instant success when it appeared in 1889, and proved so popular that Jerome reunited his now older - but not necessarily wiser - heroes in Three Men on the Bummel, for a picaresque bicycle tour of Germany. With their benign escapism, authorial discursions and wonderful evocation of the late-Victorian 'clerking classes', both novels hilariously capture the spirit of their age.","Only the Ring Finger Knows: The Ring Finger Falls Silent (Only the Ring Finger Knows #3). After all the studying he did for his exams, sacrificing time with his boyfriend Yuichi, Wataru gets a measly C-average on his summer prep test. Yuichi's college classmate Asaka offers to tutor him, and he eagerly accepts. Wataru finds Asaka's cool beauty and attitude strikingly similar to that of Yuichi's, and subconsciously becomes vulnerable to his advances. For the first time in their relationship, Yuichi becomes enraged. Will they be able to overcome this new obstacle?!",Dark Water's Embrace (Mictlan #1).,"Perilous Power: The Middle East & US Foreign Policy. s/t: Dialogues on Terror, Democracy, War & Justice The volatile Middle East is the site of vast resources, profound passions, frequent crises, and long-standing conflicts, as well as a major source of international tensions and a key site of direct U.S. intervention. Two of the most astute analysts of this part of the world are Noam Chomsky, the preeminent critic of U.S. foreign policy, and Gilbert Achcar, a leading specialist of the Middle East who lived in that region for many years. In their new book, Chomsky and Achcar bring a keen understanding of the internal dynamics of the Middle East and of the role of the United States, taking up all the key questions of interest to concerned citizens, including such topics as terrorism, fundamentalism, conspiracies, oil, democracy, self-determination, anti-Semitism, and anti-Arab racism, as well as the war in Afghanistan, the invasion and occupation of Iraq, the Israeli-Palestinian conflict, and the sources of U.S. foreign policy. This book","This Side of Brightness. At the turn of the century, Nathan Walker comes to New York City to take the most dangerous job in the country. A sandhog, he burrows beneath the East River, digging the tunnel that will carry trains from Brooklyn to Manhattan. In the bowels of the riverbed, the sandhogs--black, white, Irish, Italian--dig together, the darkness erasing all differences. Above ground, though, the men keep their distance until a spectacular accident welds a bond between Walker and his fellow sandhogs that will both bless and curse three generations.",On the Road to Tara.,Bury the Chains.,Meditations for Manifesting: Morning and Evening Meditations to Literally Create Your Heart's Desire.,Wild About Books.,"The Autobiography of Mark Twain. Mark Twain's autobiography is a classic of American letters, to be ranked with the autobiographies of Benjamin Franklin and Henry Adams.... It has the marks of greatness in it--style, scope, imagination, laughter, tragedy.""--From the Introduction by Charles Neider Mark Twain was a figure larger than life: massive in talent, eruptive in temperament, unpredictable in his actions. He crafted stories of heroism, adventure, tragedy, and comedy that reflected the changing America of the time, and he tells his own story--which includes sixteen pages of photos--with the same flair he brought to his fiction. Writing this autobiography on his deathbed, Twain vowed to he ""free and frank and unembarrassed"" in the recounting of his life and his experiences. Twain was more than a match for the expanding America of riverboats, gold rushes, and the vast westward movement, which provided the material for his novels and which served to inspire this beloved and uniquely American autobiography.","The Gardens of Emily Dickinson. In this first substantial study of Emily Dickinson's devotion to flowers and gardening, Judith Farr seeks to join both poet and gardener in one creative personality. She casts new light on Dickinson's temperament, her aesthetic sensibility, and her vision of the relationship between art and nature, revealing that the successful gardener's intimate understanding of horticulture helped shape the poet's choice of metaphors for every experience: love and hate, wickedness and virtue, death and immortality. Gardening, Farr demonstrates, was Dickinson's other vocation, more public than the making of poems but analogous and closely related to it. Over a third of Dickinson's poems and nearly half of her letters allude with passionate intensity to her favorite wildflowers, to traditional blooms like the daisy or gentian, and to the exotic gardenias and jasmines of her conservatory. Each flower was assigned specific connotations by the nineteenth century floral dictionaries she knew; thus, Dickin","Midnight for Charlie Bone (The Children of the Red King #1). A magical fantasy that is fast-paced and easy-to-read. Charlie Bone has a special gift- he can hear people in photographs talking! The fabulous powers of the Red King were passed down through his descendants, after turning up quite unexpectedly, in someone who had no idea where they came from. This is what happened to Charlie Bone, and to some of the children he met behind the grim, gray walls of Bloor's Academy. His scheming aunts decide to send him to Bloor Academy, a school for geniuses where he uses his gifts to discover the truth despite all the dangers that lie ahead.","The Poisonwood Bible. Told by the wife and four daughters of Nathan Price, a fierce evangelical Baptist who takes his family and mission to the Belgian Congo in 1959, The Poisonwood Bibleis the story of one family's tragic undoing and remarkable reconstruction over the course of three decades in postcolonial Africa. They carry with them all they believe they will need from home, but soon find that all of it - from garden seeds to Scripture - is calamitously transformed on African soil.","Life of the Beloved: Spiritual Living in a Secular World. Initially written for a Jewish friend, Life of the Beloved has become Henri Nouwen's greatest legacy to Christians around the world. This sincere testimony of the power and invitation of Christ is indeed a great guide to a truly uplifting spiritual life in today's world.","What Would You Do? (American Girl Library). ""AmericanGirl"" magazine asked its readership how they'd handle everyday problems. What if someone told a lie about them? Would they tell the teacher if a classmate was cheating? This book is filled with quizzes that ask readers these same questions.","The Condor And The Cows: A South American Travel Diary. One of the few classic works of South American travel, now available in paperback with a new foreword by Jeffrey Meyers and additional photographs by Isherwood's lover, Bill Caskey. Isherwood frankly depicts the squalor and discomforts of his journey--as he wrote he was very skeptical about the book but later came to regard it as one of his best.",El Clan Del Oso Cavernario.,"Kushiel's Justice (Imriel's Trilogy #2). My blood beat hard in my veins and hammered in my ears, like the sound of bronze wings clashing. And I understand for the first time what it meant that Kushiel, the One God's punisher, had loved his charges too well... Imriel de la Courcel's blood parents are history's most reviled traitors, while his adoptive parents, Phedre and Joscelin, are Terre d'Ange's greatest champions. Stolen, tortured, and enslaved as a young boy, Imriel is now a Prince of the Blood, third in line for the throne in a land that revels in beauty, art, and desire. After a year abroad to study at university, Imriel returns from his adventures a little older and somewhat wiser. But perhaps not wise enough. What was once a mere spark of interest between himself and his cousin Sidonie now ignites into a white-hot blaze. But from commoner to peer, the whole realm would recoil from any alliance between Sidonie, heir to the throne, and Imriel, who bears the stigma of his mother's of his mother's misdeeds and betrayals.","Dime-Store Alchemy: The Art of Joseph Cornell. In Dime-Store Alchemy, poet Charles Simic refects on the life and work of Joseph Cornell, the maverick surrealist who is one of America's great artists. Simic's spare prose is as enchanting and luminous as the mysterious boxes of found objects for which Cornell is justly renowned. In a work that is in various degrees biography, criticism, and sheer poetry, Simic tells the story of Cornell's life and illuminates the hermetic mysteries of his extraordinary boxes-objects in which private obsessions were alchemically transformed into enduring works of art. Simic sees Cornell's work as exemplifying a distinctively American aesthetic, open to the world, improvisatory, at once homemade and universal, modest and teasing and profound. Full of unexpected riches, Dime-Store Alchemyis both an entrancing meditation on the nature of art and a perfect introduction to a major American artist by one of his peers-a book that can be perused at length or dipped into at leisure again and again.","Fugitive Pieces. A New York TimesNotable Book of the Year Winner of the Lannan Literary Fiction Award Winner of the Guardian Fiction Award In 1940 a boy bursts from the mud of a war-torn Polish city, where he has buried himself to hide from the soldiers who murdered his family. His name is Jakob Beer. He is only seven years old. And although by all rights he should have shared the fate of the other Jews in his village, he has not only survived but been rescued by a Greek geologist, who does not recognize the boy as human until he begins to cry. With this electrifying image, Anne Michaels ushers us into her rapturously acclaimed novel of loss, memory, history, and redemption. As Michaels follows Jakob across two continents, she lets us witness his transformation from a half-wild casualty of the Holocaust to an artist who extracts meaning from its abyss. Filled with mysterious symmetries and rendered in heart-stopping prose, Fugitive Piecesis a triumphant work, a book that should not so much be read as i",The Return of the King (The Lord of the Rings #3).,Os libros arden mal.,"On Beauty. Howard Belsey, a Rembrandt scholar who doesn't like Rembrandt, is an Englishman abroad and a long-suffering professor at Wellington, a liberal New England arts college. He has been married for thirty years to Kiki, an American woman who no longer resembles the sexy activist she once was. Their three children passionately pursue their own paths: Levi quests after authentic blackness, Zora believes that intellectuals can redeem everybody, and Jerome struggles to be a believer in a family of strict atheists. Faced with the oppressive enthusiasms of his children, Howard feels that the first two acts of his life are over and he has no clear plans for the finale. Or the encore. Then Jerome, Howard's older son, falls for Victoria, the stunning daughter of the right-wing icon Monty Kipps, and the two families find themselves thrown together in a beautiful corner of America, enacting a cultural and personal war against the background of real wars that they barely register. An infidelity, a deat","La venganza de Opal (Artemis Fowl #4). Un ano despues de la rebelion de los goblins, Opal Koboi despierta del coma y planea su venganza... Opal Koboi, la duende que lidero la rebelion de los goblins contra el mundo subterraneo en el volumen II de la serie, despierta de su coma con un unico objetivo: vengarse de quien le capturo, Artemis y el mundo subterraneo. Artemis, por su parte, despues del barrido de memoria, no recuerda quien es y sobre todo su relacion con el mundo subterraneo aunque, eso si, sigue con sus actividades delictivas: esta vez quiere robar un cuadro de incalculable valor, que pocos conocen, y que se esconde en un lugar seguro. De conseguirlo, se convertiria en el ladron de cuadros mas joven de la historia. Mientras su madre le insiste una y otra vez de su necesidad de ser un adolescente ""normal"".","The Origin of Consciousness in the Breakdown of the Bicameral Mind. Bicameralism is a controversial psychological hypothesis that the brain once assumed a state known as a bicameral mind in which cognitive functions were divided between one part which is experienced as speaking & a 2nd part which listens & obeys. The term was coined by psychologist Jaynes, who presented the idea in his The Origin of Consciousness, wherein he made the case that bicameral mentality was the normal state as recently as 3000 years ago. He used governmental bicameralism metaphorically to describe this state, where the stored up experience of the right hemisphere was transmitted to the left hemisphere via auditory hallucinations. This mental model was replaced by the conscious mode of thought, based on metaphorical language. The idea that language is necessary for subjective consciousness or higher forms of thought has been gaining acceptance, with proponents such as Daniel Dennett, Wm Calvin, Merlin Donald, John Limber, Howard Margolis & Jose Luis Bermudez. According to Jayn","Gathering Blue (The Giver #2). In her strongest work to date, Lois Lowry once again creates a mysterious but plausible future world. It is a society ruled by savagery and deceit that shuns and discards the weak. Left orphaned and physically flawed, young Kira faces a frightening, uncertain future. Blessed with an almost magical talent that keeps her alive, she struggles with ever broadening responsibilities in her quest for truth, discovering things that will change her life forever. As she did in The Giver, Lowry challenges readers to imagine what our world could become, and what will be considered valuable. Every reader will be taken by Kira's plight and will long ponder her haunting world and the hope for the future.",The Visitor (Jack Reacher #4).,"Where the Red Fern Grows with Connections. The Holt McDougal Library includes a mix of fiction, nonfiction, drama, poetry, and biographies from a variety of reading levels for use as part of classroom curriculum or independent reading. Students will find selections they love in this extensive collection. --hmhco.com",Surfer's Code: Twelve Simple Lessons For Riding Through Life.,"The Scientists: A History of Science Told Through the Lives of Its Greatest Inventors. A wonderfully readable account of scientific development over the past five hundred years, focusing on the lives and achievements of individual scientists, by the bestselling author of In Search of Schrodinger's Cat In this ambitious new book, John Gribbin tells the stories of the people who have made science, and of the times in which they lived and worked. He begins with Copernicus, during the Renaissance, when science replaced mysticism as a means of explaining the workings of the world, and he continues through the centuries, creating an unbroken genealogy of not only the greatest but also the more obscure names of Western science, a dot-to-dot line linking amateur to genius, and accidental discovery to brilliant deduction. By focusing on the scientists themselves, Gribbin has written an anecdotal narrative enlivened with stories of personal drama, success and failure. A bestselling science writer with an international reputation, Gribbin is among the few authors who could even att","Fever Pitch. In America, it is soccer. But in Great Britain, it is the real football. No pads, no prayers, no prisoners. And that's before the players even take the field. Nick Hornby has been a football fan since the moment he was conceived. Call it predestiny. Or call it preschool. Fever Pitchis his tribute to a lifelong obsession. Part autobiography, part comedy, part incisive analysis of insanity, Hornby's award-winning memoir captures the fever pitch of fandom -- its agony and ecstasy, its community, its defining role in thousands of young mens' coming-of-age stories. Fever Pitchis one for the home team. But above all, it is one for everyone who knows what it really means to have a losing season.","It's Kind of a Funny Story. Like many ambitious New York City teenagers, Craig Gilner sees entry into Manhattan's Executive Pre-Professional High School as the ticket to his future. Determined to succeed at life--which means getting into the right high school to get into the right college to get the right job--Craig studies night and day to ace the entrance exam, and does. That's when things start to get crazy. At his new school, Craig realizes that he isn't brilliant compared to the other kids; he's just average, and maybe not even that. He starts earning mediocre grades and sees his once-perfect future crumbling away. The stress becomes unbearable and Craig stops eating and sleeping--until, one night, he nearly kills himself. Craig's suicidal episode gets him checked into a mental hospital, where his new roommate is an Egyptian schoolteacher who refuses to get out of bed. His neighbors include a transsexual sex addict, a girl who has scarred her own face with scissors, and the self-elected President Armelio. Th",The Ethics of Authenticity.,"The Spice and Herb Bible. ""The classic reference - expanded and in full color."" Professional chefs and home cooks use spices and herbs to enhance food flavors and to create new taste combinations and sensations. From vanilla beans to cinnamon, from cumin to tarragon, no kitchen is complete without spices and herbs. The second edition of this classic reference is significantly expanded, with four new spices and herbs as well as 25 additional blends. The book is now printed in full color and features color photography throughout. Every herb and spice has a handsome and detailed color photograph to make identification and purchasing a breeze. The book includes fascinating and authoritative histories of a wide range of global herbs and spices such as angelica, basil, candle nut, chervil, elder, fennel, grains of paradise, licorice root, saffron, tamarind, Vietnamese mint and zedoary. The Spice and Herb Bible, Second Edition, includes 100 spices and herbs and 50 spice-blend recipes. It is an essential resource for a",The Savage Wars Of Peace: Soldiers' Voices 1945-1989.,"Frost. Visceral, raw, singular, and distinctive, ""Frost"" is the story of a friendship between a young man at the beginning of his medical career and a painter who is entering his final days. A writer of world stature, Thomas Bernhard combined a searing wit and an unwavering gaze into the human condition. ""Frost"" follows an unnamed young Austrian who accepts an unusual assignment. Rather than continue with his medical studies, he travels to a bleak mining town in the back of beyond, in order to clinically observe the aged painter, Strauch, who happens to be the brother of this young man's surgical mentor. The catch is this: Strauch must not know the young man's true occupation or the reason for his arrival. Posing as a promising law student with a love of Henry James, the young man befriends the mad artist and is caught up among an equally extraordinary cast of local characters, from his resentful landlady to the town's mining engineers. This debut novel by Thomas Bernhard, which came out in G","Islam: A Short History. No religion in the modern world is as feared and misunderstood as Islam. It haunts the popular imagination as an extreme faith that promotes terrorism, authoritarian government, female oppression, and civil war. In a vital revision of this narrow view of Islam and a distillation of years of thinking and writing about the subject, Karen Armstrong's short history demonstrates that the world's fastest-growing faith is a much more complex phenomenon than its modern fundamentalist strain might suggest.","The Case of the Marshmallow Monster (Jigsaw Jones #11). Clever, funny detectives Jigsaw Jones and Mila Yeh solve mysteries in shool and out.","Sauron Defeated: The History of The Lord of the Rings Part Four (The History of Middle-Earth #9). In the first part of Sauron Defeated, Christopher Tolkien completes his account of the writing of The Lord of the Rings, beginning with Sam's rescue of Frodo from the Tower of Kirith Ungol, and giving a very different account of the Scouring of the Shire. This part ends with versions of the previously unpublished Epilogue, an alternate ending to the masterpiece in which Sam attempts to answer his children's questions years after the departure of Bilbo and Frodo from the Grey Havens. The second part introduces The Notion Club Papers, now published for the first time. Written by J.R.R. Tolkien in the interval between The Two Towers and The Return of the King (1945-1946), these mysterious Papers, discovered in the early years of the twenty-first century, report the discussions of a literary club in Oxford in the years 1986-1987. Those familiar with the Inklings will see a parallel with the group whose members included J.R.R. Tolkien and C.S. Lewis. After a discussion of the possiblities o","How the Irish Saved Civilization: The Untold Story of Ireland's Heroic Role from the Fall of Rome to the Rise of Medieval Europe. From the fall of Rome to the rise of Charlemagne - the ""dark ages"" - learning, scholarship, and culture disappeared from the European continent. The great heritage of western civilization - from the Greek and Roman classics to Jewish and Christian works - would have been utterly lost were it not for the holy men and women of unconquered Ireland. In this delightful and illuminating look into a crucial but little-known ""hinge"" of history, Thomas Cahill takes us to the ""island of saints and scholars, "" the Ireland of St. Patrick and the Book of Kells. Here, far from the barbarian despoliation of the continent, monks and scribes laboriously, lovingly, even playfully preserved the west's written treasures. With the return of stability in Europe, these Irish scholars were instrumental in spreading learning. Thus the Irish not only were conservators of civilization, but became shapers of the medieval mind, putting their unique stamp on western culture.","The Stranger. Through the story of an ordinary man unwittingly drawn into a senseless murder on an Algerian beach, Camus explored what he termed ""the nakedness of man faced with the absurd."" This edition includes the original English translation by Stuart Gilbert, first published in 1946.","Phenomenology of Perception. Together with Sartre, Merleau-Ponty was the foremost French philosopher of the post-war period and Phenomenology of Perception, first published in 1945, is his masterpiece. What makes this work so important is that it returned the body to the forefront of philosophy for the first time since Plato.""","Darkest Hour (The Mediator #4). What - or who - is buried in Susannah's backyard? When the nineteenth-century ghost of Maria de Silva wakes her up in the middle of the night, Suze knows this is no ordinary visitation - and not just from the knife at her throat, either. In life, Maria was the fiancee of Jesse - the same Jesse who was murdered a hundred and fifty years before. The same Jesse Suze is in love with. Maria threatens Suze: The backyard construction must cease. Suze has a pretty good idea what - or rather, who - Maria doesn't want found. But in solving Jesse's murder, will Suze end up losing him forever?",Lewis Carroll's Jabberwocky: A Book of Brillig Dioramas.,Juneau and Sauk Counties: 1850-2000 (Images of America: Wisconsin).,Touched with Fire: Manic-Depressive Illness and the Artistic Temperament.,Heaven (Casteel #1).,"Jesus Freaks. For God so loved the world that he gave his only two begotten sons. and a few million zombies Thugs, pushers, gangsters, rapists, murderers; Detective Philip Makane thought he'd seen it all until he awoke on the morning of Easter Sunday 2015, to a world filled with bleeding rain, ravenous zombies, a homicidal ghost, and the sudden arrival of two men with extraordinary powers who both claim to be Jesus Christ in the flesh.",Their Sisters' Keepers: Women's Prison Reform in America 1830-1930.,Planet of the Apes: The Human War.,"The Railway Children. When Father mysteriously goes away, the children and their mother leave their happy life in London to go and live in a small cottage in the country. 'The Three Chimneys' lies beside a railway track - a constant source of enjoyment to all three. But the mystery remains: where is Father, and will he ever return?","The Life and Opinions of Tristram Shandy Gentleman. Introduction and Notes by Robert Folkenflik Rich in playful double entendres, digressions, formal oddities, and typographical experiments, The Life and Opinions of Tristram Shandy, Gentleman provoked a literary sensation when it first appeared in England in a series of volumes from 1759 to 1767. An ingeniously structured novel (about writing a novel) that fascinates like a verbal game of chess, Tristram Shandy is the most protean and playful English novel of the eighteenth century and a celebration of the art of fiction; its inventiveness anticipates the work of Joyce, Rushdie, and Fuentes in our own century. This Modern Library Paperback is set from the nine-volume first edition from 1759.","The Witch Family. Old Witch, Little Witch Girl, Weeny Witch, and two real girls in a fantasy that blends the worlds of reality and imagination. A Halloween classic about the power of make-believe.","Easy Riders Raging Bulls: How the Sex-Drugs-And-Rock-'N'-Roll Generation Saved Hollywood. AcknowledgmentsHollywood is a town of fabulators. The people who dwell there create fictions for a living, fictions that refuse tidily to confine themselves to the screen, but spill over into the daily lives of the men and women who regard themselves as stars in the movies of their own lives. Although this book tells readers altogether more than they may wish to know about the Hollywood of the '70s, I do not flatter myself that I have arrived at ""the truth."" At the end of this long, twisted road I am once again struck with the force of the old maxim, the more you know, the more you know what you don't know. This is particularly true in the case of Hollywood, where despite the reams of memos and contracts that now gather dust on the shelves of university libraries, very little of what really matters is committed to paper, so that an endeavor of this sort is dependent on memory -- in this case of an era twenty or thirty years in the past. Not only is the terrain distant, but in this peri",Groucho Harpo Chico and Sometimes Zeppo: A History of the Marx Brothers and a Satire on the Rest of the World.,Einstein's Monsters. A collection of stories about a frightening world inhabited by people dehumanized by the daily threat of nuclear war and postwar survivors deformed by its results.,The Princess Bride (Long Tall Texans #15).,"There's No Toilet Paper . . . on the Road Less Traveled: The Best of Travel Humor and Misadventure. The perfect trip, where nothing goes wrong, is surely not the memorable trip, which is where everythinggoes wrong and one lives to tell the tale -- and laugh about it. This collection captures the wackiest and most bizarre experiences of well-known writers whose travels have taken a detour. Stories include Nigel Barley escorting a monkey to the movies in Cameroon, Dave Barry vainly trying to learn more Japanese than how to order a beer, Alan Zweible high-tailing it to a nudist camp, Donna Marazzo bravely attempting to use a high-tech Italian toilet, and Richard Sterling feasting on deep-fried potato bugs in Burma. There are even practical tips here too; readers can surely learn from Mary Roach, who discovers that utilizing an Antarctic ice-sheet outhouse at the very moment a seal chooses to use its opening as a blowhole may not be the best way to start the day.",On Populist Reason.,"Ballad of the Whiskey Robber: A True Story of Bank Heists Ice Hockey Transylvanian Pelt Smuggling Moonlighting Detectives and Broken Hearts. Elmore Leonard meets Franz Kafka in the wild, improbably true story of the legendary outlaw of Budapest. Attila Ambrus was a gentleman thief, a sort of Cary Grant--if only Grant came from Transylvania and was a terrible professional hockey goalkeeper. During the 1990s, while playing for the biggest hockey team in Budapest, Ambrus took up bank robbery to make ends meet. Arrayed against him was perhaps the most incompetent team of crime investigators the Eastern Bloc had ever seen: a robbery chief who had learned how to be a detective by watching dubbed Columbo episodes; a forensics man who wore top hat and tails on the job; and a driver so inept he was known only by a Hungarian word that translates to Mound of Ass-Head. Ballad of the Whiskey Robberis the completely bizarre and hysterical story of the crime spree that made a nobody into a somebody, and told a forlorn nation that sometimes the brightest stars come from the blackest holes. Julian Rubinstein's bizarre crime story is so odd","We Wish to Inform You That Tomorrow We Will Be Killed with Our Families. In April of 1994, the government of Rwanda called on everyone in the Hutu majority to kill everyone in the Tutsi minority. Over the next three months, 800,000 Tutsis were murdered in the most unambiguous case of genocide since Hitler's war against the Jews. Philip Gourevitch's haunting work is an anatomy of the killings in Rwanda, a vivid history of the genocide's background, and an unforgettable account of what it means to survive in its aftermath.","The War of the Worlds. With H.G. Wells' other novels, The War of the Worldswas one of the first and greatest works of science fiction ever to be written. Even long before man had learned to fly, H.G. Wells wrote this story of the Martian attack on England. These unearthly creatures arrive in huge cylinders, from which they escape as soon as the metal is cool. The first falls near Woking and is regarded as a curiosity rather than a danger until the Martians climb out of it and kill many of the gaping crowd with a Heat-Ray. These unearthly creatures have heads four feet in diameter and colossal round bodies, and by manipulating two terrifying machines - the Handling Machine and the Fighting Machine - they are as versatile as humans and at the same time insuperable. They cause boundless destruction. The inhabitants of the Earth are powerless against them, and it looks as if the end of the World has come. But there is one factor which the Martians, in spite of their superior intelligence, have not reckoned on. I",The Feynman Lectures on Physics Vols 5-6.,"His Excellency (Les Rougon-Macquart #6). ""His Excellency (Son Excellence Eugene Rougon)is the one existing French novel which gives the reader a fair general idea of what occurred in political spheres at an important period of the Empire. It is a book for foreigners and particularly Englishmen to read with profit, for there are yet many among them who cherish the delusion that Napoleon III was not only a good and true friend of England, but also a wise and beneficent ruler of France; and this, although his reign began with bloodshed and trickery, was prolonged by means of innumerable subterfuges, and ended in woe, horror, and disgrace... There is, of course, some fiction in the book; but, again and again, page after page, I have found a simple record of fact, just deftly adapted to suit the requirements of the narrative. The history of the Second Empire is probably as familiar to me as it is to M. Zola himself-for, like him, I grew to manhood in its midst, with better opportunities, too, than he had of observing certain of it","Going Solo (Roald Dahl's Autobiography #2). Superb Stories, Daring Deeds, Fantastic Adventures Here is the action-packed sequel to Boy, a tale of Dahl's exploits as a World War II pilot. Told with the same irresistible appeal that has made Roald Dahl one the world's best-loved writers, Going Solobrings you directly into the action and into the mind of this fascinating man. From book cover: The second part of Roald Dahl's extraordinary life story. Here he is grown up: first in Africa, then learning to be a wartime fighter pilot. It is a story that is funny, frightening and full of fantasy - as you would expect. The first part of Roald Dahl's life story: Boy, is also available in the New Windmill Series. Cover illustration by Quentin Blake","The Complete World of Greek Mythology. Greek myths are among the most complex and influential stories ever told. From the first millennium BC until today, the myths have been repeated in an inexhaustible series of variations and reinterpretations. They can be found in the latest movies and television shows and in software for interactive computer games. This book combines a retelling of Greek myths with a comprehensive account of the world in which they developed their themes, their relevance to Greek religion and society, and their relationship to the landscape. ""Contexts, Sources, Meanings"" describes the main literary and artistic sources for Greek myths, and their contexts, such as ritual and theater. ""Myths of Origin"" includes stories about the beginning of the cosmos, the origins of the gods, the first humans, and the founding of communities. ""The Olympians: Power, Honor, Sexuality"" examines the activities of all the main divinities. ""Heroic exploits"" concentrates on the adventures of Perseus, Jason, Herakles, and othe","The Dark Half. Thad Beaumont would like to say he is innocent. He'd like to say he has nothing to do with the series of monstrous murders that keep coming closer to his home. But how can Thad disown the ultimate embodiment of evil that goes by the name he gave it-and signs its crimes with Thad's bloody fingerprints? ________________________ Alternate cover editions: ","President Nixon: Alone in the White House. Who was Nixon? An amazing thing about him wasn't what he did as president, but that he became president. Reeves' ""President Nixon"" uses 1000s of interviews & recently discovered or declassified documents & tapes--including Nixon's tortured memos to himself & unpublished sections of Haldeman's diaries--to offer a portrait of the brilliant contradictory man alone in the White House. This is a narrative of an introvert who dreamed of becoming the architect of his times. Late at night, he sat upstairs in the White House writing notes to himself on yellow pads, struggling to define himself & his goals: ""Compassionate, Bold, New, Courageous...Zest for the job (not lonely but awesome). Goals--reorganized govt...Each day a chance to do something memorable for someone. Need to be good to do good...Need for joy, serenity, confidence, inspiration."" But downstairs he was building a house of deception. He trusted no one because he thought others were like him. He governed by secret orders & false r","In Custody. Touching and wonderfully funny, In Custodyis woven around the yearnings and calamities of a small town scholar in the north of India. An impoverished college lecturer, Deven, sees a way to escape from the meanness of his daily life when he is asked to interview India's greatest Urdu poet, Nur - a project that can only end in disaster.","The Unicorn. When Marian Taylor takes a post as governess at Gaze Castle, a remote house on a desolate coast, she finds herself confronted with a number of weird mysteries and involved in a drama she only partly understands.","Classic Stories 1: The Golden Apples of the Sun/R is for Rocket. A spaceship captain determined to gather a cupful of the sun. . .a nubile young witch who yearns to taste human love. . .an expedition that hunts dinosaurs across the fragile and dangerous chasm of time. . . These strange and wonderful tales of beauty and terror will transport you from the begininng of time to the outermost limits of the future. Selected from his best-selling collections ""The Golden Apples Of The Sun"" and ""R Is For Rocket,"" here are thirty-two superb stories from one of the master fantastics of our age--the inimitable Ray Bradbury.",The Reign of Istar (Dragonlance: Tales II #1).,The 3-Hour Diet: On the Go.,"Guts: The True Stories behind Hatchet and the Brian Books. Guess what -- Gary Paulsen was being kind to Brian. In ""Guts"", Gary tells the real stories behind the Brian books, the stories of the adventures that inspired him to write Brian Robeson's story: working as an emergency volunteer; the death that inspired the pilot's death in ""Hatchet""; plane crashes he has seen and near-misses of his own. He describes how he made his own bows and arrows, and takes readers on his first hunting trips, showing the wonder and solace of nature along with his hilarious mishaps and mistakes. He shares special memories, such as the night he attracted every mosquito in the county, or how he met the moose with a sense of humor, and the moose who made it personal. There's a handy chapter on ""Eating Eyeballs and Guts or Starving: The Fine Art of Wilderness Nutrition"". Recipes included. Readers may wonder how Gary Paulsen survived to write all of his books -- well, it took guts.","Master of Swords (Mageverse #4). Witch Lark McClure has survived a vicious vampire attack that shook her confidence and left her struggling with feelings of helplessness and fear. The last thing she needs is a partnership with Gawain, a handsome vampire knight who means to seduce her every chance he gets. Gawain believes he needs Lark for one thing and one thing only--and it's not her skill with magic. In the process, he plans to help her overcome her fear and show her the pleasure to be found in a vampire's arms. But even as passion sizzles between Lark and Gawain, a revenge-driven killer targets them. If he has his way, Lark, Gawain, and the world itself will pay the price.","The Divine Comedy Vol. 1: Inferno. This vigorous translation of Infernopreserves Dante's simple, natural style, and captures the swift movement of the original Italian verse. Mark Musa's blank verse rendition of the poet's journey through the circles of Hell re-creates for the modern reader the rich meanings that Dante's poem had for his contemporaries. Musa's introduction and commentaries on each of the cantos brilliantly illuminate the text.","Blink: The Power of Thinking Without Thinking. Drawing on cutting-edge neuroscience and psychology and displaying all of the brilliance that made The Tipping Point a classic, Blink changes the way you'll understand every decision you make. Never again will you think about thinking the same way. Malcolm Gladwell redefined how we understand the world around us. Now, in Blink, he revolutionizes the way we understand the world within. Blink is a book about how we think without thinking, about choices that seem to be made in an instant - in the blink of an eye - that actually aren't as simple as they seem. Why are some people brilliant decision makers, while others are consistently inept? Why do some people follow their instincts and win, while others end up stumbling into error? How do our brains really work - in the office, in the classroom, in the kitchen, and in the bedroom? And why are the best decisions often those that are impossible to explain to others? In Blink we meet the psychologist who has learned to predict whether a marr","A Viagem do Caminheiro da Alvorada (As Crónicas de Nárnia #5). Escrito em 1952, A Viagem do Caminheiro da Alvorada e o quinto volume das Cronicas de Narnia. Neste livro, Lucy e Edmund vao passar umas ferias a casa de um primo insuportavelmente 'certinho'. Mas subitamente, enquanto discutem em frente a um quadro da tia Alberta sao os tres transportados por artes magicas para Narnia; mais exactamente para o mar alto, onde reencontram o principe Caspian e sao recolhidos pelo seu barco: o Caminheiro da Alvorada. Equiparado a J. R. Tolkien e Roald Dahl, C.S. Lewis conta-nos aqui mais uma historia magnifica, que a um tempo lembra A Historia Interminavel, de Michael Ende, a Alice no Pais das Maravilhas, de Lewis Carroll, e a Odisseia, de Homero. Do primeiro titulo tem o encanto e a melancolia, do segundo o enredo intrigante, e do terceiro o gozo puro da aventura. No de Paginas: 180",A People's History of the United States.,"The Art of Happiness. Nearly every time you see him, he's laughing, or at least smiling. And he makes everyone else around him feel like smiling. He's the Dalai Lama, the spiritual and temporal leader of Tibet, a Nobel Prize winner, and an increasingly popular speaker and statesman. What's more, he'll tell you that happiness is the purpose of life, and that ""the very motion of our life is towards happiness."" How to get there has always been the question. He's tried to answer it before, but he's never had the help of a psychiatrist to get the message across in a context we can easily understand. Through conversations, stories, and meditations, the Dalai Lama shows us how to defeat day-to-day anxiety, insecurity, anger, and discouragement. Together with Dr. Cutler, he explores many facets of everyday life, including relationships, loss, and the pursuit of wealth, to illustrate how to ride through life's obstacles on a deep and abiding source of inner peace.",Fire Ice (NUMA Files #3).,"The Real Jimmy Carter: How Our Worst Ex-President Undermines American Foreign Policy Coddles Dictators and Created the Party of Clinton and Kerry. This book reveals a man who has been given a dangerously free pass by historians, but who in reality is not only a failed ex-president, but as vindictive as he is egotitical, and a self-righteous busybody who leaves diaster in his wake.","Calvin and Hobbes: Sunday Pages 1985-1995: An Exhibition Catalogue. New York Timesbest-seller! Everyone misses Calvin and Hobbes. It reinvented the newspaper comic strip at a time when many had all but buried the funnies as a vehicle for fresh, creative work. Then Bill Watterson came along and reminded a new generation of what older readers and comic strip aficionados knew: A well-written and beautifully drawn strip is an intricate, powerful form of communication. And with Calvin and Hobbes, we had fun--just like readers of Krazy Katand Pogodid. Opening the newspaper each day was an adventure. The heights of Watterson's creative imagination took us places we had never been. We miss that. This book was published in conjunction with the first exhibition of original Calvin and HobbesSunday pages at The Ohio State University Cartoon Research Library. Although the work was created for reproduction, not for gallery display, was a pleasure to see the cartoonist's carefully placed lines and exquisite brush strokes. In an attempt to share this experience with t","Le Nom de la rose. Rien ne va plus dans la chretiente. Rebelles a toute autorite, des bandes d'heretiques sillonnent les royaumes. En arrivant dans le havre de serenite et de neutralite qu'est l'abbaye situee entre Provence et Ligurie, en l'an de grace et de disgrace 1327, l'ex-inquisiteur Guillaume de Baskerville, accompagne de son secretaire, se voit prie par l'abbe de decouvrir qui a pousse un des moines a se fracasser les os au pied des venerables murailles. Crimes, stupre, vice, heresie, tout va alors advenir en l'espace de sept jours. Le Nom de la roseest d'abord un grand roman policier pour amateurs de criminels hors pair qui ne se decouvrent qu'a l'ultime rebondissement d'une enquete allant un train d'enfer entre humour et cruaute, malice et seductions erotiques.",混血王子的背叛 (哈利波特 #6).,Math Fables.,"War Trash. Ha Jin's masterful new novel casts a searchlight into a forgotten corner of modern history, the experience of Chinese soldiers held in U.S. POW camps during the Korean War. In 1951 Yu Yuan, a scholarly and self-effacing clerical officer in Mao's ""volunteer"" army, is taken prisoner south of the 38th Parallel. Because he speaks English, he soon becomes an intermediary between his compatriots and their American captors.With Yuan as guide, we are ushered into the secret world behind the barbed wire, a world where kindness alternates with blinding cruelty and one has infinitely more to fear from one's fellow prisoners than from the guards. Vivid in its historical detail, profound in its imaginative empathy, War Trashis Ha Jin's most ambitious book to date.","Beauty's Punishment. This sequel to ""The Claiming of Sleeping Beauty,"" the first of Anne Rice's elegantly written volumes of erotica, continues her explicit, teasing exploration of the psychology of human desire. Beauty, having indulged in a secret and forbidden infatuation with the rebellious slave Prince Tristan, is sent away from the Satyricon-like world of the castle. Once again Rice's fabulous tale of pleasure and pain dares to explore the most primal and well-hidden desires of the human heart.","Ulysses. Literature, as Joyce tells us through the character of Stephen Dedalus, 'is the eternal affirmation of the spirit of man'. Written over a seven-year period, from 1914 to 1921, Ulysseshas survived bowderlization, legal action and bitter controversy. An undisputed modernist classic, its ceaseless verbal inventiveness and astonishingly wide-ranging allusions confirm its standing as an imperishable monument to the human condition. Declan Kiberd says in his introduction Ulyssesis 'An endlessly open book of utopian epiphanies. It holds a mirror up to the colonial capital that was Dublin on 16 June 1904, but it also offers redemptive glimpses of a future world which might be made over in terms of those utopian moments.' This edition is the standard Random House/Bodley Head text that first appeared in 1960.","Princess Sultana's Daughters. Having literally risked her life to make her story known to the people of the world outside Saudi Arabia, Princess Sultana now continues her tale of repression and violence against women into the next generation. Despite their mother's privileged position in the Saudi royal family, Sultana's daughters do not escape the consequences of feudal injustice. Maps.","Shout Out Loud! 5. In this final volume of Shout Out Loud, Tenryu and Shino finally make the call on their relationship! But Nakaya isn't so sure he can accept his father's new romance, and he decides to confront Tenryu about the relationship... Family drama, broken promises, and fear of the unknown--the conclusion to Satosumi Takaguchi's sizzling love triangle is filled with enough emotional angst to fan the flames of boy's love aficionados everywhere!","The Doll's House (The Sandman #2). A being who has existed since the beginning of the universe, Dream of the Endless rules over the realm of dreams. In THE DOLL'S HOUSE, after a decades-long imprisonment, the Sandman has returned to find that a few dreams and nightmares have escaped to reality. Looking to recapture his lost possessions, Morpheus ventures to the human plane only to learn that a woman named Rose Walker has inadvertently become a dream vortex and threatens to rip apart his world. Now as Morpheus takes on the last escaped nightmare at a serial killers convention, the Lord of Dreams must mercilessly murder Rose or risk the destruction of his entire kingdom. Collecting issues #9-16, this new edition of THE DOLL'S HOUSE features the improved production values and coloring from the Absolute Edition.","Choke. A standalone novel from Stuart Woods, the #1 New York Times bestselling author of the Stone Barrington and Holly Barker series... Chuck Chandler arrives in Key West, and, like many people, finds it the end of the line. He has, in turn, blown a career as a top touring tennis professional and a series of teaching jobs at plush clubs, usually because he has been unable to keep his hands off the female students, especially the married ones. At Key West's Olde Island Racquet Club, true to form, Chuck yields to temptation yet again, this time with the beautiful Clare Carras, who is married to an enigmatic older man with no apparent past, and who turns out to be a great deal more than the tennis pro can handle. Suddenly the easygoing Chuck is in over his head, suspected of murder and on the verge of losing not only his modest teaching career and all his possessions, but his freedom, as well. Enter Tommy Scully, a former New York Police Department homicide detective, augmenting his pension wit","Already Dead (Joe Pitt #1). Those stories you hear? The ones about things that only come out at night? Things that feed on blood, feed on us? Got news for you: they're true. Only it's not like the movies or old man Stoker's storybook. It's worse. Especially if you happen to be one of them. Justask Joe Pitt. There's a shambler on the loose. Some fool who got himself infected with a flesh-eating bacteria is lurching around, trying to munch on folks' brains. Joe hates shamblers, but he's still the one who has to deal with them. That's just the kind of life he has. Except afterlife might be better word. From the Battery to the Bronx, and from river to river, Manhattan is crawling with Vampyres. Joe is one of them, and he's not happy about it. Yeah, he gets to be stronger and faster than you, and he's tough as nails and hard to kill. But spending his nights trying to score a pint of blood to feed the Vyrus that's eating at him isn't his idea of a good time. And Joe doesn't make it any easier on himself. Going his own",Colossians and Philemon: A Critical and Exegetical Commentary (International Critical Commentary).,A Magic-Lover's Treasury of the Fantastic.,"Daisy Miller and Other Stories. ""Daisy Miller"" is a fascinating portrait of a young woman from Schenectady, New York, who, traveling in Europe, runs afoul of the socially pretentious American expatriate community in Rome. First published in 1878, the novella brought American novelist Henry James(1843-1916), then living in London, his first international success. Like many of James's early works, it portrays a venturesome American girl in the treacherous waters of European society - a theme that would culminate in his 1881 masterpiece, ""The Portrait of a Lady."" On the surface, ""Daisy Miller"" unfolds a simple story of a young American girl's willful yet innocent flirtation with a young Italian, and its unfortunate consequences. But throughout the narrative, James contrasts American customs and values with European manners and morals in a tale rich in psychological and social insight. A vivid portrayal of Americans abroad and a telling encounter between the values of the Old and New Worlds, ""Daisy Miller"" is an ideal in","Antigone. Oedipus, the former ruler of Thebes, has died. Now, when his young daughter Antigone defies her uncle, Kreon, the new ruler, because he has prohibited the burial of her dead brother, she and he enact a primal conflict between young and old, woman and man, individual and ruler, family and state, courageous and self-sacrificing reverence for the gods of the earth and perhaps self-serving allegiance to the gods of the sky. Echoing through western culture for more than two millennia, Sophocles' Antigonehas been a touchstone of thinking about human conflict and human tragedy, the role of the divine in human life, and the degree to which men and women are the creators of their own destiny. This exciting translation of the play is extremely faithful to the Greek, eminently playable, and poetically powerful. For readers, actors, students, teachers, and theatrical directors, this affordable paperback edition of one of the greatest plays in the history of the western world provides the best comb","Romeo and Juliet. In Romeo and Juliet, Shakespeare creates a world of violence and generational conflict in which two young people fall in love and die because of that love. The story is rather extraordinary in that the normal problems faced by young lovers are here so very large. It is not simply that the families of Romeo and Juliet disapprove of the lover's affection for each other; rather, the Montagues and the Capulets are on opposite sides in a blood feud and are trying to kill each other on the streets of Verona. Every time a member of one of the two families dies in the fight, his relatives demand the blood of his killer. Because of the feud, if Romeo is discovered with Juliet by her family, he will be killed. Once Romeo is banished, the only way that Juliet can avoid being married to someone else is to take a potion that apparently kills her, so that she is burried with the bodies of her slain relatives. In this violent, death-filled world, the movement of the story from love at first sight to","The Communist Manifesto. Altho both Engels & Marx are on the title page alongside the ""persistent assumption of joint-authorship"", Engels, in the preface to the 1883 German edition wrote it was ""essentially Marx's work"" & ""the basic thought...belongs solely & exclusively to Marx."" McLellan & other scholars believe ""the actual drafting of The Communist Manifesto was done exclusively by Marx."" The text itself claims to have been sketched by a group of Communists from various countries gathered in London. The Manifesto's initial publication, in 1848 in London, was in German. The 1st English translation was produced by Helen MacFarlane in 1850. The Manifesto went thru a number of editions from 1872 to 1890. New prefaces were written by Marx & Engels for the 1872 German edition, the 1882 Russian edition, the 1883 German edition & the 1888 English edition. This edition, translated by Samuel Moore with Engels' assistance, has been the commonly used English text since. Some recent English editions, such as Phil Gasper","Face Off: How to Draw Amazing Caricatures & Comic Portraits. Discover the fast, fun art of drawing comic portraits! Face Offshows you how to draw life like never before. Caricaturist Harold Hamernikshares the secrets to capturing the sillier side of friends, family, celebrities, strangers--any face that crosses your path. 40 step-by-step demonstrations show you how to sketch whimsical and expressive likenesses while developing your own quick, loose, improvisational style. You'll get expert instruction on: Drawing eyes, noses, mouths and other features. Creating portraits in front, three-quarter and profile views. Adding color to your caricatures, either by hand or via computer--instruction you won't find in any other book! Tips for making a likeness more masculine (skip the eyelashes), more feminine (lengthen the neck), younger, older, sexier, goofier--all while making a portrait your subject will love. How to draw hair as two simple lines, why drawing the parts of a face in the same order every time can cut minutes off your work, and tons of ot","House of Incest. ""The genesis of House of Incestwas in the dream. The keeping of dreams was an important part of that exploration of the unconscious. But I discovered dreams in themselves, isolated, were not always interesting. Very few of them had the complete imagery and tension to arouse others' interest. They were fragmented. The surrealists delighted in the image themselves. This was satisfying to the painters and to the film-makers. But to the novelist concerned with human character dramas, they seemed ephemeral and vaporous. They had to be connected with life. It was psychoanalysis which revealed to me the constant interaction of dream and action. It was a phrase of Jung's which inspired me to write House of Incest. He said: ""Proceed from the dream outward."" In other words, it was essentially a matter of precedence.To capture the drama of the unconscious, one had to start with the key, and the key was the dream. But the novelist's task was to pursue this dream, to unravel its meaning; the goal w","The Littles and Their Amazing New Friend. When their mini hot air balloon lands in unfamiliar territory, Tom Little and Uncle Nick find themselves in a society of unknown tinies, among them a remarkable girl named Glory. The hidden community of tiny people and animals still lives in the style of the 18th century -- and holds some very old-fashioned ideas.","Collected Poems Prose and Plays. The library of America is dedicated to publishing America's best and most significant writing in handsome, enduring volumes, featuring authoritative texts. Hailed as the ""finest-looking, longest-lasting editions ever made"" (The New Republic), Library of America volumes make a fine gift for any occasion. Now, with exactly one hundred volumes to choose from, there is a perfect gift for everyone.""In presenting Frost to us so fully and intelligently, The Library of America series has exceeded its usual high standard and produced a book you can't spiritually afford not to own"". -- William Pritchard, The Boston Globe","The White Wolf's Son: The Albino Underground (Elric & Oona Von Bek #3). - Aspect published the previous novel in the series, The Skrayling Tree, in hardcover (0-446-53104-9) in 2003 and in mass market (0-446-61340-1) in 7/04. The prior novel. The Dreamthief's Daughter (Aspect hardcover, 2001, 0-446-52618-5; mass market, 2002, 0-446-61120-4) received praise from the Washington Post, Denver Post, and Locus, where it was featured on the 2001 Recommended Reading list. - Aspect reissued Moorcock's classic Gloriana, or the Unfulfill'd Queen in trade paperback in 8/04. Gloriana won Moorcock the World Fantasy Award, the John W. Campbell Award, and the British Fantasy Award. - Moorcock's Elric the Eternal Champion saga has been optioned by Universal Pictures, with Chris and Paul Weitz (American Pie) producing. - Michael Moorcock is a vanguard author, editor, journalist, critic, and rock musician, who is editor of the controversial magazine New Worlds. A member of the Science Fiction and Fantasy Hall of Fame, Moorcock has won the Guardian Fiction Prize, the Nebula A",The Areas of My Expertise: An Almanac of Complete World Knowledge Compiled with Instructive Annotation and Arranged in Useful Order.,"John Paul George & Ben. Once there were four lads... John [Hancock], Paul [Revere], George [Washington], and Ben [Franklin]. Oh yes, there was also Tom [Jefferson], but he was annoyingly independent and hardly ever around. These lads were always getting into trouble for one reason or another. In other words, they took a few...liberties. And to be honest, they were not always appreciated. This is the story of five little lads before they became five really big Founding Fathers.","A Little House Birthday. Join the Ingalls family as they celebrate little Laura's fifth birthday in the Big Woods of Wisconsin. There are special presents from everyone, and that night Laura falls asleep to the merry music of Pa's fiddle. Renee Graef's enchanting full-color illustrations, inspired by Garth Williams's classic artwork, bring Laura and her family lovingly to life in our tenth My First Little House Book, adapted from Laura Ingalls Wilder's beloved storybooks. It's a Little House birthday to remember!","The Fantasy Writer's Assistant and Other Stories. At times literary, at other times surreal, this collection offers an eclectic group of stories that deal with real-life conflicts, human values, and coming-of-age experiences all placed within fantastical settings. One tale recounts the author's search for a Kafka story that can only be found in an elusive and quite possibly cursed edition. Other stories feature humans dressing in full-body protective exoskins in the personas of old Hollywood movie stars to barter old Earth movies for an alien aphrodisiac and a young boy coming to terms with creation and moulding his own man out of detritus from a nearby forest. In the title story, a great fantasy writer loses touch with the world he has created and pleads with his young assistant to help him visualise the story's end and enable him to complete his greatest novel ever.",Encuentro en el Ártico (Artemis Fowl #2).,Super Fast Out of Control.,"Mr. Ives' Christmas. Hijuelos' novel tells the story of Mr. Ives, who was adopted from a foundling's home as a child. When we first meet him in the 1950s, Mr. Ives is very much a product of his time. He has a successful career in advertising, a wife and two children, and believes he is on his way to pursuing the typical American dream. But the dream is shattered when his son Robert, who is studying for the priesthood, is killed violently at Christmas. Overwhelmed by grief and threatened by a loss of faith in humankind, Mr. Ives begins to question the very foundations of his life. Part love story--of a man for his wife, for his children, for God--and part meditation on how a person can find spiritual peace in the midst of crisis, Mr. Ives' Christmasis a beautifully written, tender and passionate story of a man trying to put his life in perspective. In the expert hands of Oscar Hijuelos, the novel speaks eloquently to the most basic and fulfilling aspects of life for all of us.","Tsunamis and Other Natural Disasters (Magic Tree House Research Guide #15). Magic Tree House Research Guides are now Magic Tree House Fact Trackers! Track the facts with Jack and Annie! When Jack and Annie got back from their adventure in Magic Tree House #28: High Tde in Hawaii,they had lots of questions. What causes tsunamis? Who studies earthquakes? How do volcanoes form? What should people do if an avalanche hits? Find out the answers to these questions and more as Jack and Annie track the facts. Filled with up-to-date information, photos, illustrations, and fun tidbits from Jack and Annie, the Magic Tree House Fact Trackers are the perfect way for kids to find out more about the topics they discovered in their favorite Magic Tree House adventures.","God's Covenant with Animals: A Biblical Basis for the Humane Treatment of All Creatures. From Genesis to Christ, the Bible testifies to God's love and concern for animals. The same self-centeredness that led to the violence and abuse that has marked human relations also caused the abuse and exploitation of animals. The Bible, argues the author, calls upon human beings to stop their violence and abuse of each other and all other creatures. It promises that when they do, the sorrow and the suffering that marks life on Earth will give way to the joy and peace that God ordained at the creation of the world. In these compelling essays, Rev. J. R. Hyland explores the Old and New Testament and reveals the prophetic voices that called for compassion over killing, and humane concern for all of God's creation.","The Making of a Philosopher: My Journey Through Twentieth-Century Philosophy. Part memoir, part study, The Making of a Philosopher is the self-portrait of a deeply intelligent mind as it develops over a life on both sides of the Atlantic. The Making of a Philosopher follows Colin McGinn from his early years in England reading Descartes and Anselm, to his years in the states, first in Los Angeles, then New York. McGinn presents a contemporary academic take on the great philosophical figures of the twentieth century, including Bertrand Russell, Jean-Paul Sartre, and Noam Chomsky, alongside stories of the teachers who informed his ideas and often became friends and mentors, especially the colorful A.J. Ayer at Oxford. McGinn's prose is always elegant and probing; students of contemporary philosophy and the general reader alike will absorb every page.","The Little Friend. The hugely anticipated new novel by the author of The Secret History--a best-seller nationwide and around the world, and one of the most astonishing debuts in recent times--The Little Friend is even more transfixing and resonant. In a small Mississippi town, Harriet Cleve Dusfresnes grows up in the shadow of her brother, who--when she was only a baby--was found hanging dead from a black-tupelo tree in their yard. His killer was never identified, nor has his family, in the years since, recovered from the tragedy. For Harriet, who has grown up largely unsupervised, in a world of her own imagination, her brother is a link to a glorious past she has only heard stories about or glimpsed in photograph albums. Fiercely determined, precocious far beyond her twelve years, and steeped in the adventurous literature of Stevenson, Kipling, and Conan Doyle, she resolves, one summer, to solve the murder and exact her revenge. Harriet's sole ally in this quest, her friend Hely, is devoted to her, but","Icy Sparks. Icy Sparks is the sad, funny and transcendent tale of a young girl growing up in the mountains of Eastern Kentucky during the 1950's. Gwyn Hyman Rubio's beautifully written first novel revolves around Icy Sparks, an unforgettable heroine in the tradition of Scout in To Kill a Mockingbird or Will Treed in Cold Sassy Tree. At the age of ten, Icy, a bright, curious child orphaned as a baby but raised by adoring grandparents, begins to have strange experiences. Try as she might, her ""secrets""--verbal croaks, groans, and physical spasms--keep afflicting her. As an adult, she will find out she has Tourette's Syndrome, a rare neurological disorder, but for years her behavior is the source of mystery, confusion, and deep humiliation. Narrated by a grown up Icy, the book chronicles a difficult, but ultimately hilarious and heartwarming journey, from her first spasms to her self-acceptance as a young woman. Curious about life beyond the hills, talented, and energetic, Icy learns to cut through a","Yellow Back Radio Broke-Down. ""Folks. This here is the story of the Loop Garoo Kid. A cowboy so bad he made a working posse of spells phone in sick. A bullwhacker so unfeeling he left the print of winged mice on hides of crawling women. A desperado so onery he made the Pope cry and the most powerful of cattlemen shed his head to the Executioner's swine."" And so begins the HooDoo Western by Ishmael Reed, author of Mumbo Jumboand one of America's most innovative and celebrated writers. Reed demolishes white American history and folklore as well as Christian myth in this masterful satire of contemporary American life. In addition to the black, satanic Loop Garoo Kid, Yellow Back Radio Broke-Downfeatures Drag Gibson (a rich, slovenly cattleman), Mustache Sal (his nymphomaniac mail-order bride), Thomas Jefferson and many others in a hilarious parody of the old Western.","A Room of One's Own. ""In this extraordinary essay, Virginia Woolf examines the limitations of womanhood in the early twentieth century. With the startling prose and poetic licence of a novelist, she makes a bid for freedom, emphasizing that the lack of an independent income, and the titular 'room of one's own', prevents most women from reaching their full literary potential. As relevant in its insight and indignation today as it was when first delivered in those hallowed lecture theatres, A Room of One's Own remains both a beautiful work of literature and an incisive analysis of women and their place in the world. This Macmillan Collector's Library edition of A Room of One's Own by Virginia Woolffeatures an afterword by the British art historian Frances Spalding. Designed to appeal to the booklover, the Macmillan Collector's Library is a series of beautiful gift editions of much loved classic titles. Macmillan Collector's Library are books to love and treasure.""","The Dragon Doesn't Live Here Anymore: Living Fully Loving Freely. ""Very positive and in tune with our needs today."" LEO BUSCAGLIA Alan Cohen's story is an inspiration. From his roots as an Orthodox Jew, he took a mind-expanding tour of the teachings of Jesus, Ram Dass, Zen, Jung, the Esalen Institute, and Einstein, to name a few. In this extraordinary collection of lyrical, challenging essays, Cohen synthesizes what he has learned from these masters, and shares his journey with all of us. He discusses overcoming limitations, creating fulfilling relationships, tuning into the flow of life, transformation, finding a personal path, and the greatest gift of all, love. Read it straight through, or essay by essay, for daily meditations on the mysteries of God, love, and the spiritual path.","Little Dorrit. A novel of serendipity, of fortunes won and lost, and of the spectre of imprisonment that hangs over all aspects of Victorian society, Charles Dickens's Little Dorritis edited with an introduction by Stephen Wall in Penguin Classics. When Arthur Clennam returns to England after many years abroad, he takes a kindly interest in Amy Dorrit, his mother's seamstress, and in the affairs of Amy's father, William Dorrit, a man of shabby grandeur, long imprisoned for debt in Marshalsea prison. As Arthur soon discovers, the dark shadow of the prison stretches far beyond its walls to affect the lives of many, from the kindly Mr Panks, the reluctant rent-collector of Bleeding Heart Yard, and the tipsily garrulous Flora Finching, to Merdle, an unscrupulous financier, and the bureaucratic Barnacles in the Circumlocution Office. A masterly evocation of the state and psychology of imprisonment, Little Dorritis one of the supreme works of Dickens's maturity. Stephen Wall's introduction examines Dickens","Lullabies for Little Criminals. A gritty, heart-wrenching novel about bruised innocence on the city's feral streets--the remarkable debut of a stunning literary talent Heather O'Neill dazzles with a first novel of extraordinary prescience and power, a subtly understated yet searingly effective story of a young life on the streets--and the strength, wits, and luck necessary for survival. At thirteen, Baby vacillates between childhood comforts and adult temptation: still young enough to drag her dolls around in a vinyl suitcase yet old enough to know more than she should about urban cruelties. Motherless, she lives with her father, Jules, who takes better care of his heroin habit than he does of his daughter. Baby's gift is a genius for spinning stories and for cherishing the small crumbs of happiness that fall into her lap. But her blossoming beauty has captured the attention of a charismatic and dangerous local pimp who runs an army of sad, slavishly devoted girls--a volatile situation even the normally oblivious Jul","The Brothers Karamazov. The Brothers Karamazov, by Fyodor Dostoevsky, is part of the Barnes & Noble Classicsseries, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and pages of carefully crafted extras. Here are some of the remarkable features of Barnes & Noble Classics: All editions are beautifully designed and are printed to superior specifications; some include illustrations of historical interest. Barnes & Noble Classics pulls together a constellation of influences--biographical, historical, and literary--to enrich each reader's understanding of these enduring works. The last and greatest of Dostoevsky's novels, The Brothers Karamazovis a towering masterpiece of literature, philosophy, psychology, and religion. It tells the story of intellectual Ivan, sensual Dmitri, and idealistic Alyosha Karamazov, who collide in the wake of their despicable father's brutal murder. Into the framework of the story Dostoevsky poured al","The Regime: Evil Advances (Before They Were Left Behind #2). Dynamic Romanian multimillionaire Nicolae Carpathia's sphere of influence steadily grows as he parlays his looks, charm, charisma, and intellectual brilliance into success in business and politics. But is it mere coincidence that those who oppose or offend him suffer to the point of death? Meanwhile, a young Buck Williams begins his journalistic career. Pilot Rayford Steele gains more responsibility at work and at home. Scientist Chaim Rosenzweig begins work on a secret formula that could change the world. All three go about their daily lives, unaware of each other or of the powerful young man from Romania. Around the world, the stage is being set for the cataclysmic event that will change the world forever.","Supermob: How Sidney Korshak and His Criminal Associates Became America's Hidden Power Brokers. Investigative reporter Russo returns with the remarkable story of the Supermob--a cadre of men who, over the course of decades, secretly influenced nearly every aspect of American society. Presenting startling, never-before-seen revelations about such famous members as Jules Stein, Joe Glaser, Ronald Reagan, Lew Wasserman, David Bazelon & John Jacob Factor--as well as infamous, scrupulously low-profile members--Russo pulls the lid off of a half-century of criminal infiltration into American business, politics & society. At the heart of it is Sidney ""The Fixer"" Korshak, who from the 1940's until his death in the '90s, wasn't only the most powerful lawyer in the world, according to the FBI, but the enigmatic player behind countless 20th century power mergers, political deals & organized crime chicaneries. As the underworld's primary link to the corporate upperworld, his backroom dominance & talent for anonymity will likely never be equaled. As Supermobproves, neither will his story. Cast","Bird Songs: Of North America. Drawing from the collection of the world-renowned Macaulay Library at the Cornell Lab of Ornithology, Bird Songspresents the most notable North American birdsincluding the rediscovered Ivory-billed Woodpeckerin a stunning new format. Renowned bird biologist Les Beletsky provides a succinct description of each of the 250 birds profiled, with an emphasis on their distinctive songs. Lavish full-color illustrations accompany each account, while a sleek, built-in digital audio player holds 250 corresponding songs and calls. In his foreword, North American bird expert and distinguished natural historian Jon L. Dunn shares insights gained from a lifetime of passionate study. Complete with the most up-to-date and scientifically accurate information, Bird Songsis the first book to capture the enchantment of these beautiful birds in words, pictures, and song. The Cornell Lab of Ornithology, located in Ithaca, New York, is a nonprofit institution focused on birds and whose mission is to interpret","Working with Emotional Intelligence. Goleman reveals the skills that distinguish star performers in every field, from entry-level jobs to top executive positions. Daniel Goleman's bestselling Emotional Intelligence revolutionized the way we think about personal excellence. Now he brings his insight into the workplace, in a book sure to change the shape of business for decades to come. In Working with Emotional Intelligence, Goleman reveals the skills that distinguish star performers in every field, from entry-level jobs to top executive positions. He shows that the single most important factor is not IQ, advanced degrees, or technical expertise, but the quality Goleman calls emotional intelligence. Self-awareness, self-confidence, and self-control; commitment and integrity; the ability to communicate and influence, to initiate and accept change--these competencies are at a premium in today's job market. The higher up the leadership ladder you go, the more vital these skills become, often influencing who is hired or fired,","The Road to Gandolfo. THE PRINCIPAL CAST: General Mackenzie Hawkins,legend, hero, rogue. Sam Devereaux,bright young lawyer from Harvard, now in the army, can't wait to get out. General Hawkin's four ex-wives,a quartet of incredibly endowed women who've formed a club: Hawkin's Harem. THE PREMISE: Kidnap Pope Francesco I, the most beloved pontiff since John XX III. RANSOM: One American dollar for every Catholic in the world. THE PROBLEM: Pope Francesco I says: ""Gentle souls, why not?""","The Lorax. ""UNLESS someone like you...cares a whole awful lot...nothing is going to get better...It's not."" Long before saving the earth became a global concern, Dr. Seuss, speaking through his character the Lorax, warned against mindless progress and the danger it posed to the earth's natural beauty. His classic cautionary tale is now available in an irresistible mini-edition, perfect for backpack or briefcase, for Arbor Day, Earth Day, and every day.","The Christians and the Fall of Rome (Great Ideas). Throughout history, some books have changed the world. They have transformed the way we see ourselves and each other. They have inspired debate, dissent, war and revolution. They have enlightened, outraged, provoked and comforted. They have enriched lives and destroyed them. Now Penguin brings you the works of the great thinkers, pioneers, radicals and visionaries whose ideas shook civilization, and helped make us who we are.","Apologia Pro Vita Sua (A Defense of One's Life). A highly influential figure in the Church of England, John Henry Newman stunned the Anglican community in 1843, when he left his position as vicar of St. Mary's, Oxford, to join the Roman Catholic church. Perhaps no one took greater offense than Protestant clergyman Charles Kingsley, whose scathing attacks against Newman's faith and honor inspired this brilliant response. Apologia Pro Vita Sua,Newman's spiritual autobiography, explores the depths and nature of Christianity with flowing prose and a conversational style that has ensured its status as a classic. ""False ideas may be refuted by argument, but by true ideas alone are they expelled. I will vanquish,"" Newman promised, ""not my accuser, but my judges."" His honest and passionate defense consists of a personal history of his religious convictions, from earliest memory through the Oxford movement and his ultimate conversion. His concluding point-by-point refutation of Kingsley's charges features thought-provoking contentions that st","Cliffs of Despair: A Journey to Suicide's Edge. Beachy Head is a bit of quintessential England-a seaside promontory where green pastures roll to the edge of chalk cliffs, a place of sheep and wind and ineffable beauty. But it is also a major landmark on the map of self-inflicted death. Since 1965, some five hundred people have ended their lives by jumping or driving or simply walking off the 535-foot cliffs, making Beachy Head one of the most popular suicide spots in the world. And still they come, every week another one or two-the young and the old, the terminally ill and the vigorously healthy, the bereft, the insane, the despairing. Why here? Why so many? One chilly English spring, American writer and teacher Tom Hunt left his home and family and journeyed to this bucolic landscape to find out. In a narrative that seamlessly weaves together personal memoir, history, travelogue, and investigative journalism, Hunt recounts a season of disturbing revelations (including that Princess Diana allegedly came here intending to jump). Stil","Tender is the Night. F. Scott Fitzgerald's last completed novel, Tender is the Nightis edited by Arnold Goldman with an introduction and notes by Richard Godden in Penguin Modern Classics. Between the First World War and the Wall Street Crash the French Riviera was the stylish place for wealthy Americans to visit. Among the most fashionable are psychoanalyst Dick Diver and his wife Nicole, who hold court at their villa. Into their circle comes Rosemary Hoyt, a film star, who is instantly attracted to them, but understands little of the dark secrets and hidden corruption that hold them together. As Dick draws closer to Rosemary, he fractures the delicate structure of his marriage and sets both Nicole and himself on to a dangerous path where only the strongest can survive. In this exquisite, lyrical novel, Fitzgerald has poured much of the essence of his own life; he has also depicted the age of materialism, shattered idealism and broken dreams.","Chuck Klosterman IV: A Decade of Curious People and Dangerous Ideas. ""Chuck Klosterman IV"" Consists of Three Parts: THINGS THAT ARE TRUE Profiles And Trend Stories: Britney Spears, Radiohead, Billy Joel, Metallica, Val Kilmer, Bono, Wilco, The White Stripes, Steve Nash, Morrissey, Robert Plant -- All With New Introductions And Footnotes. THINGS THAT MIGHT BE TRUE Opinions And Theories On Everything From Monogamy To Pirates To Robots To Super People To Guilt And (Of Course) Advancement -- All With New Hypothetical Questions And Footnotes. SOMETHING THAT ISN'T TRUE AT ALL This Is New Fiction. There's An Introduction, But No Footnotes. Well, There's A Footnote In The Introduction, But None In The Story.",On the Edge of the New Century.,"The Doors of Perception & Heaven and Hell. As only he can, Aldous Huxley explores the mind's remote frontiers and the unmapped areas of human consciousness. These two astounding essays are among the most profound studies of the effects of mind-expanding drugs written in this century. Contains the complete texts of , both of which became essential for the counterculture during the 1960s and influenced a generation's perception of life.",A Room with a View / Howards End.,"Around the World in Eighty Days. One ill-fated evening at the Reform Club, Phileas Fogg rashly bets his companions that he can travel around the entire globe in just eighty days -- and he is determined not to lose. Breaking the well-established routine of his daily life, the reserved Englishman immediately sets off for Dover, accompaned by his hot-blooded manservant Passepartout. Traveling by train, steamship, sailboat, sledge, and even elephant, they must overcome storms, kidnappings, natural disasters, Sioux attacks, and the dogged Inspector Fix of Scotland Yard -- who believes that Fogg has robbed the Bank of England -- to win the extraordinary wager. Around the World in 80 Days gripped audiences on its publication and remains hugely popular, combining exploration, adventure, and a thrilling race against time.","The Gospel According to Luke. The publication of the King James version of the Bible, translated between 1603 and 1611, coincided with an extraordinary flowering of English literature and is universally acknowledged as the greatest influence on English-language literature in history. Now, world-class literary writers introduce the book of the King James Bible in a series of beautifully designed, small-format volumes. The introducers' passionate, provocative, and personal engagements with the spirituality and the language of the text make the Bible come alive as a stunning work of literature and remind us of its overwhelming contemporary relevance.","The Terminal Man. Harry Benson is prone to violent, uncontrollable seizures and is under police guard after attacking two people. Dr. Roger McPherson, head of the prestigious Neuropsychiatric Research Unit at University Hospital in Los Angeles, is convinced he can cure Benson through a procedure called Stage Three. During this highly specialized experimental surgery, electrodes will be place in the patient's brain, sending monitored, soothing pulses to its pleasure canyons. Though the operation is a success, there is an unforseen development. Benson learns how to control the pulses and is increasing their frequency. He escapes -- a homicidal maniac loose in the city -- and nothing will stop his murderous rampages or impede his deadly agenda. . .","Vita Nuova. Mark Musa's venerable edition of the Vita Nuova has been superseded by the edition with translation, notes, and introduction by Andrew Frisardi (Northwestern University Press, 2012): see http://www.goodreads.com/book/show/13... In this edition Musa views Dante's intention as one of cruel andcomic commentary on the shallowness and self-pity of his protagonist, who onlyoccasionally glimpses the true nature of love. .."". theexplication de texte which accompanies Musa's] translation is instructively novel, always admirable.... This present work offers English readers a lengthy appraisalwhich should figure in future scholarly discussions."" -- Choice",Body for Life for Women: A Woman's Plan for Physical and Mental Transformation.,Barack Obama: Working to Make a Difference.,"Buried Child. A newly revised edition of an American classic, Sam Shepard's Pulitzer Prize winning Buried Childis as fierce and unforgettable as it was when it was first produced more than twenty-five years ago. A scene of madness greets Vince and his girlfriend as they arrive at the squalid farmhouse of Vince's hard-drinking grandparents, who seem to have no idea who he is. Nor does his father, Tilden, a hulking former All-American footballer, or his uncle, who has lost one of his legs to a chain saw. Only the memory of an unwanted child, buried in an undisclosed location, can hope to deliver this family.","The Lion's Game (John Corey #2). Detective John Corey, last seen in Plum Island, now faces his toughest assignment yet: the pursuit and capture of the world's most dangerous terrorist -- a young Arab known as ""The Lion"" who has baffled a federal task force and shows no sign of stopping in his quest for revenge against the American pilots who bombed Libya and killed his family. Filled with unrelenting suspense and surprising plot twists at every terrifying turn, THE LION'S GAME is a heartstopping race against time and one of Nelson DeMille's most riveting thrillers.","Absolutely Normal Chaos. At the beginning of the summer holidays, 13-year-old Mary Lou Finney begins to keep a diary as a project for her new English teacher. 200 pages later, there is rather a lot she doesn't really want her teacher to know.","Mistletoe. Glittering white snowflakes. The handsome blond ski instructor. The sparkle on a cashmere skirt. Hot cocoa and kisses in front of a crackling fire. The holiday season is the ESSENCE of magic...and romance. Four of today's bestselling teen authors -- Melissa de la Cruz (THE AU PAIRS), Aimee Friedman (SOUTH BEACH), Hailey Abbott (SUMMER BOYS), and Nina Malkin (6X) -- bring us delectable tales of love and lust and holiday cheers (and tears) in this one-of-a-kind collection that teens will devour faster than a plate of Christmas cookies.",The Guide to Hollywood and Beverly Hills.,China and Japan (Myths and Legends).,"Lidia's Family Table. The best-loved and most-admired of all America's television cooks today, Lidia Bastianich, now gives us her most generous, instructive, and creative cookbook. The emphasis here is on cooking for the family, and her book is filled with unusually delicious basic recipes for everyday eating Italian-style, as well as imaginative ideas for variations and improvisations. Here are more than 200 fabulous new dishes that will appeal both to Lidia's loyal following, who have come to rely on her wonderfully detailed recipes, and to the more adventurous cook ready to experiment. * She welcomes us to the table with tasty bites from the sea (including home-cured tuna and mackerel), seasonal salads, and vegetable surprises (Egg-Battered Zucchini Roll-Ups, Sweet Onion Gratinate). * She reveals the secret of simple make-ahead soup bases, delicious on their own and easy to embellish for a scrumptious soup that can make a meal. * She opens up the wonderful world of pasta, playing with different shapes, m","Reliquary (Pendergast #2). Hidden deep beneath Manhattan lies a warren of tunnels, sewers, and galleries, mostly forgotten by those who walk the streets above. There lies the ultimate secret of the Museum Beast. When two grotesquely deformed skeletons are found deep in the mud off the Manhattan shoreline, museum curator Margo Green is called in to aid the investigation. Margo must once again team up with police lieutenant D'Agosta and FBI agent Pendergast, as well as the brilliant Dr. Frock, to try and solve the puzzle. The trail soon leads deep underground, where they will face the awakening of a slumbering nightmare.",Fantastic Four Volume 3.,"The Essential Augustine. Foreword 1 THE MAN & HIS WRITINGS: How A. Came to the Episcopacy (Serm. 355, 2); A. Chooses Eraclius as His Successor (Letter 213, 1, 5f); A. on His Own Writings (Retractations Prol. I, 1-3) 2 FAITH & REASON: Belief is Volitional Consent (On the Spirit & Letter 21, 54; 34, 60); To Believe Is to Think w/Assent (Predestination of the Saints 5); Believing & Understanding (On Free Choice II, 2, 4-6); Authority & Reason (Against the Academics III, 20, 43); Two Ways to Knowledge (On Order II, 9, 26f); Reason & Authority in Manicheism (Value of Believing 1-4); The Relation of Authority to Reason (True Religion 24, 45--25, 47); If I Am Deceived, I Am Alive (City of God XI, 26); I Know that I Am Alive (The Trinity XV, 12, 21f); Knowledge & Wisdom (The Trinity XII, 14, 21--15, 25); Error & Ignorance (Enchiridion 17) 3 THREE LEVELS OF REALITY: Creator, Human Soul, Body (Questions for Simplicianus I, 2, 18); Natures on Three Levels (Letter 18, 2); Soul, Ruled by God, Rules Its Body (On Music VI, 5","The Family Trade (The Merchant Princes #1). A bold fantasy in the tradition of Roger Zelazny's Chronicles of Amber, The Merchant Princes is a sweeping new series from the hottest new writer in science fiction! Miriam Beckstein is happy in her life. She's a successful reporter for a hi-tech magazine in Boston, making good money doing what she loves. When her researcher brings her iron-clad evidence of a money-laundering scheme, Miriam thinks she's found the story of the year. But when she takes it to her editor, she's fired on the spot and gets a death threat from the criminals she has uncovered. Before the day is over, she's received a locket left by the mother she never knew-the mother who was murdered when she was an infant. Within is a knotwork pattern, which has a hypnotic effect on her. Before she knows it, she's transported herself to a parallel Earth, a world where knights on horseback chase their prey with automatic weapons, and where world-skipping assassins lurk just on the other side of reality - a world where her tru","The Part-Time Wife (The Secret Lives of Society Wives #6). WHAT SECRETS WAS HER HUSBAND KEEPING? At some point during the time Luke Talbot arrived late at the high-society soiree, then hurried her home for safeguarding, Abby realized her husband truly was living a double life. His secrets, however necessary, tore at her insecurities. How could she have married this man, slept in his arms, given him her heart...never knowing who he truly was? His lies left her no choice. She filed for divorce. And discovered that Luke wasn't about to let her go without a fight.","My Ishmael (Ishmael #3). The gorilla licked his lips - nervously, it seemed to me. ""I think we can safely say that I'm not prepared to deal with the needs of a person your age. I think that can be safely said. Yes."" ""You mean you give up. Is that what you're telling me? You want me to go away because you give up. Don't you think a twelve-year-old girl can have an earnest desire to save the world?"" ""I don't doubt it, "" he said, though the words sounded like they were pretty hard to get out. ""Then why won't you talk to me? Your ad in the paper said you need a pupil. Isn't that what it said?"" ""That's what it said."" ""Well, you've got one. Here I am."" With these words we meet Julie Gerchak, one of the most engaging young heroes since Huckleberry Finn - and one of Ishmael's most challenging and rewarding disciples. Unable to justify turning her away, Ishmael accepts the daunting task of juggling two pupils of widely differing characters - one of whom (Julie) insists on remaining unknown to the other (Alan Lomax, kno",Charlotte's Web.,"A History of Venice. Traces the rise ot empire of this city from its 5th century beginnings all the way through until 1797 when Napolean put an end to the thousand year-old Republic. 32 pages of black and white photos, 4 maps and charts.","One L: The Turbulent True Story of a First Year at Harvard Law School. Newsweekcalls him ""an extraordinarily canny and empathetic observer."" In bestseller after bestseller, Turow uses his background as a lawyer to create suspense fiction so authentic it reads with the hammering impact of fact. But before he became a worldwide sensation, Scott Turow wrote a book that is entirely true, the account of his own searing indoctrination into the field of law called... The first year of law school is an intellectual and emotional ordeal so grueling that it ensures only the fittest survive. Now Scott Turow takes you inside the oldest and most prestigious law school in the country when he becomes a ""One L,"" as entering students are known at Harvard Law School. In a book that became a national bestseller, a law school primer, and a classic autobiography, he brings to life the fascinating, shocking reality of that first year. Provocative and riveting, One Lreveals the experience directly from the combat zone: the humiliations, triumphs, hazings, betrayals, and challen","Ghostwritten. A gallery attendant at the Hermitage. A young jazz buff in Tokyo. A crooked British lawyer in Hong Kong. A disc jockey in Manhattan. A physicist in Ireland. An elderly woman running a tea shack in rural China. A cult-controlled terrorist in Okinawa. A musician in London. A transmigrating spirit in Mongolia. What is the common thread of coincidence or destiny that connects the lives of these nine souls in nine far-flung countries, stretching across the globe from east to west? What pattern do their linked fates form through time and space? A writer of pyrotechnic virtuosity and profound compassion, a mind to which nothing human is alien, David Mitchell spins genres, cultures, and ideas like gossamer threads around and through these nine linked stories. Many forces bind these lives, but at root all involve the same universal longing for connection and transcendence, an axis of commonality that leads in two directions--to creation and to destruction. In the end, as lives converge with a f",Tales of Power.,"Always Enough: God's Miraculous Provision Among the Poorest Children on Earth. Even the most desperate poverty, the most devastating illness, the most heart-wrenching grief is not beyond God's help. His love and power have no limits-and that's a message readers from all walks of life need to hear. The modern miracles that Rolland and Heidi Baker experience every day in their work with Mozambique's throwaway children, movingly chronicled in Always Enough, will inspire anyone looking for hope in the midst of suffering. The Bakers, formerly missionaries in Indonesia and Hong Kong, share how their work for the past eight years in Mozambique, one of the poorest nations on earth, has borne spiritual fruit beyond their wildest dreams. Every day presents multiple impossible needs. But in the face of everything Satan can do, as Rolland and Heidi lay down their lives and ""minister to the one,"" there is always enough. Readers will discover that the simple practice of choosing to step out and trust God every day unleashes his provision for every need.",Guide to Stress Reduction.,"Equal Rites (Discworld #3; Witches #1). On Discworld, a dying wizard tries to pass on his powers to an eighth son of an eighth son, who is just at that moment being born. The fact that the son is actually a daughter is discovered just a little too late. The town witch insists on turning the baby into a perfectly normal witch, thus mending the magical damage of the wizard's mistake. But now the young girl will be forced to penetrate the inner sanctum of the Unseen University--and attempt to save the world with one well-placed kick in some enchanted shins! Reissue.","Ranma ½ Vol. 1 (Ranma ½ (US 2nd) #1). Years ago, Genma promised his old friend Soun Tendo that Ranma would marry one of Soun's three daughters, and carry on the family's martial arts school. Except that the girl picked to be Ranma's bride doesn't seem to like him, Ranma keeps getting into fights..and did we mention that whole changing into a girl thing?","Mythology: Timeless Tales of Gods and Heroes. MONSTERS, MORTALS, GODS, AND WARRIORS For over fifty years readers have chosen this book above all others to discover the thrilling, enchanting, and fascinating world of Western mythology. From Odysseus's adventure-filled journey to the Norse god Odin's effort to postpone the final day of doom, Edith Hamilton's classic collection not only retells these stories with brilliant clarity but shows us how the ancients saw their own place in the world and how their themes echo in our consciousness today. An essential part of every home library, Mythologyis the definitive volume for anyone who wants to know the key dramas, the primary characters, the triumphs, failures, fears, and hopes first narrated thousands of years ago--and still spellbinding to this day. Edith Hamilton is the acclaimed author of The Greek Wayand The Roman Way, which have been read by generations of readers around the world. She was made an honorary citizen of Athens in 1957.","Indian Givers: How the Indians of the Americas Transformed the World. "" As entertaining as it is thoughtful....Few contemporary writers have Weatherford's talent for making the deep sweep of history seem vital and immediate."" THE WASHINGTON POST After 500 years, the world's huge debt to the wisdom of the Indians of the Americas has finally been explored in all its vivid drama by anthropologist Jack Weatherford. He traces the crucial contributions made by the Indians to our federal system of government, our democratic institutions, modern medicine, agriculture, architecture, and ecology, and in this astonishing, ground-breaking book takes a giant step toward recovering a true American history.","A Complicated Kindness. In this stunning coming-of-age novel, award-winner Miriam Toews balances grief and hope in the voice of a witty, beleaguered teenager whose family is shattered by fundamentalist Christianity ""Half of our family, the better-looking half, is missing,"" Nomi Nickel tells us at the beginning of A Complicated Kindness. Left alone with her sad, peculiar father, her days are spent piecing together why her mother and sister have disappeared and contemplating her inevitable career at Happy Family Farms, a chicken slaughterhouse on the outskirts of East Village. Not the East Village in New York City where Nomi would prefer to live, but an oppressive town founded by Mennonites on the cold, flat plains of Manitoba, Canada. This darkly funny novel is the world according to the unforgettable Nomi, a bewildered and wry sixteen-year-old trapped in a town governed by fundamentalist religion and in the shattered remains of a family it destroyed. In Nomi's droll, refreshing voice, we're told the story of","The Door to December. The #1 New York Times bestselling author delivers a truly suspenseful novel of a mother who must save her daughter from a threat she can hardly understand. What happened to nine-year-old Melanie during the six years she was subjected to terrifying experiments? And what is the unstoppable power that she can unleash from behind the ""Door to December""?",Monkey Business.,"Playing Easy to Get (B.A.D. Agency #1.5; Vikings Underground #3; Immortals After Dark #1). New York Times bestselling author Sherrilyn Kenyon and rising stars Jaid Black and Kresley Cole unlock the pleasures and perils of embracing the boldest and most powerful of lovers -- 100% alpha males -- in three sensually erotic tales. Discover the physical rapture of his muscular arms.... Become a prisoner of passion, swept away by an encounter with his primal side.... And get lost in the all-consuming thrill of white-hot pursuit by a relentless stranger who may be your most dangerous foe, the best lover you've ever had -- or both. Let your fantasies run wild with these unforgettable novellas where bigger is most definitely better -- and playing easy-to-get is the only way to go! ""Turn Up The Heat"" / Sherrilyn Kenyon The story of an average woman who wins the vacation of a lifetime - a trip to Sex Camp. But what Allison George gets is a race for her life with an ex-Mafia who is now being sought by his previous employer. Vince Cappelleti knew the island was a risky proposition, but he","The Moon in Hiding (The Green Lion Trilogy #2). A magic mist, an enchanted falcon, and a chest of ancient bones--these are the elements of a royal mystery in Celydonn, a once-peaceful kingdom. But since the arrival of scheming Princess Diaspad to the court, the troubles of Celydonn are many, and the truth obscured. The allied talents of the wizard Glastyn's apprentice, Teleri, and Ceilyn, the kingdom's most virtuous knight, brought an uncertain peace to Celydonn. But when a casket of ancient kings' bones is robbed from its sepulchre, suspicious and accusing eyes turn to Ceilyn. And when rituals long forgotten are performed on a moonless night, the dread word ""witch"" burns Teleri's ears.",The Eclogues and The Georgics.,"Gone Bamboo. Henry and his wife, Frances, live an idyllic life as two of the Caribbean's most charming ex-pats (and professional assassins). But when Donnie, a powerful capo, is relocated to the island the scene is set for an Elmore Leonard-style mix of low life and high comedy.","Hitler's Willing Executioners: Ordinary Germans and the Holocaust. In a work that is as authoritative as it is explosive, Goldhagen forces us to revisit and reconsider our understanding of the Holocaust and its perpetrators, demanding a fundamental revision in our thinking of the years between 1933-1945. Drawing principally on materials either unexplored or neglected by previous scholars, Goldhagen marshals new, disquieting primary evidence that explains why, when Hitler conceived of the ""final solution"" he was able to enlist vast numbers of willing Germans to carry it out. A book sure to provoke new discussion and intense debate.","Dracula. 'Alone with the dead! I dare not go out, for I can hear the low howl of the wolf through the broken window' When Jonathan Harker visits Transylvania to help Count Dracula with the purchase of a London house, he makes horrifying discoveries about his client and his castle. Soon afterwards, a number of disturbing incidents unfold in England: an unmanned ship is wrecked at Whitby; strange puncture marks appear on a young woman's neck; and the inmate of a lunatic asylum raves about the imminent arrival of his 'Master'. In the ensuing battle of wits between the sinister Count Dracula and a determined group of adversaries, Bram Stoker created a masterpiece of the horror genre, probing deeply into questions of human identity and sanity, and illuminating dark corners of Victorian sexuality and desire.","How ""Natives"" Think: About Captain Cook For Example.","Toast and Other Stories. Short story collection containing such gems as ""Antibodies,"" ""Bear Trap,"" ""Extracts from the Club Diary,"" ""A Colder War,"" ""TOAST: A con report,"" ""A Boy and His God,"" ""Ship of Fools,"" ""Dechlorinating the Moderator,"" ""Yellow Snow,"" ""Big Brother Iron,"" ""Lobsters.""","Ghost Stories (Nancy Drew). - The Campus Ghost - The Ghost Dogs of Whispering Oaks - Blackbeard's Skull - The Ghost Jogger - The Curse of the Frog - The Greenhouse Ghost WHEN NIGHT FALLS AND THE HORRORS RISE -- WILL NANCY STAND A GHOST OF A CHANCE?What strange dark secrets can a college professor reveal -- after she has risen from the grave? Do dogs howl at the moon . . .do their eyes glow in the night -- one hundred years after their death? What evil power lurks in the fortune-teller's den -- embodied in the sinister form of a terrifying froglike creature? Prepare to lock your doors and dim your lights. The sound you hear is the beating of your own heart. Nancy Drew is about to face some of her most challenging cases ever -- six frightening and unforgettable encounters with the unknown. . . .","The Outsiders. In Ponyboy's world there are two types of people. There are the Socs, the rich society kids who get away with anything. Then there are the greasers, like Ponyboy, who aren't so lucky. Ponyboy has a few things he can count on: his older brothers, his friends, and trouble with the Socs, whose idea of a good time is beating up greasers. At least he knows what to expect-until the night things go too far.","Baseball: a Literary Anthology. Robert Frost never felt more at home in America than when watching baseball ""be it in park or sand lot."" Full of heroism and heartbreak, the most beloved of American sports is also the most poetic. Its rhythms are those of the seasons. Its memories are savored, it losses lamented. Baseball's graceful athleticism, formal strategy, and democratic spirit have ensured the devotion of Americans for generations, and writers have been drawn to this sport as to no other. With Baseball: A Literary Anthology, The Library of America presents a vivid panorama of the game that is, in Roger Angell's words, ""one of the reasons that summer exists."" It offers a lively mix of stories, memoirs, poems, news reports, and insider accounts about all aspects of the great American game, from its pastoral 19th-century beginnings to its apotheosis as the undisputed national pastime. Here are the major leaguers and the bush leaguers, the umpires and broadcasters, the wives and girlfriends and would-be girlfriends","The Stone Raft. What if, one day, Europe was to crack along the length of the Pyrenees, separating the Iberian peninsula? In Saramago's lovely fable, the new island is sent spinning, like a great stone raft, towards the Azores. While the authorities panic and tourists and investors flee, three men, two women and a dog are drawn together by portents that burden them with a bemusing sense of responsibility. Travelling at first packed into a car, then into a wagon, they take to the road to explore the limits of their now finite land, adrift in a world made new by this radical shift in perspective.","Midnight's Children. Salman Rushdie holds the literary world in awe with a jaw-dropping catalog of critically acclaimed novels that have made him one of the world's most celebrated authors. Winner of the prestigious Booker of Bookers, Midnight's Children tells the story of Saleem Sinai, born on the stroke of India's independence.","The Rise of Theodore Roosevelt. Selected by the Modern Library as one of the 100 best nonfiction books of all time Described by the Chicago Tribuneas ""a classic,"" The Rise of Theodore Rooseveltstands as one of the greatest biographies of our time. The publication of The Rise of Theodore Roosevelton September 14th, 2001 marks the 100th anniversary of Theodore Roosevelt becoming president.","Little Women (Little Women #1). The illustrations for this series were created by Scott McKowen, who, with his wife Christina Poddubiuk, operates Punch & Judy Inc., a company specializing in design and illustration for theater and performing arts. Their projects often involve research into the visual aspects of historical settings and characters. Christina is a theater set and costume designer and contributed advice on the period clothing for the illustrations. Scott created these drawings in scratchboard an engraving medium which evokes the look of popular art from the period of these stories. Scratchboard is an illustration board with a specifically prepared surface of hard white chalk. A thin layer of black ink is rolled over the surface, and lines are drawn by hand with a sharp knife by scraping through the ink layer to expose the white surface underneath. The finished drawings are then scanned and the color is added digitally. The beautiful Meg, artistic tomboy Jo, doomed Beth, and selfish Amy: since the publica","And I Don't Want to Live This Life: A Mother's Story of Her Daughter's Murder. For most of us, it was just another horrible headline. But for Deborah Spungen, the mother of Nancy, who was stabbed to death at the Chelsea Hotel, it was both a relief and a tragedy. Here is the incredible story of an infant who never stopped screaming, a toddler who attacked people, a teenager addicted to drugs, violence, and easy sex, a daughter completely out of control--who almost destroyed her parents' marriage and the happiness of the rest of her family.",Outsider.,The Phenomenon of Life: Toward a Philosophical Biology.,"Lies & the Lying Liars Who Tell Them: A Fair & Balanced Look at the Right. Al Franken, one of our savviest satirists (People), has been studying the rhetoric of the Right. He has listened to their cries of slander, bias, and even treason. He has examined the Bush administration's policies of squandering our surplus, ravaging the environment, and alienating the rest of the world. He's even watched Fox News. A lot. And, in this fair and balanced report, Al bravely and candidly exposes them all for what they are: liars. Lying, lying liars. Al destroys the liberal media bias myth by doing what his targets seem incapable of: getting his facts straight. Using the Right's own words against them, he takes on the pundits, the politicians, and the issues, in the most talked about book of the year. Timely, provocative, unfailingly honest, and always funny, Liessticks it to the most right-wing administration in memory, and to the right-wing media hacks who do its bidding.","Queen of the Scene. This little ruler of the playground has got game. Basketball, stickball, jump-rope, soccer-there's nothing she won't try. And watch out, boys, because she's representing all the ladies and has girl power to the max. Queen Latifah, the Grammy Award-winning First Lady of Hip-Hop, teams up with the Caldecott Honor artist Frank Morrison in a celebration of spirit and pride. Ages 3 - 8","Dracula Was a Woman: In Search of the Blood Countess of Transylvania. An investigation in the life of Elizabeth Bathory, a Hungarian countess who also was a serial killer of young peasant and noble women. This book highlights court documents translated for the first time into English. The second half is a general interest exposition on vampires, werewolves, and necrophiles.",The Frog King.,"Introduction to Superstrings and M-Theory. Superstrings and M-theory are provocative and controversial, but unarguably among the most interesting and active areas of research in current physics. Called by some ""the theory of everything, "" superstrings may solve a problem that has eluded physicists for the past 50 years, the final unification of the two great theories of the twentieth century, general relativity and quantum field theory. Now, here is a thoroughly revised, second edition of a course-tested comprehensive introductory graduate text on superstrings which stresses the most current areas of interest, not covered in other presentations, including four-dimensional superstrings, Kac-Moody algebras, Teichmuller spaces and Calabi-Yau manifolds, M-theory membranes and D-branes, duality and BPS relations, and matrix models. Prerequisites are an acquaintance with quantum mechanics and relativity.","The Magicians' Guild (Black Magician Trilogy #1). ""We should expect this young woman to be more powerful than our average novice, possibly even more powerful than the average magician."" This year, like every other, the magicians of Imardin gather to purge the city of undesirables. Cloaked in the protection of their sorcery, they move with no fear of the vagrants and miscreants who despise them and their work---until one enraged girl, barely more than a child, hurls a stone at the hated invaders...and effortlessly penetrates their magical shield. What the Magicians' Guild has long dreaded has finally come to pass. There is someone outside their ranks who possesses a raw power beyond imagining, an untrained mage who must be found and schooled before she destroys herself and her city with a force she cannot yet control.","Faking It (Dempseys #2). LOVE AND DECEPTION HAVE A LOT IN COMMON. Meet the Goodnights, a respectable family who run a respectable art gallery-and have for generations. There's Gwen, the matriarch who likes to escape reality, Eve the oldest daughter who has a slight identity problem (she has two), Nadine, the granddaughter who's ready to follow in the family footsteps as soon as she can find a set that isn't leading off a cliff. And lastly, Matilda, the youngest daughter, has inherited the secret locked down in the basement of the Goodnight Gallery, the secret she's willing to do almost anything to keep, even break into a house in the dead of night to steal back her past. THE RISKS ARE INTOXICATING. Meet the Dempseys, or at least meet Davy, a reformed con man who's just been ripped off for a cool three million by his financial manager, who then gallantly turned it over to Clea Lewis, the most beautiful sociopath Davy ever slept with. Davy wants the money back, but more than that he'll do anything to keep Clea f",彼方から 13.,U.S.A.: 42e Parallèle/L'An premier du siècle/La Grosse galette.,"Grand Conspiracy (Wars of Light & Shadow #5; Arc 3 - Alliance of Light #2). Janny Wurts's justifiably skilful and lovingly composed Wars of Light and Shadowseries joins the ranks of Robert Jordan's protracted Wheel of Timeseries, et al., as either--depending on which camp you hail from--the height of high fantasy or the deeply frustrating (yet persistent) problem with the genre.All that said, Wurts has wooed many fans to her series with compelling characters, a tremendously complex (and painstakingly developed) web of plot lines, and distinctively lush and lyric storytelling. Grand Conspiracy represents part two of part three of a five-part epic--to her credit, Wurts broke the series' third story arc (Alliance of Light) into three parts only reluctantly. The action in this instalment surrounds Arithon's Ffalenn, the fugitive Master of Shadow and the victim of the title's grand conspiracy. Everyone's got it in for him these days, and even his beloved, Elaira, has been shanghaied by her Koriani cronies into playing a role in his betrayal--she must transform an i","The Call of Earth (Homecoming #2). As Harmony's Oversoul grows weaker, a great warrior has arisen to challenge its bans. His name is Moozh, and he has won control of an army using forbidden technology. now he is aiming his soldiers at the city of Basilica, that strong fortress above the Plain.Basilica remains in turmoil. Wetchik and his sons are not strong enough to stop a army. Can Rasa and her allies defeat him through intrigue, or will Moozh take the city and all who are in it?","Big Dead Place: Inside the Strange and Menacing World of Antarctica. When Johnson went to work for the U.S. Antarctic Program (devoted to scientific research and education in support of the national interest in the Antarctic), he figured he'd find adventure, beauty, penguins and lofty-minded scientists. Instead, he found boredom, alcohol and bureaucracy. As a dishwasher and garbage man at McMurdo Station, Johnson quickly shed his illusions about Antarctica. Since he and his co-workers seldom ventured beyond the station's grim, functional buildings, they spent most of their time finding ways to entertain themselves, drinking beer, bowling and making home movies. The dormlike atmosphere, complete with sexual hijinks and obscene costume parties, sometimes made life there feel like ""a cheap knock-off of some original meaty experience."" What dangers there were existed mostly in the psychological realm; most people who were there through the winter developed the ""Antarctica stare,"" an unnerving tendency to forget what they were saying mid-sentence and gaze du","The Great And Secret Show (Book of the Art #1). Clive Barker's bestseller Weaveworldastonished readers with his visionary range, establishing him as a master of fabulist literature. Now, with The Great and Secret Showhe rises to new heights. In this unforgettable epic he wields the full power and sweep of his talents. ""Succinctly put,"" says Barker, ""it's about Hollywood, sex and Armageddon."" Memory, prophecy and fantasy; the past, the future, and the dreaming moment between are all one country living one immortal day. To know that is Wisdom. To use it is the Art. Armageddon begins with a murder in the Dead Letter Office in Omaha. A lake that has never existed falls from the clouds over Palomo Grove, CA. Young passion blossoms, as the world withers with war. The Great and Secret Show has begun on the stage of the world. Soon the final curtain must fall. In this, the First Book of the Art, Barker has created a masterpiece of the imagination that explores the uncharted territory within our secret lives and most private hearts. Sprawlin","The First Philosophers: The Presocratics and Sophists. Aristotle said that philosophy begins with wonder, and the first Western philosophers developed theories of the world which express simultaneously their sense of wonder and their intuition that the world should be comprehensible. But their enterprise was by no means limited to this proto-scientific task. Through, for instance, Heraclitus' enigmatic sayings, the poetry of Parmenides and Empedocles, and Zeno's paradoxes, the Western world was introduced to metaphysics, rationalist theology, ethics, and logic, by thinkers who often seem to be mystics or shamans as much as philosophers or scientists in the modern mould. And out of the Sophists' reflections on human beings and their place in the world arose and interest in language, and in political, moral, and social philosophy. This volume contains a translation of all the most important fragments of the Presocratics and Sophists, and of the most informative testimonia from ancient sources, supplemented by lucid commentary.",Lobsters.,Black Beauty (Coloring Book).,Stopping by Woods on a Snowy Evening.,"The Beach House (Beach House #1). Caretta Rutledge thought she'd left her Southern roots and troubled family far behind. But an unusual request from her mother coming just as her own life is spinning out of control has Cara heading back to the scenic Lowcountry of her childhood summers. Before long, the rhythms of the island open her heart in wonderful ways as she repairs the family beach house, becomes a bona fide ""turtle lady"" and renews old acquaintances long thought lost. But it is in reconnecting with her mother that she will learn life's most precious lessons true love involves sacrifice, family is forever and the mistakes of the past can be forgiven.","Touchy and Feely (Sissy Sawyer #1). The first in the new Sissy Sawyer series When Fidelio Valdes, a disaffected young Puerto Rican, and Robert Touche, a drunk and aggressive businessman who has lost his job and his wife, meet, they begin a spree of random shootings. The Connecticut Police are baffled until widowed fortune-teller Sissy Sawyer contacts them to say that her cards are predicting the murders and giving her clues to the identity of the killers . . .","Angels. 'Adazzling and savage first novel' New York Times Angelstells the story of two born losers. Jamie has ditched her husband and is running away with her two baby girls. Bill is dreaming of making it big in a life of crime. They meet on a Greyhound bus and decide to team up. So begins a stunning, tragic odyssey through the dark underbelly of America - the bars, bus stations, mental wards and prisons that play host to Jamie and Bill as they find themselves trapped in a downward spiral though rape, alcohol, drugs and crime, to madness and death. From the author of Tree of Smoke, winner of the National Book Award for Fiction","Les Misérables. Sensational, dramatic, packed with rich excitement and filled with the sweep and violence of human passions, LES MISERABLES is not only superb adventure but a powerful social document. The story of how the convict Jean-Valjean struggled to escape his past and reaffirm his humanity, in a world brutalized by poverty and ignorance, became the gospel of the poor and the oppressed.",A Complicated Kindness (Bookclub-In-A-Box).,"Koba the Dread: Laughter and the Twenty Million. A brilliant weave of personal involvement, vivid biography and political insight, Koba the Dreadis the successor to Martin Amis's award-winning memoir, Experience. Koba the Dreadcaptures the appeal of one of the most powerful belief systems of the 20th century -- one that spread through the world, both captivating it and staining it red. It addresses itself to the central lacuna of 20th-century thought: the indulgence of Communism by the intellectuals of the West. In between the personal beginnings and the personal ending, Amis gives us perhaps the best one-hundred pages ever written about Stalin: Koba the Dread, Iosif the Terrible. The author's father, Kingsley Amis, though later reactionary in tendency, was a ""Comintern dogsbody"" (as he would come to put it) from 1941 to 1956. His second-closest, and then his closest friend (after the death of the poet Philip Larkin), was Robert Conquest, our leading Sovietologist whose book of 1968, The Great Terror, was second only to Solzhenitsyn'","Sideswipe: A Hoke Moseley Novel. Hoke Moseley has had enough. Tired of struggling against alimony payments, two teenage daughters, a very pregnant, very single partner, and a low paying job as a Miami homicide detective, Hoke moves to Singer Island and vows never step foot on the mainland again. But on the street, career criminal Troy Louden is hatching plans of his own with a gang including a disfigured hooker, a talentless artist, and a clueless retiree. But when his simple robbery results in ruthless and indiscriminate bloodshed, Hoke quickly remembers why he is a cop and hurls himself back into the world he meant to leave behind forever. A masterly tale of both mid-life crisis and murder, Sideswipeis a page-turning thriller packed with laughs, loaded with suspense, and featuring one of the truly original detectives of all time.","Janet My Mother and Me: A Memoir of Growing Up with Janet Flanner and Natalia Danesi Murray. ""Janet, My Mother, and Me"" is a charming, captivating memoir about a boy growing up in a household of two extraordinary women. William Murray was devoted to his mother, Natalia Danesi Murray, and to his mother's longtime lover, writer Janet Flanner. Even as a teenager, he accepted their unconventional relationship. His portrait of the two most important people in his life is unforgettable. Janet Flanner was already celebrated as the author of a new style of personal journalism for her ""Letter from Paris"" in ""The New Yorker"" when she met the Italian-born Natalia Murray on Fire Island, New York, in 1940. Their encounter, writes William Murray, was a """"coup de foudre,"" a thunderbolt that instantly sent them rushing into each other's arms and forever altered their lives, as well as mine."" Murray was already growing up in two cultures on different continents, in New York and Rome, when his mother's life changed so dramatically. He quickly accepted Flanner and the unusual household in which",New York 2000: Architecture and Urbanism Between the Bicentennial and the Millennium.,"Something Blue (Darcy & Rachel #2). Following the smash-hit Something Borrowedcomes story of betrayal, redemption, and forgiveness Darcy Rhone has always been able to rely on a few things: Her beauty and charm. Her fiance, Dex. Her lifelong best friend, Rachel. She never needed anything else. Or so she thinks until Dex calls off their dream wedding and she uncovers the ultimate betrayal. Blaming everyone but herself, Darcy flees to London and attempts to re-create her glamorous life on a new continent. But to her dismay, she discovers that her tried-and-true tricks no longer apply--and that her luck has finally expired. It is only then that she can begin her journey toward redemption, forgiveness, and true love.","Kiss Me Like a Stranger: My Search for Love and Art. Gene Wilder was one of the great comic actors who defined the 1970's and 1980's in movies. From his early work with Woody Allen to the rich group of movies he made with Mel Brooks to his partnership on screen with Richard Pryor, Wilder's performances are still discussed and celebrated today. Kiss Me Like A Stranger is an intimate glimpse of the man behind the image on the screen. In this book, Wilder talks about everything from his experiences in psychoanalysis to why he got into acting (and later comedy-his first goal was to be a Shakespearean actor) to how a Midwestern childhood with a sick mother changed him. He writes about the creative process on stage and on screen, and divulges moments from life on the sets of the some of the most iconic movies of our time. He also opens up about his love affairs and marriages, including his marriage to comedian Gilda Radner. But the core of Kiss Me Like A Strangeris an actor's search for truth and a thoughtful analysis of why the choices he mad","Rebecca. Last night I dreamt I went to Manderley again... Working as a lady's companion, the heroine of Rebeccalearns her place. Her future looks bleak until, on a trip to the South of France, she meets Max de Winter, a handsome widower whose sudden proposal of marriage takes her by surprise. She accepts, but whisked from glamorous Monte Carlo to the ominous and brooding Manderley, the new Mrs de Winter finds Max a changed man. And the memory of his dead wife Rebecca is forever kept alive by the forbidding housekeeper, Mrs Danvers... Not since Jane Eyre has a heroine faced such difficulty with the Other Woman. An international bestseller that has never gone out of print, Rebeccais the haunting story of a young girl consumed by love and the struggle to find her identity.","Ulysses. The most famous day in literature is June 16, 1904, when a certain Mr. Leopold Bloom of Dublin eats a kidney for breakfast, attends a funeral, admires a girl on the beach, contemplates his wife's imminent adultery, and, late at night, befriends a drunken young poet in the city's red-light district. Ulysseshas been labeled dirty, blasphemous & unreadable. In a 1933 court decision, Judge John M. Woolsey declared it an emetic book--tho he found it sufficiently unobscene to allow its importation into the USA--& Virginia Woolf was moved to decry Joyce's ""cloacal obsession."" None of these adjectives, however, do the slightest justice to the novel. To this day it remains the modernist masterpiece, in which the author takes both Celtic lyricism & vulgarity to splendid extremes. It's funny, sorrowful, even (in a close-focus sort of way) suspenseful. Despite the exegetical industry that has sprung up in the last 75 years, Ulyssesis also a compulsively readable book. Even the verbal vaudeville of","The Capricorn Stone. HEIRESSES OF SHAME Bridie and Kate Chance had been raised in luxury, protected from the world by a father they adore. But suddenly, their father was dead--and worse--revealed as a notorious jewel thief. Forced from their home, shamed, and virtually penniless, they began their lives again in London, unaware that they held the secret to a fabulous fortune...","Doom Patrol Vol. 5: Magic Bus. In the 1960s, they were DC Comics' misfit super-heroes, a team of borderline freaks who secretly banded together against evil. The team was brought back in 1989 by Grant Morrison, renowned writer of JLA and The Invisibles, who reinvented them as disaffected heroes up against a parade of absurdist villains.",EULIS! The History of Love.,"The Final Battle (Tales from the Odyssey #6). After fighting his way through numerous battles and hardships for twenty years, Odysseus finally reaches his home land of Ithaca where he discovers that his island has been overrun and his family s safety is in jeopardy--forcing him to take on one more fight in order to settle all scores once and for all. Reprint. Teacher's Guide available.","Sudden Fiction: American Short-Short Stories. Here are 70 of the very best short-short stories of recent years, including contributions from such contemporary writers as Raymond Carver, Leonard Michaels and John Updike; a few modern masters such as Hemingway and Cheever; and an assortment of talented new young writers. Sudden Fiction brilliantly captures the tremendous popularity of this new and distinctly American form.","Exile's Valor (Heralds of Valdemar #7). This stand-alone novel in the Valdemarseries continues the story of prickly weapons-master Alberich. Once a heroic Captain in the army of Karse, a kingdom at war with Valdemar, Alberich becomes one of Valdemar's Heralds. Despite prejudice against him, he becomes the personal protector of young Queen Selenay. But can he protect her from the dangers of her own heart?","The Silmarillion. A number-one New York Timesbestseller when it was originally published, The Silmarillionis the core of J.R.R. Tolkien's imaginative writing, a work whose origins stretch back to a time long before The Hobbit.Tolkien considered Thr Silmarillionhis most important work, and, though it was published last and posthumously, this great collection of tales and legends clearly sets the stage for all his other writing. The story of the creation of the world and of the the First Age, this is the ancient drama to which the characters in The Lord of the Ringslook back and in whose events some of them, such as Elrond and Galadriel, took part. The three Silmarils were jewels created by Feanor, most gifted of the Elves. Within them was imprisoned the Light of the Two Trees of Valinor before the Trees themselves were destroyed by Morgoth, the first Dark Lord. Thereafter, the unsullied Light of Valinor lived on only in the Silmarils, but they were seized by Morgoth and set in his crown, which was guarde","No Other Woman (No Other #2). Lady Shawna is tormented by her guilt--for it was she who seduced David Douglas of Castle Rock and inadvertently lured the larid to his death. Now surely amdness has claimed her, for David Douglas has returned a hardened, bitter spirit--slipping like a ghost into Shawna's chamber, determined to reclaim his brithright and wreak vengeance on his betrayers.",Women Who Love Too Much.,"Breathing Lessons. Breathing Lessonsis the wonderfully moving and surprising story of Ira and Maggie Moran. She's impetuous, harum-scarum, easygoing; he's competent, patient, seemingly infallible. They've been married for 28 years. Now, as they drive from their home in Baltimore to the funeral of Maggie's best friend's husband, Anne Tyler shows us all there is to know about a marriage - the expectations, the disappointments, the way children can create storms in a family, the way a wife and husband can fall in love all over again, the way nothing really changes. Anne Tyler's funny, unpredictable and endearing characterizations make Breathing Lessonstruly entertaining.","You'll Have Had Your Hole. A play from the author of Trainspotting Within the sound-proofed walls of a disused recording studio, a score is being settled. Two inner city low-lifes take the law into their own hands to satisfy their craving for fun, fear and a freakish sense of justice. ""You'll Have Had Your Hole"" premiered at the West Yorkshire Playhouse and toured internationally - although it was banned in Belgium.","The Outsider. ""Wright presents a compelling story of a black man's attempt to escape his past and start anew in Harlem. Cross Damon is a man at odds with society and with himself, a man who hungers for peace but who brings terror and destruction wherever he goes. As Maryemma Graham writes in her Introduction to this edition, with its restored text established by the Library of America, ""The Outsider is Richard Wright's second installment in a story of epic proportions, a complex master narrative designed to show American racism in raw and ugly terms ... The stories of Bigger Thomas ... and Cross Damon bear an uncanny resemblance to many contemporary cases of street crime and violence. There is also a prophetic note in Wright's construction of the criminal mind as intelligent, introspective, and transformative."" In addition to the Introduction by Maryemma Graham, this edition includes a notes section by Arnold Rampersad.""","The Beatles: The Biography. Even before the Beatles hit the big time, a myth was created. This version of the Beatles legend smoothed the rough edges and filled in the fault lines, and for more than forty years this manicured version of the Beatles story has sustained as truth - until now. The product of almost a decade of research, hundreds of unprecedented interviews, and the discovery of scores of never-before-revealed documents, Bob Spitz's The Beatles is the biography fans have been waiting for -- a vast, complete account as brilliant and joyous and revelatory as a Beatles record itself. Spitz begins in Liverpool, a hard city knocked on its heels. In the housing projects and school playgrounds, four boys would discover themselves -- and via late-night radio broadcasts, a new form of music called rock 'n roll. Never before has a biography of musicians been so immersive and textured. Spitz takes us down Penny Lane and to Strawberry Field (John later added the s), to Hamburg, Germany, where -- amid the squalor","War with the Newts. The visionary Czech writer Karel Capek (1890-1938), one of the century's great authors, first gained fame during the 1920s and 1930s when his short stories, novels, satires, journalism, children's books, and plays made him the most important writer in his native country. 'War With the Newts', one of the great dystopian satires of the century, is about the discovery by a Dutch sea-captain of a race of giant, intelligent, talking, and walking newts. When humans begin to exploit the newts as slaves, the creatures organize to fight the oppression, taking up arms and challenging the humans for control of newt destiny and freedom.",Chemistry and Other Stories.,"The Dead Beat: Lost Souls Lucky Stiffs and the Perverse Pleasures of Obituaries. Marilyn Johnson was enthralled by the remarkable lives that were marching out of this world--so she sought out the best obits in the English language and the people who spent their lives writing about the dead. She surveyed the darkest corners of Internet chat rooms, and made a pilgrimage to London to savor the most caustic and literate obits of all. Now she leads us on a compelling journey into the cult and culture behind the obituary page and the unusual lives we don't quite appreciate until they're gone.","Heart of Darkness. Marlow tells his story to friends aboard a boat anchored on the River Thames, London, England. This setting provides the frame for Marlow's story of his obsession with the ivory trader Kurtz, which enables Conrad to create a parallel between London and Africa as places of darkness.","Read My Lips: Sexual Subversion and the End of Gender. Riki Anne Wilchins has written the book that may take the discussion of gender over the top. Read My Lips: Sexual Subversion and the tend of Gender, a frontal assault on both the status quo in academic studies and the full spectrum of single-issue identity politics, will change the way you think about bodies, sex, and gender. Yours and everyone else's.Combining the theoretical breakthroughs of Judith Butler's Gender Trouble and the performance revelations of Kate Bornstein's Gender Outlaw, Wilchins -- cofounder of the Transsexual Menace -- moves the dialogue to a new level. In a voice that is by turns outraged, outrageous, sad, and hilarious, the author weaves theory and personal experience into a compelling story of self-discovery. She redefines what it means to be ""gendered"", both by the way she lives and the accessible theoretical narrative she constructs. Read My Lips, with its unique mix of theory and application, anecdote and affront, will appeal to feminists, queer academics, ac","Experience. In this remarkable work of autobiography, the son of the great comic novelist Kingsley Amis explores his relationship with his father and writes about the various crises of Kingsley's life, including the final one of his death. Amis also reflects on the life and legacy of his cousin, Lucy Partington, who disappeared without trace in 1973 and was exhumed twenty years later from the basement of Frederick West, one of Britain's most prolific serial murderers.",Anthony Thwaite: In Conversation With Peter Dale and Ian Hamilton.,"Firebirds: An Anthology of Original Fantasy and Science Fiction. Firebirds is more than simply an anthology -- it is a celebration of wonderful writing. It gathers together sixteen original stories by some of today's finest writers of fantasy and science fiction. Together, they have won virtually every major prize -- from the National Book Award to the World Fantasy Award to the Newbery Medal -- and have made best-seller lists worldwide. These authors, including Lloyd Alexander (The Chronicles of Prydain), Diana Wynne Jones (The Merlin Conspiracy), Garth Nix (The Abhorsen Trilogy), Patricia A. McKillip (Ombria in Shadow), Meredith Ann Pierce (The Darkangel Trilogy), and Nancy Farmer (The House of the Scorpion), each with his or her own inimitable style, tell stories that will entertain, provoke, startle, amuse, and resonate long after the last page has been turned.The writers featured in Firebirds all share a connection to Firebird Books, an imprint that is dedicated to publishing the best fantasy and science fiction for teenage and adult readers.",Runaway Bride.,"The Eye of the I: From Which Nothing is Hidden. This publication describes and explains advanced states of consciousness and the way to spiritual Enlightenment. It includes dialogues with spiritual students worldwide. For the first time, a cogent and verifiable means of confirmation of spiritual reality is provided via an objective, reduplicative method of measurement, based on physiologically derived clinical evidence.","Dead Man's Folly (Hercule Poirot #33). Ariadne Oliver, Queen of Crime Fiction, has been asked to devise a ""Murder Hunt"" for a fete at Nasse House, the home of Sir George Stubbs. But she begins to suspect that someone is manipulating the scenario of her game and fears that something very sinister is being planned. She sends for her old friend Hercule Poirot. At first he is not inclined to take her very seriously but soon a series of events propels him to change his mind. Then suddenly all Ariadne's worst fears are realised when the girl playing the part of the murder victim is found strangled in the boat-house. For Hercule Poirot, the Murder Hunt has become a grim reality. A BBC Radio 4 full-cast dramatisation starring John Moffatt as the great Belgian detective, with Julia McKenzie as Ariadne Oliver.","Well of Darkness (Sovereign Stone #1). Second in line for succession to the throne, Prince Dagnarus will have his crown...andhis queen -- though his heart's prize is a married elfin beauty. Let his hated half-brother Prince Helmos and the Dominion Lords dare to oppose him. For Dagnarus's most loyal servant has ventured into the terrible darkness, where lies the most potent talisman in the realm. And once it is in the dark prince's hand, no power will deter his Destiny.",Love You Until--.,"Deep River. In this moving novel, a group of Japanese tourists, each of whom is wrestling with his or her own demons, travels to the River Ganges on a pilgrimage of grace.","The Hunchback of Notre-Dame. In the dark world of medieval Paris, the deformed bell-ringer of Notre Dame Cathedral heroically fights to save the life of a beautiful Gypsy girl about to be unjustly executed. Told with simple vocabulary and set in large type, this adaptation of the classic tale is perfectly suited for young readers. From the Trade Paperback edition.",Tree (Eyewitness Books).,"Immigrant Acts: On Asian American Cultural Politics. In Immigrant Acts, Lisa Lowe argues that understanding Asian immigration to the United States is fundamental to understanding the racialized economic and political foundations of the nation. Lowe discusses the contradictions whereby Asians have been included in the workplaces and markets of the U.S. nation-state, yet, through exclusion laws and bars from citizenship, have been distanced from the terrain of national culture. Lowe argues that a national memory haunts the conception of Asian American, persisting beyond the repeal of individual laws and sustained by U.S. wars in Asia, in which the Asian is seen as the perpetual immigrant, as the ""foreigner-within."" In Immigrant Acts, she argues that rather than attesting to the absorption of cultural difference into the universality of the national political sphere, the Asian immigrant--at odds with the cultural, racial, and linguistic forms of the nation--displaces the temporality of assimilation. Distance from the American national cultu","The Shell Seekers. The Shell Seekersis a novel of connection: of one family, and of the passions and heartbreak that have held them together for three generations. The Shell Seekersis filled with real people--mothers and daughters, husband and lovers--inspired with real values. The Shell Seekerscenters on Penelope Keeling--a woman you'll always remember in world you'll never forget. The Shell Seekersis a magical novel, the kind of reading experience that comes along only once in a long while. At the end of a long and useful life, Penelope Keeling's prized possession is The Shell Seekers, painted by her father, and symbolizing her unconventional life, from bohemian childhood to wartime romance. When her grown children learn their grandfather's work is now worth a fortune, each has an idea as to what Penelope should do. But as she recalls the passions, tragedies, and secrets of her life, she knows there is only one answer...and it lies in her heart.","Guidebook to Zen and the Art of Motorcycle Maintenance. When Robert Pirsig's Zen and the Art of Motorcycle Maintenancewas first published in 1974, it caused a literary sensation. An entire generation was profoundly affected by the story of the narrator, his son, Chris, and their month-long motorcycle odyssey from Minnesota to California. A combination of philosophical speculation and psychological tension, the book is a complex story of relationships, values, madness, and, eventually, enlightenment. Ron Di Santo and Tom Steele have spent years investigating the background and underlying symbolism of Pirsig's work. Together, and with the approval of Robert Pirsig, they have written a fascinating reference/companion to the original. Guidebook to Zen and the Art of Motorcycle Maintenanceserves as a metaphorical backpack of supplies for the reader's journey through the original work. With the background material, insights, and perspectives the authors provide, Guidebook to Zen and the Art of Motorcycle Maintenanceis destined to become required","The Wicked Day (Arthurian Saga #4). Now, the spellbinding, final chapter of King Arthur's reign, where Mordred, sired by incest and reared in secrecy, ingratiates himself at court, and sets in motion the Fates and the end of Arthur....","The Great Influenza: The Story of the Deadliest Pandemic in History. At the height of WWI, history's most lethal influenza virus erupted in an army camp in Kansas, moved east with American troops, then exploded, killing as many as 100 million people worldwide. It killed more people in twenty-four months than AIDS killed in twenty-four years, more in a year than the Black Death killed in a century. But this was not the Middle Ages, and 1918 marked the first collision of science and epidemic disease. Magisterial in its breadth of perspective and depth of research and now revised to reflect the growing danger of the avian flu, The Great Influenzais ultimately a tale of triumph amid tragedy, which provides us with a precise and sobering model as we confront the epidemics looming on our own horizon. John M. Barry has written a new afterword for this edition that brings us up to speed on the terrible threat of the avian flu and suggest ways in which we might head off another flu pandemic.",A Carl Hiaasen Collection: Stormy Weather Tourist Season and Strip Tease.,"C.G. Jung and Hermann Hesse: A Book of Two Friendships. Miguel Serrano, a Chilean diplomat and writer who has traveled widely in India studying Yoga, had a close friendship with Jung and Hesse at the end of their lives. This book is the outcome of his meetings and correspondence with them. Many letters are reproduced including documents of great importance written to the author by Jung shortly before his death, explaining his ideas about the nature of the world and of his work.",Joy in the Morning.,Philip Vera Cruz: A Personal History of Filipino Immigrants and the Farmworkers Movement.,Gale Gand's Short + Sweet : Quick Desserts with Eight Ingredients or Less.,Gary Grizzle.,CliffsNotes on Steinbeck's The Grapes of Wrath.,"Family (Firstborn #4). A Sensational Trial When Katy Hart travels to Los Angeles to testify against the knife-wielding fan who tried to kill her, she is hunted by paparazzi who quickly realize she is the mystery woman photographed with movie star Dayne Matthews. Tension and pressure build to a dangerous level as Katy and Dayne seek private moments amidst the frenzy. In the end, Dayne's celebrity life makes Katy certain that a future with him is all but impossible. A Life-Changing Decision As the trial comes to a close, Dayne searches for answers. Not until he talks to his childhood friend does he realize his desperate need for wisdom and direction. Ultimately, his journey leads him to an isolated beach where God makes Dayne's future as clear as the waters of Cancun. But can he live with the decision God places before him? A Stunning Discovery Landon and Ashley Blake are celebrating the happiest days of their lives, enjoying Cole and their newborn son. But Ashley cannot find peace until she finds her older br","Landscape and Memory. One of Time Magazine's Best Books of the Year In Landscape and MemorySchama ranges over continents and centuries to reveal the psychic claims that human beings have made on nature. He tells of the Nazi cult of the primeval German forest; the play of Christian and pagan myth in Bernini's Fountain of the Four Rivers; and the duel between a monumental sculptor and a feminist gadfly on the slopes of Mount Rushmore. The result is a triumphant work of history, naturalism, mythology, and art. ""A work of great ambition and enormous intellectual scope...consistently provocative and revealing.""--New York Times ""Extraordinary...a summary cannot convey the riches of this book. It will absorb, instruct, and fascinate.""--New York Review of Books","The Complete Fairy Tales of The Brothers Grimm. The Complete Fairy Tales of the Brothers Grimm Perhaps no other stories possess as much power to enchant, delight, and surprise as those penned by the immortal Brothers Grimm. Now, in the new, expanded third edition, renowned scholar and folklorist Jack Zipes has translated all 250 tales collected and published by Jacob and Wilhelm Grimm, plus twenty-nine rare tales omitted from the original German edition, as well as narratives uncovered in the brothers' letters and papers. Truly the most comprehensive translation to date, this critically acclaimed edition recaptures the fairy tales as the Brothers Grimm intended them to be: rich, stark, spiced with humor and violence, resonant with folklore and song. One of the world's experts on children's literature, Jack Zipes is a professor of German at the University of Minnesota and is the author of numerous books on folklore and fairy tales.","Alice's Adventures in Wonderland & Through the Looking-Glass. By falling down a rabbit hole and stepping through a mirror, Alice experiences unusual adventures with a variety of nonsensical characters.","Dark Water. A haunting collection of short stories from Koji Suzuki, author of the smash thriller, Ring, which spawned the hit film and sequels. The first story in this collection has been adapted to film (Dark Water, Walter Salles), and another, ""Adrift"" is currently in production with Dimension Films.",Dale Carnegie's Lifetime Plan for Success: How to Win Friends and Influence People & How to Stop Worrying and Start Living.,Les Deux Tours (Le Seigneur des Anneaux #2).,"Wuthering Heights. There are few more convincing, less sentimental accounts of love than Wuthering Heights. This is the story of a tormented foundling who falls in love with the daughter of his benefactor, and of the violence and misery that result from their thwarted longing for each other. This edition has an introduction by Alice Hoffman.","Confessions. The Confessionsis Jean-Jacques Rousseau's autobiography. Covering his first 53 years, up to 1765, it was completed in 1769, but unpublished until 1782, four years after his death, even though he read excerpts of the manuscript publicly at various times. The Confessionswere two distinct works of six books apiece. Books I-VI were written between 1765 & 1767, & published in 1782; books VII-XII were written in 1769-1770, & published in 1789. Rousseau alludes to a third part, but it wasn't completed. Though the book is flawed, dates are frequently off, some events out of order, he provides an account of the experiences shaping his influential philosophy. For instance, the parts of his own education he liked best are clearly present in his account of ideal education, Emile, or On Education. Rousseau's work is notable as one of the first major autobiographies. Prior to his Confessions, the two great autobiographies were Augustine's & St Teresa's. Both of these works focused on religious exper","Robinson Crusoe. 'A raging wave, mountain-like, came rowling a-stern of us...we were all swallowed up in a moment. The sole survivor of a shipwreck, Robinson Crusoe is washed up on a desert island. In his journal he chronicles his daily battle to stay alive, as he conquers isolation, fashions shelter and clothes, first encounters another human being and fights off cannibals and mutineers. With Robinson Crusoe, Defoe wrote what is regarded as the first English novel, and created one of the most popular and enduring myths in literature. Written in an age of exploration and enterprise, it has been variously interpreted as an embodiment of British imperialist values, as a portrayal of 'natural man' or as a moral fable. But above all it is a brilliant narrative, depicting Crusoe's transformation from terrified survivor to self-sufficient master of his island. This edition contains a full chronology of Defoe's life and times, explanatory notes, glossary and a critical introduction discussing Robinson Crusoe","Fanny: Being the True History of the Adventures of Fanny Hackabout-Jones. Discovered on the doorstep of a country estate in Wiltshire, England, the infant Fanny is raised to womanhood by her adoptive parents, Lord and Lady Bellars. Fanny wants to become the epic poet of the age, but her plans are dashed when she is ravished by her libertine stepfather. Fleeing to London, Fanny falls in with idealistic witches and highwaymen who teach her of worlds she never knew existed. After toiling in a London brothel that caters to literati, Fanny embarks on a series of adventures that teach her what she must know to live and prosper as a woman. Soon to be a major Broadway musical. Reading group guide included.","The Genome War: How Craig Venter Tried to Capture the Code of Life and Save the World. The long-awaited story of the science, the business, the politics, the intrigue behind the scenes of the most ferocious competition in the history of modern science--the race to map the human genome. On May 10, 1998, biologist Craig Venter, director of the Institute for Genomic Research, announced that he was forming a private company that within three years would unravel the complete genetic code of human life--seven years before the projected finish of the U.S. government's Human Genome Project. Venter hoped that by decoding the genome ahead of schedule, he would speed up the pace of biomedical research and save the lives of thousands of people. He also hoped to become very famous and very rich. Calling his company Celera (from the Latin for ""speed""), he assembled a small group of scientists in an empty building in Rockville, Maryland, and set to work. At the same time, the leaders of the government program, under the direction of Francis Collins, head of the National Human Genome Re","The Attraction. College students make a wrong turn into nightmare countryin this all-out drive-in horror movie of a book from New York Times bestselling author Douglas Clegg. For fans of Richard Matheson, Guillermo del Toro and Stephen King. The Dark Coming of Age series books do not need to be read in any specific order -- they are stand-alones built around a theme of ""dark coming of age.""","Hamlet. One of the most frequently read and performed of all stage works, Shakespeare's Hamlet isunsurpassed in its complexity and richness. Now the first fully annotated version of Hamlet makesthe play completely accessible to readers in the twenty-first century. It has been carefully assembled with students, teachers, and the general reader in mind. Eminent linguist and translator Burton Raffel offers generous help with vocabulary and usage of Elizabethan English, pronunciation, prosody, and alternative readings of phrases and lines. His on-page annotations provide readers with all the tools they need to comprehend the play and begin to explore its many possible interpretations. This version of Hamlet isunparalleled for its thoroughness and adherence to sound linguistic principles. In his Introduction, Raffel offers important background on the origins and previous versions of the Hamlet story, along with an analysis of the characters Hamlet and Ophelia. And in a concluding essay, Harold Bloo","Click Clack Moo: Cows That Type. Farmer Brown has a problem, his cows like to type. All day long he hears click, clack, moo. But the problems begin when the cows start leaving him notes. They want electric blankets. And when they don't get what they want, they go on strike.","Zorro. A swashbuckling adventure story that reveals for the first time how Diego de la Vega became the masked man we all know so well Born in southern California late in the eighteenth century, Diego de la Vega is a child of two worlds. His father is an aristocratic Spanish military man turned landowner; his mother, a Shoshone warrior. At the age of sixteen, Diego is sent to Spain, a country chafing under the corruption of Napoleonic rule. He soon joins La Justicia, a secret underground resistance movement devoted to helping the powerless and the poor. Between the New World and the Old, the persona of Zorro is formed, a great hero is born, and the legend begins. After many adventures -- duels at dawn, fierce battles with pirates at sea, and impossible rescues -- Diego de la Vega, a.k.a. Zorro, returns to America to reclaim the hacienda on which he was raised and to seek justice for all who cannot fight for it themselves.","Lies My Teacher Told Me about Christopher Columbus: What Your History Books Got Wrong. In Lies My Teacher Told Me About Christopher Columbus, the bestselling author of Lies My Teacher Told Meoffers a graphic corrective to the Columbus story told in so many American classrooms. First published over fifteen years ago and long out-of-print, the poster and accompanying paperback book sum up the mis-tellings--and reveal the real story--in a graphically appealing and accessible format. In vintage Loewen fashion, the poster juxtaposes short quotes from a range of high school textbooks currently in use, with excerpts from primary sources that clearly show how textbooks have ""lied"" by knowingly substituting crowd-pleasing myths for grim and gruesome historical evidence. In fact, these textbooks intentionally omitted every important detail that we do know about Columbus's fateful voyage to the Americas. Among countless other facts, Loewen demonstrates that Columbus and his men were far from the first to set foot in the ""New World,"" and that the peoples he encountered there did not","Everyone Worth Knowing. What happens when a girl on the fringe enters the realm of New York's chic, party-hopping elite? Soon after Bette Robinson quits her horrendous Manhattan banking job like the impulsive girl she's never been, the novelty of walking her four-pound dog around the unglamorous Murray Hill neighborhood wears as thin as the ""What are you going to do with your life?"" phone calls from her parents. Then Bette meets Kelly, head of Manhattan's hottest PR firm, and suddenly she has a brand-new job where the primary requirement is to see and be seen inside the VIP rooms of the city's most exclusive nightclubs. But when Bette begins appearing in a vicious new gossip column, she realizes that the line between her personal life and her professional life is...invisible.","The Pythons Autobiography by The Pythons. Over thirty years ago, a group of five Englishmen and one wayward American re-wrote the rules of comedy. Monty Python's Flying Circus, an unheralded, previously unseen and practically unprogrammed half hour of sketches, hilarities, inanities and animations first appeared on the BBC late one night in 1969. Its impact on the world has been felt ever since. From its humble beginnings as late night entertainment on a British TV channel that went off the air before midnight, Monty Python's Flying Circusblossomed into arguably the most influential movement in modern comedy. They found the Holy Grail, detailed the life of the Savior-also-ran Brian, and explained the Meaning of life. Now, those purveyors of dead parrots and silly walks are going to tell us something more: their story. In their own, intimate, never before heard words. The Pythonsis the definitive word on all things Pythonesque. Thirty years of insight, hindsight, and bad sight - now told for the first time. Stuff they're never",Turn of the Cards.,"Found (Firstborn #3). A Desperate Search Driven by his wife's dying wish to find their firstborn son, John Baxter sets about the search. His prayer? That Elizabeth's wish would be fulfilled before the upcoming Baxter family reunion. One strange turn follows another, but when the answers finally come, they shake John to his core. Will he agree to walk away and keep the secret of a lifetime, or will he let the truth come to light, no matter the cost? A Tragic Loss Dayne Matthews is questioning his adoptive parents' faith when he receives crushing news. He was ready to take on the responsibility of having a family, but now the future is drastically altered and Dayne is desperate for answers. Wisdom and comfort come from visits with a long-lost friend and then from Katy Hart, the girl Dayne can't seem to forget. But will he find the strength he needs to face a future laced with loss, and will that strength lead him to the greatest love of all? A Terrible Storm As the Baxters come together, the reunion is oversh","Berlin Diary: The Journal of a Foreign Correspondent 1934-1941. By the acclaimed journalist and bestselling author of The Rise and Fall of the Third Reich,this day-by-day, eyewitness account of the momentous events leading up to World War II in Europe is now available in a new paperback edition. CBS radio broadcaster William L. Shirer was virtually unknown in 1940 when he decided there might be a book in the diary he had kept in Europe during the 1930s--specifically those sections dealing with the collapse of the European democracies and the rise of Nazi Germany. Berlin Diaryfirst appeared in 1941, and the timing was perfect. The energy, the passion, the electricity in it were palpable. The book was an instant success, and it became the frame of reference against which thoughtful Americans judged the rush of events in Europe. It exactly matched journalist to event: the right reporter at the right place at the right time. It stood, and still stands, as so few books have ever done--a pure act of journalistic witness.","The Love of the Last Tycoon. The Last Tycoon,edited by the renowned literary critic Edmund Wilson, was first published a year after Fitzgerald's death and includes the author's notes and outline for his unfinished literary masterpiece. It is the story of the young Hollywood mogul Monroe Stahr, a character inspired by the life of boy-genius Irving Thalberg, and is an expose of the studio system in its heyday.","Sense and Sensibility. Jane Austen's first published novel, Sense and Sensibilityis a wonderfully entertaining tale of flirtation and folly that revolves around two starkly different sisters, Elinor and Marianne Dashwood. While Elinor is thoughtful, considerate, and calm, her younger sister is emotional and wildly romantic. Both are looking for a husband, but neither Elinor's reason nor Marianne's passion can lead them to perfect happiness--as Marianne falls for an unscrupulous rascal and Elinor becomes attached to a man who's already engaged. Startling secrets, unexpected twists, and heartless betrayals interrupt the marriage games that follow. Filled with satiric wit and subtle characterizations, Sense and Sensibilityteaches that true love requires a balance of reason and emotion. Sense and Sensibility, by Jane Austen, is part of the Barnes & Noble Classicsseries, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and page","Silent Running. A riveting, tension-filled chronicle of life underwater by a much decorated hero who became the second youngest rear admiral in the history of the Navy. Filled with harrowing details of sinking Japanese vessels, surviving their assaults and capturing downed pilots. Culminates in Calvert's unauthorized visit, with three other officers, to Tokyo just prior to the official surrender--making them the first Americans to reach Japan's capital.","Escape from Freedom. If humanity cannot live with the dangers and responsibilities inherent in freedom, it will probably turn to authoritarianism. This is the central idea of Escape from Freedom, a landmark work by one of the most distinguished thinkers of our time, and a book that is as timely now as when first published in 1941. Few books have thrown such light upon the forces that shape modern society or penetrated so deeply into the causes of authoritarian systems. If the rise of democracy set some people free, at the same time it gave birth to a society in which the individual feels alienated and dehumanized. Using the insights of psychoanalysis as probing agents, Fromm's work analyzes the illness of contemporary civilization as witnessed by its willingness to submit to totalitarian rule.","Seven Gothic Tales. Romantics, adventurers, sensualists, melancholics and dreamers inhabit the bizarre and exotic world conjured up in these seven intricately interwoven tales, whose settings range from Tuscany and Elsinore, to a dhow on its way from Lamu to Zanzibar. Proclaimed a masterpiece on its publication in 1934, this collection is shot through with themes of love and desire - from the maiden lady who now believes herself to have been the grand courtesan of her time, to the Count whose wife is so jealous that she cannot bear him to admire her jewels, and Lincoln Forsner, an Englishman whose search for a woman he met in a brothel leads him into many strange adventures.","The Cat in the Hat. He may be an old standby, but he never lets us down. When in doubt, turn to the story of the cat that transformed a dull, rainy afternoon into a magical and just-messy-enough adventure. There's another, hidden adventure, too: this book really will help children learn to read. With his simple and often single-vowel vocabulary, the good Doctor knew what he was doing: hear it, learn it, read it--laughing all the way. The Cat in the Hatis a must for any child's library.",Candide.,"Laura's Album: A Remembrance Scrapbook of Laura Ingalls Wilder. Though best known as the author of the Little House books, Laura Ingalls Wilder led a full, rich life that spanned almost a century of American history. All through her life Laura saved mementos of her past, including early writings, letters, drawings, and photographs, which have been lovingly preserved in private and public collections across the country. Now, for the first time ever, these photographs, writings, and memorabilia have been gathered together in one incredible volume by noted Little House historian William Anderson. Each gorgeous page of LAURA'S ALBUMis a doorway into the private world of Laura Ingalls Wilder, and offers a unique glimpse of what her life was like. Here is the fascinating true story of this remarkable pioneer woman's life as well as an unforgettable tale of our own American past.","A Smart Girl's Guide to Money: How to Make It Save It And Spend It. This addition to the popular Smart Girls Guide format shows girls the ins and outs of money smarts. Quizzes, tips, and quotes from girls make learning about money, saving, and smart shopping fun. Includes a special section with 101 money-making ideas. A special link at americangirl.com offers girls the opportunity to print business card, flyers, and other materials to get her moneymaker up and running with style.","A Fearsome Doubt (Inspector Ian Rutledge #6). Bestselling author Charles Todd has earned a special place among mystery's elite writers with his acclaimed series featuring Scotland Yard Inspector Ian Rutledge, a former soldier seeking to lay to rest the demons of his past in the aftermath of World War I. But that past bleeds into the present in a complex murder case that calls into question his own honor...and the crimes committed in the name of God, country, and righteous vengeance. A Fearsome Doubt In 1912 Ian Rutledge watched as a man was condemned to hang for the murders of elderly women. Rutledge helped gather the evidence that sent Ben Shaw to the gallows. And when justice was done, Rutledge closed the door on the case. But Shaw was not easily forgotten. Now, seven years later, that grim trial returns in the form of Ben Shaw's widow Nell, bringing Rutledge evidence she is convinced will prove her husband's innocence. It's a belief fraught with peril, threatening both Rutledge's professional stature and his faith in his judgme",Cold Fire / Hideaway / The Key to Midnight. A collection of three previously published Koontz novels. This will be the first time The Key To Midnight will be available in hardcover.,Angels Don't Know Karate (The Adventures Of The Bailey School Kids #23). Bailey City's new karate teacher seems to be guarding kids and granting wishes. Is an angel visiting the town?,"The Plague. The townspeople of Oran are in the grip of a deadly plague, which condemns its victims to a swift and horrifying death. Fear, isolation and claustrophobia follow as they are forced into quarantine. Each person responds in their own way to the lethal disease: some resign themselves to fate, some seek blame and revenge, and a few, like the unheroic hero Dr Rieux, join forces to resist the terror. In part an allegory of France's suffering under the Nazi occupation, The Plagueis a compelling depiction of bravery and determination pitted against the precariousness of human existence.","Demon in My View. Though nobody at her high school knows it, Jessica is a published author. Her vampire novel, Tiger, Tiger, has just come out under the pen name Ash Night. Now two new students have just arrived in Ramsa, and both want Jessica's attention. She has no patience with overly friendly Caryn, but she's instantly drawn to Alex, a self-assured, mysterious boy who seems surprisingly familiar. If Jessica didn't know better, she'd think Aubrey, the alluring villain from her novel had just sprung to life. That's impossible, of course; Aubrey is a figment of her imagination. Or is he?",Writings to Young Women on Laura Ingalls Wilder: As Told By Her Family Friends and Neighbors (Writings to Young Women on Laura Ingalls Wilder #3).,"7 Steps to Midnight. New York TimesBestselling Author ofI Am Legend When a mysterious imposter steals his identity and life, mathematician Chris Barton is suddenly thrust into a whirlwind of danger and intrigue. Overnight, without warning or explanation, people he has never met are trying to kill him-not even his own sister recognizes him. On the run, from California to London to Paris and beyond, vicious assassins pursue Chris while cryptic messages lead him on a wild, danger-filled chase around the world. Full of twists and surprises, this is the story of an ordinary man driven to the breaking point in a high tension game of deceit and betrayal where there are no rules, nothing is as it seems, and it is always . . . 7 Steps to Midnight.",Shakespeare's Romeo and Juliet.,The Berlin Phenomenology.,"Dreamcatcher. Au coeur de la foret de Derry, quatre amis d'enfance, unis pour le meilleur et pour le pire, confrontes a un phenomene terrifiant qu'ils ne risquent pas d'oublier... Stephen King, au sommet de son talent, cerne au plus profond de l'inconscient collectif les peurs de notre temps. Dans la lignee de Caet d'Insomnie, un tres grand King.",After the Funeral.,"The Peloponnesian War: A New Translation Backgrounds Interpretations. The Peloponnesian War (431-404 B.C.E.) was the greatest ""disturbance"" in Greek history to that time. The bitter rivalry between the two chief city-states, Athens and Sparta, and their respective allies ended with the ruin of Athens' naval hegemony and what the Greek historian Thucydides (ca. 460-400 B.C.E.) called a ""convulsion"" affecting all humankind. With the detachment of a clinician and the dramatic skill of a poet, Thucydides recreates the often savage events of the war and brings to life its chief protagonists: Pericles, Nicias, Cleon, Alcibiades, and others. The first of the ""scientific"" historians, Thucydides makes use of documentary material and relies on eyewitness accounts; even where direct documentary evidence is lacking, his keen understanding of human nature helps him to uncover the truth of what actually happened. The loftiness of its ideals, its painstaking research, and its beauty of expression have made the History of the Peloponnesian War a work that is in the auth","White Sky Black Ice (Nathan Active Mystery #1). The first Nathan Active mystery Born to a poor Inupiat girl in Chukchi, Alaska, north of the Arctic Circle, State Trooper Nathan Active was adopted and raised by a white family in Anchorage. Now, an unwelcome job reassignment has returned him to the stark, beautiful landscape of poverty-stricken Chukchi. Two suspicious suicides in the span of a week and rumors of trouble in the village and at the local copper mine lead Active to believe there is a killer at large. As a nalauqmiiyaaq, or someone regarded by the community as ""halfwhite,"" he must fight for every clue before the killer strikes again.","The Music of the Republic: Essays on Socrates' Conversations and Plato's Writings. ""This collection of Eva Brann's is one of the most valuable aids a lover of Plato could have.""--Walter Nicgorski, University of Notre Dame In fourteen essays, Eva Brann talks with readers about the conversations Socrates engages in with his fellow Athenians. In doing so, she shows how Plato's dialogues and the timeless matters they address remain important to us today. The Music of the Republic""will establish [Eva Brann] as one of the great readers and interpreters of the Platonic dialogues in modern times.""--Bruce Foltz, Eckerd College ""It is a wonder and a delight to be led by Eva Brann through the Socratic conversations...Those who do not know the Republicwill be initiated into its treasures. Those who believe that it is a great book will understand better what they already know. And all who teach the dialogues will find their souls expanded in the presence of this most generous teacher."" --Ann Hartle, Emory University ""In these wonderfully insightful essays, Eva Brann helps us hear","Lighthousekeeping. Lighthousekeeping tells the tale of Silver (""My mother called me Silver. I was born part precious metal, part pirate.""), an orphaned girl who is taken in by blind Mr. Pew, the mysterious and miraculously old keeper of a lighthouse on the Scottish coast. Pew tells Silver stories of Babel Dark, a nineteenth-century clergyman. Dark lived two lives: a public one mired in darkness and deceit and a private one bathed in the light of passionate love. For Silver, Dark's life becomes a map through her own darkness, into her own story, and, finally, into love. One of the most original and extraordinary writers of her generation, Jeanette Winterson has created a modern fable about the transformative power of storytelling.","The MacGregors: Serena & Caine (The MacGregors #1 -2). From the #1 ""New York Times"" bestselling author come the first two stories in her classic MacGregor family saga, featuring Serena MacGregor in ""Playing the Odds,"" and Caine MacGregor in ""Tempting Fate."" Reissue. Playing the Odds No more well-intentioned family meddling! Serena MacGregor was on her own and looking for a challenge. She found it in the arms of roguish gambler Justin Blade. His charm and ruthless good looks invaded her every waking moment, but she was wary of a man who seemed to have secrets to hide. No way was this a setup -- what were the odds? Tempting Fate Attorney Caine MacGregor had a reputation for being a demon in the courtroom -- and in the bedroom. He yearned to break down Diana Blade's icy wall of control and release the passionate woman within. When he offered Diana a partnership -- in both business and pleasure -- could he entice her to risk everything for the love of a MacGregor?",Hannibal.,"The Years. The most popular of Virginia Woolf's novels during her lifetime, The Yearsis a savage indictment of British society at the turn of the century, edited with an introduction and notes by Jeri Johnson in Penguin Modern Classics. The Years is the story of three generations of the Pargiter family - their intimacies and estrangements, anxieties and triumphs - mapped out against the bustling rhythms of London's streets during the first decades of the twentieth century. Growing up in a typically Victorian household, the Pargiter children must learn to find their footing in an alternative world, where the rules of etiquette have shifted from the drawing-room to the air-raid shelter. A work of fluid and dazzling lucidity, The Yearseschews a simple line of development in favour of a varied and constantly changing style, emphasises the radical discontinuity of personal experiences and historical events. Virginia Woolf's penultimate novel celebrates the resilience of the individual self and, in her","Anna Karenina. Anna Karenina has beauty, social position, wealth, a husband, and an adored son, but her existence seems empty. When she meets the dashing officer Count Vronsky she rejects her marriage and turns to him to fulfill her passionate nature--with devastating results. One of the world's greatest novels, Anna Karenina is both an immortal drama of personal conflict and social scandal and a vivid, richly textured panorama of nineteenth-century Russia. While previous versions have softened the robust, and sometimes shocking, quality of Tolstoy's writing, Richard Pevear and Larissa Volokhonsky have produced a magnificent translation that is true to his powerful voice. This award-winning team's authoritative edition also includes an illuminating introduction, a list of principal characters, suggestions for further reading, and full explanatory notes. Beautiful, vigorous, and eminently readable, this Anna Kareninawill be the definitive rendition for generations to come.","Time and Again (Time #1). One of the most beloved tales of our time! Science fiction, mystery, a passionate love story, and a detailed history of Old New York blend together in Jack Finney's spellbinding story of a young man enlisted in a secret Government experiment. Transported from the mid-twentieth century to New York City in the year 1882, Si Morley walks the fashionable ""Ladies' Mile"" of Broadway, is enchanted by the jingling sleigh bells in Central Park, and solves a 20th-century mystery by discovering its 19th-century roots. Falling in love with a beautiful young woman, he ultimately finds himself forced to choose between his lives in the present and the past. A story that will remain in the listener's memory, ""Time and Again"" is a remarkable blending of the troubled present and a nostalgic past, made vivid and extraordinarily moving by the images of a time that was...and perhaps still is.",Tesla Papers.,Under the Sea Wind (Nature Classic).,"The Abyss. Librarian's note: There are Alternate Cover Editions for this edition of this book . From the author of ""Speaker's for the Dead"", and ""Seventh Son"", this science fiction thriller is set in the Caribbean where a US submarine is mysteriously attacked. Foul play by the Soviets is suspected, and the world draws close to nuclear war. But the answer has nothing to do with human deeds.","The Neil Gaiman Audio Collection. Four of beloved author Neil Gaiman's delightfully scary, strange, and hilarious children's tales read by the author, now available unabridged. This collection includes: The Day I Swapped My Dad for Two Goldfish: An unforgettable story that will take readers on a journey into the murky mind of a young boy and the perils of striking a bargain. The Wolves in the Walls: Lucy is sure there are wolves living in the walls of their house -- and, as everybody says, if the wolves come out of the walls, it's all over. Her family doesn't believe her. Then one day, the wolves come out. Cinnamon: This charming fable of an exotic princess who refuses to speak currently exists only on Neil's official website and has never been published in print or any other format. Crazy Hair: Bonnie tries to comb the narrator's crazy hair -- where gorillas leap and tigers stalk -- and is in for a surprise in this delightful rhyming tale.","The Big Money (U.S.A. #3). THE BIG MONEY completes John Dos Passos's three-volume ""fable of America's materialistic success and moral decline"" (American Heritage) and marks the end of ""one of the most ambitious projects that an American novelist has ever undertaken"" (Time). Here we come back to America after the war and find a nation on the upswing. Industrialism booms. The stock market surges. Lindbergh takes his solo flight. Henry Ford makes automobiles. From New York to Hollywood, love affairs to business deals, it is a country taking the turns too fast, speeding toward the crash of 1929. Ultimately, whether the novels are read together or separately, they paint a sweeping portrait of collective America and showcase the brilliance and bravery of one of its most enduring and admired writers.","Hit Men: Power Brokers and Fast Money Inside the Music Business. Copiously researched and documented,Hit Men is the highly controversial portrait of the pop music industry in all its wild, ruthless glory: the insatiable greed and ambition; the enormous egos; the fierce struggles for profits and power; the vendettas, rivalries, shakedowns, and payoffs. Chronicling the evolution of America's largest music labels from the Tin Pan Alley days to the present day, Fredric Dannen examines in depth the often venal, sometimes illegal dealings among the assorted hustlers and kingpins who rule over this multi-billion-dollar business.","Desolation Angels. With the publication of On the Roadin 1957, Jack Kerouac became at once the spokesman and hero of the Beat Generation. Along with such visionaries as William S. Burroughs, Neal Cassady, and Allen Ginsberg, Kerouac changed the face of American literature, igniting a counterculture revolution that even now, decades later, burns brighter than ever in Desolation Angels. In one of the major cinematic events of 2012, Jack Kerouac's legendary Beat classic, On the Road, finally hits the big screen. Directed by Walter Salles (The Motorcycle Diaries; Paris, Je T'Aime) and with a cast of some of Hollywood's biggest young stars, including Kristen Stewart (The Twilight Saga), Sam Riley, Garrett Hedlund, Kirsten Dunst, Amy Adams (Julie & Julia, The Fighter), Tom Sturridge, and Viggo Mortensen (the Lord of the Rings trilogy, The Road), the film will attract new fans who will be inspired by Kerouac's revolutionary writing.",Manhunt Official Strategy Guide.,"Trevayne. Trevayne was a self-made millionaire by the time he was thirty. Then he went into government, carving out a brilliant and honourable career. Now he is head of one of the biggest foundations in the USA. Fearless, intelligent and incorruptible, he thought no one could touch him... Then his investigation into the 'secret government' led him beyond the corridors of official power into a nightmare maze where Mafia leaders and 'legitimate' billionaires mixed, where even the Presidency can be bought and sold. And where a man like Trevayne could be a dreaded enemy, a duped victim, or maybe, just maybe, a king.","When Rain Clouds Gather. A poverty-stricken village in the heart of rural Botswana is a haven to the exiles gathered there. When a political refugee from South Africa joins forces with an English agricultural expert, the time-honoured subsistence-farming method and old ways of life are challenged.","Man's Search for Meaning. We needed to stop asking about the meaning of life, and instead to think of ourselves as those who were being questioned by life-daily and hourly. Our answer must consist not in talk and meditation, but in right action and in right conduct. Life ultimately means taking the responsibility to find the right answer to its problems and to fulfill the tasks which it constantly sets for each individual. When Man's Search for Meaningwas first published in 1959, it was hailed by Carl Rogers as ""one of the outstanding contributions to psychological thought in the last fifty years."" Now, more than forty years and 4 million copies later, this tribute to hope in the face of unimaginable loss has emerged as a true classic. Man's Search for Meaning--at once a memoir, a self-help book, and a psychology manual-is the story of psychiatrist Viktor Frankl's struggle for survival during his three years in Auschwitz and other Nazi concentration camps. Yet rather than ""a tale concerned with the great horror","Dracula. Can there be any more terrifying tale than this? The story of the notorious vampire Count Dracula, lord of the undead, who rises from his coffin at night to suck the blood of the living is, undoubtedly, the stuff of nightmares. A lunatic asylum, a bleak Transylvanian castle, an ancient cemetery...these are the dark backgrounds to the even darker deeds portrayed in this most bloodcurdling of tales. Narrated from several different viewpoints it is a complex story that many know, though many fewer have actually read. Jan Needle's newly re-edited version makes the gripping events accessible to the twenty-first century reader without losing the incomparably chilling atmosphere of Bram Stoker's original novel brilliantly captured in the dramatic illustrations of Kate Greenaway Medallist Gary Blythe. But be warned this is not for the faint-hearted!","Message in a Bottle. Thrown to the waves, and to fate, the bottle could have ended up anywhere. Instead, it is found just three weeks after it begins its journey. Theresa Osborne, divorced and the mother of a twelve-year-old son, discovers it during a seaside vacation from her job as a Boston newspaper columnist. Inside is a letter that opens with, ""My Dearest Catherine, I miss you my darling, as I always do, but today is particularly hard because the ocean has been singing to me, and the song is that of our life together...."" For Garrett, the message is the only way he knows to express his undying love for a woman he has lost. For Theresa, wary of romance since her husband shattered her trust, the message raises questions that intrigue her. Challenged by the mystery, and driven to find Garrett by emotions she does not fully understand, Theresa begins a search that takes her to a sunlit coastal town and an unexpected confrontation. Brought together either by chance or something more powerful, Theresa and G","Principle-Centered Leadership. How do we as individuals and organizations survive and thrive amid tremendous change? Why are efforts to improve falling so short in real results despite the millions of dollars in time, capital, and human effort being spent on them? How do we unleash the creativity, talent, and energy within ourselves and others in the midst of pressure? Is it realistic to believe that balance among personal, family, and professional life is possible? Stephen R. Covey demonstrates that the answer to these and other dilemmas is Principle-Centered Leadership, a long-term, inside-out approach to developing people and organizations. The key to dealing with the challenges that face us today is the recognition of a principle-centered core within both ourselves and our organizations. Dr. Covey offers insights and guidelines that can help you apply these principles both at work and at home -- leading to not just a new understanding of how to increase quality and productivity, but also to a new appreciation of","The Jane Austen Book Club. The Extraordinary New York TimesBestsellerIn California's central valley, five women and one man join to discuss Jane Austen's novels. Over the six months they get together, marriages are tested, affairs begin, unsuitable arrangements become suitable, and love happens. With her eye for the frailties of human behavior and her ear for the absurdities of social intercourse, Karen Joy Fowler has never been wittier nor her characters more appealing. The result is a delicious dissection of modern relationships. Dedicated Austenites will delight in unearthing the echoes of Austen that run through the novel, but most readers will simply enjoy the vision and voice that, despite two centuries of separation, unite two great writers of brilliant social comedy.","Don Quixote. 'Didn't I tell you they were only windmills? And only someone with windmills on the brain could have failed to see that!' Don Quixote has become so entranced by reading romances of chivalry that he determines to become a knight errant and pursue bold adventures, accompanied by his squire, the cunning Sancho Panza. As they roam the world together, the ageing Quixote's fancy leads them wildly astray. At the same time the relationship between the two men grows with fascinating subtlety. Often considered to be the first modern novel, Don Quixote is a wonderful burlesque of the popular literature its disordered protagonist is obsessed with. John Rutherford's landmark translation does full justice to the energy and wit of Cervantes's prose. His introduction discusses the traditional works parodied in Don Quixote and issues of literary translation.","War and Peace and War: The Rise and Fall of Empires. Like Jared Diamond in Guns, Germs, and Steel, Peter Turchin in War and Peace and Waruses his expertise in evolutionary biology to make a highly original argument about the rise and fall of empires. Turchin argues that the key to the formation of an empire is a society's capacity for collective action. He demonstrates that high levels of cooperation are found where people have to band together to fight off a common enemy, and that this kind of cooperation led to the formation of the Roman and Russian empires, and the United States. But as empires grow, the rich get richer and the poor get poorer, conflict replaces cooperation, and dissolution inevitably follows. Eloquently argued and rich with historical examples, War and Peace and Waroffers a bold new theory about the course of world history.",A Guide to the Words of My Perfect Teacher.,Charles Taylor.,"Legends Lies Cherished Myths of World History. ""Was there really a valiant little Dutch boy, a protesting Lady Godiva, a fiddling Nero, or a prudish Queen Victoria? No, says Shenkman ....No person, event, or thing is safe from Shenkman's corrections."" --Booklist Founder of George Mason University's History News Network and bestselling author of Presidential Ambitionand One Night Stands with American History, Rick Shenkman is an historian, a rebel, and a myth debunker par excellence. In Legends, Lies & Cherished Myths of World History, he explodes some of the most honored and long-held misconceptions about kings and despots, wars and empires, religions, inventions, from the glory days of the Roman Empire to the dark days of World War Two. Fascinating, edifying, and irreverent, here is the real world history you were never taught in school--for history buffs and confirmed trivia fanatics everywhere!","A Quiver Full of Arrows. Ordinary Heros, Extraordinary Deeds The bestselling author of Kane & Abel, The Prodigal Daughter and Honor Among Theives once again astonishes, delights, and electrifies his legions of fans. From London to China, and New York to Nigeria, Jeffrey Archer takes the reader on a tour of ancient heirlooms and modern romance, of cutthroat business and kindly strangers, of lives lived in the realms of power and lives freed from the gloom of oppression. Fortunes are made and squandered, honor betrayed and redeemed, and love lost and rediscovered. Embracing the passions that drive men and women to love and to hate, the short stories in A Quiver Full of Arrowswill captivate the hearts and souls of readers of everywhere.","The Chronicles of Chrestomanci Vol. 1 (Chrestomanci #1-2). There is an alternate cover . In this multiple parallel universes of the Twelve Related Worlds, only an enchanter with nine lives is powerful enough to control the rampant misuse of magic--and to hold the title Chrestomanci... The Chants are a family strong in magic, but neither Christopher Chant nor Cat Chant can work even the simplest of spells. Who could have dreamed that both Christopher and Cat were born with nine lives--or that they could lose them so quickly?","The Salmon of Doubt (Dirk Gently #3). Douglas Adams changed the face of science fiction with his cosmically comic novel The Hitchhiker's Guide to the Galaxyand its classic sequels. Sadly for his countless admirers, he hitched his own ride to the great beyond much too soon. Culled posthumously from Adams's fleet of beloved Macintosh computers, this selection of essays, articles, anecdotes, and stories offers a fascinating and intimate portrait of the multifaceted artist and absurdist wordsmith. Join Adams on an excursion to climb Kilimanjaro...dressed in a rhino costume; peek into the private life of Genghis Khan--warrior and world-class neurotic; root for the harried author's efforts to get a Hitchhikermovie off the ground in Hollywood; thrill to the further exploits of private eye Dirk Gently and two-headed alien Zaphod Beeblebrox. Though Douglas Adams is gone, he's left us something very special to remember him by. Without a doubt.","The Elegant Universe: Superstrings Hidden Dimensions and the Quest for the Ultimate Theory. In a rare blend of scientific insight and writing as elegant as the theories it explains, Brian Greene, one of the world's leading string theorists, peels away the layers of mystery surrounding string theory to reveal a universe that consists of eleven dimensions, where the fabric of space tears and repairs itself, and all matter--from the smallest quarks to the most gargantuan supernovas--is generated by the vibrations of microscopically tiny loops of energy. Greene uses examples ranging from an amusement park ride to ants on a garden hose to illustrate the beautiful yet bizarre realities that modern physics is unveiling. Dazzling in its brilliance, unprecedented in its ability to both illuminate and entertain, The Elegant Universe is a tour de force of science writing--a delightful, lucid voyage through modern physics that brings us closer than ever to understanding how the universe works.",The Illustrated Story Of O.,"Day (The Night Trilogy #3). ""Not since Albert Camus has there been such an eloquent spokesman for man."" --The New York Times Book Review The publication of Day restores Elie Wiesel's original title to the novel initially published in English as The Accidentand clearly establishes it as the powerful conclusion to the author's classic trilogy of Holocaust literature, which includes his memoir Nightand novel Dawn. ""In Night it is the 'I' who speaks,"" writes Wiesel. ""In the other two, it is the 'I' who listens and questions."" In its opening paragraphs, a successful journalist and Holocaust survivor steps off a New York City curb and into the path of an oncoming taxi. Consequently, most of Wiesel's masterful portrayal of one man's exploration of the historical tragedy that befell him, his family, and his people transpires in the thoughts, daydreams, and memories of the novel's narrator. Torn between choosing life or death, Dayagain and again returns to the guiding questions that inform Wiesel's trilogy: the meaning an","The Brethren: Inside the Supreme Court. The Brethrenis the first detailed behind-the-scenes account of the Supreme Court in action. Bob Woodward and Scott Armstrong have pierced its secrecy to give us an unprecedented view of the Chief and Associate Justices--maneuvering, arguing, politicking, compromising, and making decisions that affect every major area of American life.",Broken Vessels.,"Red River Vol. 17 (Red River #17). While Kail is away from Hattusa, his commander Rusafa is accused of attacking a noblewoman, and, on Nakia's suggestion, is subjected to a brutal test of innocence. News then comes from Ugarit, a nation allied to the Hittites, that Kail's brother is missing. Yuri goes to investigate and finds that the king of Ugarit has received a letter from Nakia that's turned him against Kail. As for the people of Ugarit, they're convinced they're about to be slaughtered--not by their conquest-hungry neighbors the Egyptians, but by the Hittites!","Blue at the Mizzen (Aubrey & Maturin #20). Napoleon has been defeated at Waterloo, and the ensuing peace brings with it both the desertion of nearly half of Captain Aubrey's crew and the sudden dimming of Aubrey's career prospects in a peacetime navy. When the Surpriseis nearly sunk on her way to South America--where Aubrey and Stephen Maturin are to help Chile assert her independence from Spain--the delay occasioned by repairs reaps a harvest of strange consequences. The South American expedition is a desperate affair; and in the end Jack's bold initiative to strike at the vastly superior Spanish fleet precipitates a spectacular naval action that will determine both Chile's fate and his own.",Divine Conspiracy: Rediscovering Our Hidden Life in God.,"The Polysyllabic Spree. The Polysyllabic Spree is the first title in the Believer Book series, which collects essays by and interviews with some of our favorite authors--George Saunders, Zadie Smith, Michel Houellebecq, Janet Malcolm, Jim Shepard, and Haruki Murakami, to name a few. In his monthly column ""Stuff I've Been Reading"", Nick Hornby lists the books he's purchased and the books he's read that month - they almost never overlap - and briefly discusses the books he's actually read. The Polysyllabic Spree includes selected passages from the novels, biographies, collections of poetry, and comics discussed in the column.",Walking With the Great Apes: Jane Goodall Dian Fossey Birute Galdikas.,Trip To The North Pole (The Polar Express: The Movie).,"The End of the Affair. ""A story has no beginning or end: arbitrarily one chooses a moment of experience from which to look ahead..."" ""This is a record of hate far more than of love,"" writes Maurice Bendrix in the opening passages of The End of the Affair, and it is a strange hate indeed that compels him to set down the retrospective account of his adulterous affair with Sarah Miles. Now, a year after Sarah's death, Bendrix seeks to exorcise the persistence of his passion by retracing its course from obsessive love to love-hate. At first, he believes he hates Sarah and her husband, Henry. Yet as he delves further into his emotional outlook, Bendrix's hatred shifts to the God he feels has broken his life, but whose existence at last comes to recognize.","Silent Night: The Remarkable Christmas Truce of 1914. It was one of history's most powerful,yet forgotten,Christmas stories. It took place in the improbable setting of the mud, cold rain and senseless killing of the trenches of World War I. It happened in spite of orders to the contrary by superiors; it happened in spite of language barriers. And it still stands as the only time in history that peace spontaneously arose from the lower ranks in a major conflict, bubbling up to the officers and temporarily turning sworn enemies into friends.Silent Night,by renowned military historian Stanley Weintraub, magically restores the 1914 Christmas Truce to history. It had been lost in the tide of horror that filled the battlefields of Europe for months and years afterward. Yet in December 1914 the Great War was still young, and the men who suddenly threw down their arms and came together across the front lines to sing carols, exchange gifts and letters, eat and drink and even play friendly games of soccer naively hoped that the war would be short-l","His Dark Materials Trilogy (Northern Lights; The Subtle Knife; The Amber Spyglass). The extraordinary story moves between parallel universes. Beginning in Oxford, it takes Lyra and her animal-daemon Pantalaimon on a dangerous rescue mission to the ice kingdoms of the far North, where she begins to learn about the mysterious particles they call Dust - a substance for which terrible war between different worlds will be fought...","Danny the Champion of the World. Danny's life seems perfect: his home is a gypsy caravan, he's the youngest car mechanic around, and his best friend is his dad, who never runs out of wonderful stories to tell. And when Danny discovers his father's secret, he's off on the adventure of a lifetime. Here's Roald Dahl's famous story about a 9-year-old boy, his dad, and a daring and hilarious pheasant-snatching expedition. Just as important, it's the story of the love between a boy and his father who, in Danny's own words, is ""the most marvelous and exciting father a boy ever had.""","The Sorrows of Young Werther. Visiting an idyllic German village, Werther, a sensitive and romantic young man, meets and falls in love with sweet-natured Lotte. Although he realizes that Lotte is to marry Albert, he is unable to subdue his passion for her, and his infatuation torments him to the point of absolute despair. The first great 'confessional' novel, 'The Sorrows of Young Werther' draws both on Goethe's own unrequited love for Charlotte Buff and on the death of his friend Karl Wilhelm Jerusalem. Goethe's sensitive exploration of the mind of a young artist at odds with society and ill-equipped to cope with life is now considered the first great tragic novel of European literature.",Education as My Agenda: Gertrude Williams Race & the Baltimore Public Schools.,"Summer of the Monkeys. The last thing a fourteen-year-old boy expects to find along an old Ozark river bottom is a tree full of monkeys. Jay Berry Lee's grandpa had an explanation, of course--as he did for most things. The monkeys had escaped from a traveling circus, and there was a handsome reward in store for anyone who could catch them. Grandpa said there wasn't any animal that couldn't be caught somehow, and Jay Berry started out believing him . . . But by the end of the ""summer of the monkeys,"" Jay Berry Lee had learned a lot more than he ever bargained for--and not just about monkeys. He learned about faith, and wishes coming true, and knowing what it is you really want. He even learned a little about growing up . . . This novel, set in rural Oklahoma around the turn of the century, is a heart-warming family story--full of rich detail and delightful characters--about a time and place when miracles were really the simplest of things...",Diez Cuentos de Eva Luna Con Guia de Comprension y Repaso de Gramatica.,Dark Water (Fog Point #1).,"Usher's Passing. In this most gothic of Robert McCammon's novels, setting is key: the continuing saga of the Usher family (descended from the brother of Roderick and Madeline of Edgar Poe's ""Fall of the House of Usher"") takes place in the weird and picturesque heart of the North Carolina mountains. The haughty, aristocratic Ushers live in a mansion near Asheville; the poor but crafty mountain folk (whose families are just as ancient) live on Briartop Mountain nearby. At harvest time, when the book's action unfolds, the mountains are a blaze of color. Add to the mixture a sinister history of mountain kids disappearing every year, a journalist investigating those disappearances, a monster called ""The Pumpkin Man,"" moldy books and paintings in a huge old library at the Usher estate, and a secret chamber with a strange device involving a brass pendulum and tuning forks--and you've got a splendid recipe for atmospheric horror. Originally published: New York: Holt, Rinehart, and Winston, 1984.","The Invisible Writing. Taken together, Arthur Koestler's volumes of autobiography constitute an unrivalled study of twentieth-century man and his dilemma. Arrow in the Blueended with his joining the Communist Party and The Invisible Writingcovers some of the most important experiences in his life. This book tells of Koestler's travels through Russia and remote parts of Soviet Central Asia and of his life as an exile. It puts in perspective his experiences in Franco's prisons under sentence of death and in concentration camps in Occupied France and ends with his escape in 1940 to England, where he found stability and a new home.","This Craft of Verse. The Marvelous Borges Has another writer written to greater effect with fewer words? Whether in the form of the short story, essay, or poem, Jorge Luis Borges routinely performed astonishing turns of imagination in the length of a spare handful of pages. Borges's writings are models of succinct power; by temperament and by artistic ambition, he was a minimalist, given to working his wonders on the smallest scale possible. A master of fiction, Borges never published a novel -- or even, it seems, felt the lure of attempting one. He professed a heartfelt conservative piety for the older literary forms, for the saga and epic, the lyric and tale, but he made radically inventive uses of the traditional forms in his own literary labors. Borges possessed an uncommon complement of gifts. He was capable of launching startling, even unnerving flights of cerebral fantasy or metaphor but owned a first-rate mind and a critical intelligence entirely at ease with the metaphysical abstractions of the ph",Running Dog.,"Ulysses S. Grant: The Unlikely Hero. One of the first two volumes in Harper's Eminent Livesseries, Korda brings his acclaimed storytelling talents to the life of Ulysses S. Grant - a man who managed to end the Civil War on a note of grace, serve two terms as president, write one of the most successful military memoirs in American literature, and is today remembered as a brilliant general but a failed president. Ulysses S. Grant was the first officer since George Washington to become a four-star general in the United States Army, and the only president between Andrew Jackson and Woodrow Wilson to serve eight consecutive years in the White House. In this succinct and vivid biography, Michael Korda considers Grant's character and reconciles the conflicting evaluations of his leadership abilities. Grant's life played out as a true Horatio Alger story. Despite his humble background as the son of a tanner in Ohio, his lack of early success in the army, and assorted failed business ventures, his unwavering determination propelle",A Study Guide to Gabriel Garcia Marquez' One Hundred Years of Solitude.,"Whiteout. Human betrayal, medical terror and a race against time ...",The Review of Contemporary Fiction: Fall 2001: Gilbert Sorrentino/William Gaddis/Mary Caponegro/Margery Latimer.,"The Fires of Heaven (The Wheel of Time #5). The fifth book in Robert Jordan's internationally bestselling epic fantasy series, THE WHEEL OF TIME, now reissued with a stunning new cover design. The bonds and wards that hold the Great Lord of the Dark are slowly failing, but still his fragile prison holds. The Forsaken, immortal servants of the shadow, weave their snares and tighten their grip upon the realms of men, sure in the knowledge that their master will soon break free... Rand al' Thor, the Dragon Reborn, knows that he must strike at the Enemy, but his forces are divided by treachery and by ambition. Even the Aes Sedai, ancient guardians of the Light, are riven by civil war. Betrayed by his allies, pursued by his enemies and beset by the madness that comes to the male wielders of the One Power, Rand rides out to meet the foe.","Alice In Wonderland. Alice in Wonderland is one of the most popular, inviting, and adventurous stories of all time. One normal summer day, Alice is sitting on the riverbank when a big, white, talking rabbit runs past. He pops into a big rabbit hole, and Alice follows him down, down, down into a strange and magical land. Alice has many exciting adventures in this extraordinary place called Wonderland. Here, anything can happen: All the animals talk, a deck of cards comes to life, and everything gets curiouser and curiouser. This is the timeless tale of Alice's adventures in Wonderland.","First Love Second Chance. Librarian Note: This edition's ISBN is in conflict with another's in the database - . Tommy Black After overcoming a wild, reckless youth, he's finally become a respected member of the community. And he owes it all to one female - his six-year-old daughter, Chipper. She means more to him than anyone - except maybe Julia Marshall. But ten years ago, he'd foolishly hurt Julia. Ten years ago, she left town and never came back. Now, circumstances have brought Julia home and Tommy's not about to blow his second chance. Julia Marshall Home is the last place on earth she wants to be. She's finally managed to put her unhappy childhood behind her and make a name for herself in New York. But no sooner has she arrived than Tommy Black, her first love, is on her doorstep, asking for a second chance. How can she ever forgive him? Holding out against Tommy isn't easy, though - especially when Chipper has already stolen her heart!",Conversations with Bernard Malamud (Literary Conversations).,"The Politics and The Constitution of Athens. This new collection of Aristotle's political writings provides the student with all the necessary materials for a full understanding of his work as a political scientist. In addition to a revised and extended introduction, this expanded Cambridge Texts edition contains an extensive guide to further reading and an index of names with biographical notes. Presentation of The Politics and The Constitution of Athens in a single volume will make this the most attractive and convenient student edition of these seminal works currently available.","The Westing Game. A bizarre chain of events begins when sixteen unlikely people gather for the reading of Samuel W. Westing's will. And though no one knows why the eccentric, game-loving millionaire has chosen a virtual stranger - and a possible murderer - to inherit his vast fortune, one thing's for sure: Sam Westing may be dead... but that won't stop him from playing one last game!","Atlas Shrugged. Special 35th anniversary edition of the book that moved the world--and about the man who almost stopped it. Setting forth the fundamentals of Ayn Rand's unique philosophy of Objectivism, Atlas Shrugged is an acclaimed work about the murder--and rebirth--of a man's spirit.","From the Age of Discovery to a World at War (America: The Last Best Hope #1). To resce the future, we must remember our past. With command and wit, William J. Bennett reacquaints Americans with their heritage in an engaging narrative that cuts through the cobwebs of time, memory, and prevailing cynicism. Washington, Franklin, Lincoln, Roosevelt, and others reemerge not as marble icons or dust-dry names in a textbook, but as full-blooded, heroic pioneers whose far-reaching vision forged a nation that attracted--that still attracts--millions yearning to breathe free. In this, the first volume of a ""reasoned, balanced presentation of the American story,"" Bennett tells our nation's story, with all its triumphs and tragedies. He summons us to embrace America's cause once again as ""the last best hope of earth."" What others are saying: ""William J. Bennett artfully and subtly makes connections between our past and current events, reminding us ... that we are intimately and immediately connected to the extraordinary Americans who have bestowed upon us our great heritage.","The Killer Angels: A Novel of the Civil War (The Civil War Trilogy #2). Incisive portraits of Lee, Longstreet, Meade, and other Civil War leaders are interwoven with rich historical detail to provide a fictional recreation of the bloody battle at Gettysburg, in a new thirtieth anniversary edition of the Pulitzer Prize-winning historical novel. 10,000 first printing.","Essence and Alchemy: A Natural History of Perfume. Renowned perfumer Mandy Aftel explores the primal nature and fundamental importance of aroma in everyday life, teaching people about the nature of smell and the idea of ""olfactory consciousness"" in Essence and Alchemy: A Natural History of Perfume. /p>",Isabelle's Perfect Performance (The Royal Ballet School Diaries #3).,"Foundation and Earth (Foundation #5). Fundacion y Tierra es una novela de ciencia ficcion del ano 1986 escrita por Isaac Asimov. Es la segunda secuela del Ciclo de Trantor, la quinta novela sobre la Fundacion que escribio y, cronologicamente, la ultima de la Saga. La serie de la ""Fundacion"" (Fundacion, Fundacion e Imperio, Segunda Fundacion y Los limites de la Fundacion) es la obra de ciencia ficcion mas leida de todos los tiempos. Como gran acontecimiento editorial, la saga monumental continua con el presente titulo, que es la quinta y mas emocionante novela de la serie. La Humanidad, en un lejano futuro galactico, busca sus origenes en un planeta perdido llamado Tierra...","A Tale of Two Cities. ENDURING LITERATURE ILLUMINATED BY PRACTICAL SCHOLARSHIP Dickens's epic novel of freedom, love, and the burning chaos of the French Revolution. EACH ENRICHED CLASSIC EDITION INCLUDES: * A concise introduction that gives readers important background information * A chronology of the author's life and work * A timeline of significant events that provides the book's historical context * An outline of key themes and plot points to help readers form their own interpretations * Detailed explanatory notes * Critical analysis, including contemporary and modern perspectives on the work * Discussion questions to promote lively classroom and book group interaction * A list of recommended related books and films to broaden the reader's experience Enriched Classics offer readers affordable editions of great works of literature enhanced by helpful notes and insightful commentary. The scholarship provided in Enriched Classics enables readers to appreciate, understand, and enjoy the world's finest boo","The Vampire Armand (The Vampire Chronicles #6). Armand until now has played a small role in the Vampire Chronicles. Here he assumes center stage, relating his five hundred years of life to fledgling vampire David Talbot, who plays amanuensis to Armand as he did to Lestat ... It's not just the epic plot but Rice's voluptuary worldview that's the main attraction ... Elegant narrative has always been her hallmark ... Rice is equally effective in showing how Armand eventually loses his religion and becomes ""the vagabond angel child of Satan,"" living under Paris cemeteries and foundling the Grand Guignol-ish Theatre des Vampires. In the twentieth century, a rehabilitated Armand regains faith but falls in love with two children who save his life. By the conclusion of Armand, the pupil has become the mentor.","Our Endangered Values: America's Moral Crisis. President Jimmy Carter offers a passionate defense of separation of church and state. He warns that fundamentalists are deliberately blurring the lines between politics and religion. As a believing Christian, Carter takes on issues that are under fierce debate -- women's rights, terrorism, homosexuality, civil liberties, abortion, the death penalty, science and religion, environmental degradation, nuclear arsenals, preemptive war, and America's global image.","The Right Attitude to Rain (Isabel Dalhousie #3). The delectable new installment in the bestselling and already beloved adventures of Isabel Dalhousie and her no-nonsense housekeeper, Grace. When friends from Dallas arrive in Edinburgh and introduce Isabel to Tom Bruce - a bigwig at home in Texas - several confounding situations unfurl at once. Tom's young fiancee's roving eye leads Isabel to believe that money may be the root of her love for Tom. But what, Isabel wonders, is the root of the interest Tom begins to show for Isabel herself? And she can't forget about her niece, Cat, who's busy falling for a man whom Isabel suspects of being an incorrigible mama's boy. Of course Grace and Isabel's friend Jamie counsel Isabel to stay out of all of it, but there are irresistible philosophical issues at stake - when to tell the truth and when to keep one's mouth shut, to be precise - and philosophical issues are meat and drink to Isabel Dalhousie, editor of the Review of Applied Ethics. In any case, she's certain of the ethical basis for a","All Rivers Run to the Sea. In this first volume of his two-volume autobiography, Wiesel takes us from his childhood memories of a traditional and loving Jewish family in the Romanian village of Sighet through the horrors of Auschwitz and Buchenwald and the years of spiritual struggle, to his emergence as a witness for the Holocaust's martyrs and survivors and for the State of Israel, and as a spokesman for humanity. With 16 pages of black-and-white photographs. ""From the abyss of the death camps Wiesel has come as a messenger to mankind--not with a message of hate and revenge, but with one of brotherhood and atonement."" --From the citation for the 1986 Nobel Peace Prize","Maverick: The Success Story Behind the World's Most Unusual Workplace. The international bestseller that tells how Semler tore up the rule books - and defied inflation running at up to 900% per year! - Workers make decisions previously made by their bosses - Managerial staff set their own salaries and bonuses - Everyone has access to the company books - No formality - a minimum of meetings, memos and approvals - Internal walls torn down - Shopfloor workers set their own productivity targets and schedules Result - Semco is one of Latin America's fastest-growing companies, acknowledged to be the best in Brazil to work for, and with a waiting list of thousands of applicants waiting to join it. Learn Ricardo's secrets and let some of the Semco magic rub off on you and your company.","Songbook. ""All I have to say about these songs is that I love them, and want to sing along to them, and force other people to listen to them, and get cross when these other people don't like them as much as I do."" --Nick Hornby, from Songbook Songs, songwriters, and why and how they get under our skin... Songbook is Nick Hornby's labor of love. A shrewd, funny, and completely unique collection of musings on pop music, why it's good, what makes us listen and love it, and the ways in which it attaches itself to our lives--all with the beat of a perfectly mastered mix tape.","Sons (House of Earth #2). Second in the trilogy that began with The Good Earth, Buck's classic and starkly real tale of sons rising against their honored fathers tells of the bitter struggle to the death between the old and the new in China. Revolutions sweep the vast nation, leaving destruction and death in their wake, yet also promising emancipation to China's oppressed millions who are groping for a way to survive in a modern age.","O Ano do Pensamento Mágico. From one of America's iconic writers, this is a portrait of a marriage and a life - in good times and bad - that will speak to anyone who has ever loved a husband or wife or child. This is a stunning book of electric honesty and passion. Several days before Christmas 2003, John Gregory Dunne and Joan Didion saw their only daughter, Quintana, fall ill. At first they thought it was flu, then pneumonia, then complete septic shock. She was put into an induced coma and placed on life support. Days later - the night before New Year's Eve - the Dunnes were just sitting down to dinner after visiting the hospital when John suffered a massive and fatal coronary. In a second, this close, symbiotic partnership of 40 years was over. Four weeks later, their daughter pulled through. Two months after that, arriving at LA airport, she collapsed and underwent six hours of brain surgery at UCLA Medical Centre to relieve a massive hematoma. This powerful book is Didion's 'attempt to make sense of the week","The Oresteia Trilogy: Agamemnon/The Libation-Bearers/The Furies. Perhaps the greatest of the Greek tragedians, Aeschylus wrote 90 plays, but only seven have survived complete. Among them is this classic trilogy dealing with the bloody history of the House of Atreus. In Agamemnon,the warrior who defeated Troy returns to Argos and is murdered by his wife Clytemnestra for sacrificing their daughter Iphigenia before the start of the Trojan War. In The Libation-Bearers, Orestes, Agamemnon's son, avenges his father by murdering his mother. In The Furies,Orestes flees to Delphi, pursued by the divine avengers (Erinyes) of his mother. After being purified by Apollo, he makes his way to Athens and is there tried (and acquitted) at the court of Areopagus. Written in a grand style, rich in diction and dramatic dialogue, the plays embody Aeschylus' concerns with the destiny and fate of individuals as well as the state, all played out under the watchful eye of the gods. Still powerful and provocative after 2,500 years, these great tragedies offer unparalleled in","Standing in the Rainbow (Elmwood Springs #2). Along with Neighbor Dorothy, the lady with the smile in her voice, whose daily radio broadcasts keep us delightfully informed on all the local news, we also meet Bobby, her ten-year-old son, destined to live a thousand lives, most of them in his imagination; Norma and Macky Warren and their ninety-eight-year-old Aunt Elner; the oddly sexy and charismatic Hamm Sparks and the two women who love him as differently as night and day. Then there is Tot Whooten; Beatrice Woods, the Little Blind Songbird; Cecil Figgs, the Funeral King; and the fabulous Minnie Oatman. The time is 1946 until the present. The town is Elmwood Springs, Missouri, right in the middle of the country, in the midst of the mostly joyous transition from war to peace, aiming toward a dizzyingly bright future.","The Aleph and Other Stories. Full of philosophical puzzles and supernatural surprises, these stories contain some of Borges's most fully realized human characters. With uncanny insight he takes us inside the minds of an unrepentant Nazi, an imprisoned Mayan priest, fanatical Christian theologians, a woman plotting vengeance on her father's ""killer,"" and a man awaiting his assassin in a Buenos Aires guest house. This volume also contains the hauntingly brief vignettes about literary imagination and personal identity collected in The Maker, which Borges wrote as failing eyesight and public fame began to undermine his sense of self. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and notes by distinguished scholars and","Five Quarters of the Orange. When Framboise Simon returns to a small village on the banks of the Loire, the locals do not recognize her as the daughter of the infamous woman they hold responsible for a tragedy during the German occupation years ago. But the past and present are inextricably entwined, particularly in a scrapbook of recipes and memories that Framboise has inherited from her mother. And soon Framboise will realize that the journal also contains the key to the tragedy that indelibly marked that summer of her ninth year. . . .","Orientalism. With a new preface by the author. In this highly acclaimed work, Edward Said surveys the history and nature of Western attitudes towards the East, considering Orientalism as a powerful European ideological creation - a way for writers, philosophers and colonial administrators to deal with the 'otherness' of Eastern culture, customs and beliefs. He traces this view through the writings of Homer, Nerval and Flaubert, Disraeli and Kipling, whose imaginative depictions have greatly contributed to the West's romantic and exotic picture of the Orient. In his new preface, Said examines the effect of continuing Western imperialism after recent events in Palestine, Afghanistan and Iraq.","The John Adams Reader: Eseential Writings on an American Composer. The John Adams Reader: Essential Writings on an American Composeris the first full-length book in English devoted to the work of John Adams, among the most frequently performed living American composers in the sphere of classical music. Sometimes called America's ""composer laureate,"" John Adams has proved to be that rare bird--an enduring, if often controversial, figure in contemporary art music. Although branded a minimalist early in his career, Adams has composed in many styles and forms, from opera, choral, and orchestral pieces to multimedia stage works and tape and electronic compositions. Here essays by leading music commentators and critics explore the Adams oeuvre with insights pro and con.",The Goon Show Volume 11: He's Fallen in the Water!.,Filth: Dirt Disgust and Modern Life.,"I Henry IV. ""Contexts and Sources"" includes dueling arguments on the play's completeness (one play or one half of a play?) and the naming of a central character (Falstaff or Oldcastle?) ""Criticism"" includes twenty-four essays--from E. M. W. Tillyard's classic argument of an ordered Shakespearean universe to Graham Holderness's rebuttal to Gus Van Sant's interview regarding1 Henry IVas the inspiration for his cult film, My Own Private Idaho--nineteen of them new to the Third Edition. The Selected Bibliography has been thoroughly updated.",The Unfortunate Tobacconist & Other Mysteries (Sherlock Holmes 1-6).,"Revolutionary Characters: What Made the Founders Different. Even when the greatness of the founding fathers isn't being debunked, it is a quality that feels very far away from us indeed: Washington, Adams, Jefferson, Madison and Co. seem as distant as marble faces carved high into a mountainside. We may marvel at the fact that fate placed such a talented cohort of political leaders in that one place, the east coast of North America, in colonies between Virginia and Massachusetts, and during that one fateful period, but that doesn't really help us explain it or teach us the proper lessons to draw from it. What did make the founders different? Now, the incomparable Gordon Wood has written a book that shows us, among many other things, just how much character did matter. Revolutionary Charactersoffers a series of brilliantly illuminating studies of the men who came to be known as the founding fathers. Each life is considered in the round, but the thread that binds the work together and gives it the cumulative power of a revelation is this idea of","Oasis (On the Road to Perdition #1). A perfect complement to the original graphic novel and the major motion picture that was based upon it, ON THE ROAD TO PERDITION BOOK ONE: OASIS explores the undisclosed tales that occurred over the six months in which hitman Michael O'Sullivan tried to protect his oldest son from his former employees. Looking to disrupt the business of the mob families that killed his wife and youngest offspring, the grieving O'Sullivan and his adolescent boy embark on a disruptive bank-robbing spree in the rural Midwest. But as these deadly adventures forge an unbreakable bond between the father and son, a new danger awaits them in the form of a pair of ruthless bounty hunters obsessed with their capture, dead or alive.","Five Children and It. While exploring the environs of their summer home, five brothers and sisters find a Psammead, or Sand-fairy, in a nearby gravel pit: ""Its eyes were on long horns like a snail's eyes, and it could move them in and out like telescopes; it had ears like a bat's ears, and its tubby body was shaped like a spider's and covered with thick soft fur; its legs and arms were furry too, and it had hands and feet like a monkey's."" The Psammead is magical and, every day, the ancient and irritable creature grants each of them a wish that lasts until sunset. Soon, though, they find their wishes never seem to turn out right and often have unexpected -- and humorous -- consequences. But when an accidental wish goes terribly wrong, the children learn that magic, like life, can be as complicated as it is exciting.","Tales of Magick: Dark Adventure. Kick Ass And Live to Tell About It Some people think the Awakened sit around dreaming about Ascension. Wrong. Dead wrong. When reality itself is on the brink of destruction, you don't contemplate your navel. You fight -- and sometimes die -- for the sake of the future. Tales of Magick takes Mage from the realm of abstraction and kicks it screaming into high gear. If you ever wondered how to run an epic, exciting modern sorcery chronicle, Dark Adventure is for you. Indeed, Tales of Magick is an ongoing series of books dedicated to playing Mage in a variety of genres and settings. Now your Mage game can go anywhere, anywhen.",Manöver um Feuerland (The Far Side of the World) (Aubrey/Maturin Book 10).,The Cultural Cold War: The CIA and the World of Arts and Letters.,"The Assistant. Bernard Malamud's second novel, originally published in 1957, is the story of Morris Bober, a grocer in postwar Brooklyn, who ""wants better"" for himself and his family. First two robbers appear and hold him up; then things take a turn for the better when broken-nosed Frank Alpine becomes his assistant. But there are complications: Frank, whose reaction to Jews is ambivalent, falls in love with Helen Bober; at the same time he begins to steal from the store. Like Malamud's best stories, this novel unerringly evokes an immigrant world of cramped circumstances and great expectations. Malamud defined the immigrant experience in a way that has proven vital for several generations of writers.","Notes from Underground White Nights The Dream of a Ridiculous Man and Selections from The House of the Dead. A collection of powerful stories by one of the masters of Russian literature, illustrating the author's thoughts on political philosophy, religion and above all, humanity: Notes from Underground, White Nights, The Dream of a Ridiculous Man, and Selections from The House of the Dead(150th Anniversary Edition) The compelling works presented in this volume were written at distinct periods in Dostoyevsky's life, at decisive moments in his groping for a political philosophy and a religious answer. From the primitive peasant who kills without understanding that he is destroying life to the anxious antihero of Notes from Underground--who both craves and despises affection--the writer's often-tormented characters showcase his evolving outlook on our fate. Thomas Mann described Dostoyevsky as ""an author whose Christian sympathy is ordinarily devoted to human misery, sin, vice, the depths of lust and crime, rather than to nobility of body and soul"" and Notes from Undergroundas ""an awe- and terro","The Tale of the Flopsy Bunnies. When the cupboard is bare at the Flopsy Bunny's burrow, the family all have to go in search of food. They soon find some old lettuces on Mr McGregor's rubbish heap, but who can imagine the horrors that await them as they enjoy a nap after lunch! Peter Rabbit and Benjamin Bunny are two of Beatrix Potter's most popular characters and they are brought together in this exciting tale of danger and friendship. The Tale of The Flopsy Bunnies is number ten in Beatrix Potter's series of 23 little books, the titles of which are as follows: 1 The Tale of Peter Rabbit 2 The Tale of Squirrel Nutkin 3 The Tailor of Gloucester 4 The Tale of Benjamin Bunny 5 The Tale of Two Bad Mice 6 The Tale of Mrs. Tiggy-Winkle 7 The Tale of Mr. Jeremy Fisher 8 The Tale of Tom Kitten 9 The Tale of Jemima Puddle-Duck 10 The Tale of the Flopsy Bunnies 11 The Tale of Mrs. Tittlemouse 12 The Tale of Timmy Tiptoes 13 The Tale of Johnny Town-Mouse 14 The Tale of Mr. Tod 15 The Tale of Pigling Bland 16 The Tale of Samuel","The Embarrassment of Riches: An Interpretation of Dutch Culture in the Golden Age. At the apogee of its powers in the seventeenth century, Holland was a tiny island of prosperity in a sea of want. Its homes were well-furnished and fanatically clean; its citizens feasted on 100-course banquets and speculated fortunes on new varieties of tulip. Yet, in the midst of plenty, the Dutch were ill at ease. In this brilliantly innovative book--which launched his reputation as one of our most perspicacious and stylish historians--Simon Schama explores the mysterious contradictions of a nation that invented itself from the ground up, attained an unprecedented level of affluence, and lived in dread of being corrupted by its happiness. Drawing on a vast array of period documents and sumptuously reproduced art, Schama re-creates, in precise and loving detail, a nation's mental furniture. He tells of bloody uprisings and beached whales, of the cult of hygiene and the plague of tobacco, of thrifty housewives and profligate tulip-speculators. He tells us how the Dutch celebrated them","This Alien Shore. Sheltered all her life in a corporate satellite in Earth's outer orbit, Jamisia must face the truth about her origins and her role in the power struggle between the Guerans who dominate intergalactic transportation and the rest of Earth's far-flung and genetically mutated colonies who are trying to break the Guera Guild's monopoly.","The Walking Dead Vol. 3: Safety Behind Bars. An epidemic of apocalyptic proportions has swept the globe, causing the dead to rise and feed on the living. In a matter of months, society has crumbled: there is no government, no grocery stores, no mail delivery, no cable TV. In a world ruled by the dead, we are forced to finally begin living. This volume follows our band of survivors as they set up a permanent camp inside a prison. Relationships change, characters die, and our team of survivors learn there's something far more deadly than zombies out there: each other.","A Christmas Memory. First published in 1956, this much sought-after autobiographical recollection of Truman Capote's rural Alabama boyhood has become a modern-day classic. We are proud to be reprinting this warm and delicately illustrated edition of A Christmas Memory--""a tiny gem of a holiday story"" (School Library Journal, starred review). Seven-year-old Buddy inaugurates the Christmas season by crying out to his cousin, Miss Sook Falk: ""It's fruitcake weather!"" Thus begins an unforgettable portrait of an odd but enduring friendship between two innocent souls--one young and one old--and the memories they share of beloved holiday rituals.","Eight Little Piggies: Reflections in Natural History. Among scientists who write, no one illuminates as well as Stephen Jay Gould doesthe wonderful workings of the natural world. Now in a new volume of collected essays--his sixth since Ever Since Darwin--Gould speaks of the importance of unbroken connections within our own lives and to our ancestralgenerations. Along with way, he opens to us the mysteries of fish tails, frog calls, and other matters, and shows once and for all why we must take notice when a seemingly insignificant creature is threatened, like the land snail Partulafrom Moorea, whose extinction he movingly relates.","Harpo Speaks!. ""This is a riotous story which is reasonably mad and as accurate as a Marx brother can make it. Despite only a year and a half of schooling, Harpo, or perhaps his collaborator, is the best writer of the Marx Brother. Highly recommended."" -Library Journal ""A funny, affectionate and unpretentious autobiography done with a sharply professional assist from Rowland Barber."" -New York Times Book Review","Tales from Margaritaville. Margaritaville may not appear on a map, but it does exist--at least in the brilliantly creative, sometimes slightly skewed imagination of Jimmy Buffett. Tales from Margaritavilleis a collection of short stories (some purely fiction, some based in truth) so vividly packed with restless dreamers, wild wanderers, and pure gypsy souls that just reading it is a wild adventure. Travel along with a cowboy named Tully Mars, as he heads from Heartache, Wyoming, to Graceland, and relive the autobiographical odyssey of a third-generation sailor and first-rate musical outlaw. With unforgettable stories that present the true roamer's twin loves--the sea and the road--Tales from Margaritavilleis one ""smooth sailing book of infinite imagination"" (Chicago Sun-Times).","Prince of Magic. Bewitched by Desire Disgracing her minister father by dancing barefoot in the moonlit forest, Elizabeth Penshurst is banished to her distant relatives in the wilds of Yorkshire. When she meets Gabriel Durham, who was expelled from the priesthood and shunned by his family, the spirited Elizabeth is intrigued by his brilliance and the mystery that surrounds him. She has no idea that her attraction will plunge her into a danger darker than any nightmare. Spellbound by Love Reclusive Gabriel Durham has forsaken worldly pleasures in pursuit of solitude. In a ruined abbey, he devotes his days to the magic of ancient religions--and his nights to forbidden dreams of Elizabeth. But when he learns that a clandestine Druid cult will sacrifice her, he is compelled to risk everything to save her--and surrender to the destiny that awaits him.",Harrowing the Dragon.,"El príncipe de la niebla (Trilogía de la Niebla #1). Un diabolico principe que concede cualquier deseo... a un alto precio. El nuevo hogar de los Carver esta rodeado de misterio. En el aun se respira el espiritu de Jacob, el hijo de los antiguos propietarios, que murio ahogado. Las extranas circunstancias de esa muerte solo empiezan a aclararse con la aparicion de un diabolico personaje: el Principe de la Niebla.","Dragon's Eye. Tales of the fabulous dragon fill the legends and lore of all peoples, all times. Now the author of the popular Warlock series looks into the Dragon's Eye--and shows how the world looks through the Dragon's Eye. Includes works by Mike Resnick, Jody Lynn Nye, S.M. Stirling, and others.","The Portable Dorothy Parker. The second revision in sixty years, this sublime collection ranges over the verse, stories, essays, and journalism of one of the twentieth century's most quotable authors. For this new twenty-first-century edition, devoted admirers can be sure to find their favorite verse and stories. But a variety of fresh material has also been added to create a fuller, more authentic picture of her life's work. There are some stories new to the Portable, ""Such a Pretty Little Picture,"" along with a selection of articles written for such disparate publications as Vogue, McCall's, House and Garden, and New Masses. Two of these pieces concern home decorating, a subject not usually associated with Mrs. Parker. At the heart of her serious work lies her political writings-racial, labor, international-and so ""Soldiers of the Republic"" is joined by reprints of ""Not Enough"" and ""Sophisticated Poetry-And the Hell With It,"" both of which first appeared in New Masses. ""A Dorothy Parker Sampler"" blends the subli","Treasury of American Tall Tales: Volume 1: Davy Crockett Rip Van Winkle Johnny Appleseed Paul Bunyan (Rabbit Ears). The Rabbit Ears Treasury of American Tall Talesfeatures the larger-than-life characters of America's favorite folk stories--read by your favorite stars and featuring original music by some of today's greatest artists. Davy Crockett Read by Nicolas Cage Original Music by David Bromberg Follow the escapades of America's ultimate backwoods hero as he travels the frontier in his trademark coonskin cap in search of adventure and brags his way into history at the Battle of the Alamo. Rip Van Winkle Read by Anjelica Huston Original Music by Jay Ungar and Molly Mason This Washington Irving classic tells the story of likeable but lazy Rip Van Winkle, who shared a strange brew with some mysterious strangers and fell into a deep sleep for 20 years. He discovers when he finally wakes that things are considerably different than he remembers, providing a cautionary tale about making the most of life. Johnny Appleseed Read by Garrison Keillor Original Music by Mark O'Connor Here is the touching tale",Killing the Imposter God: Philip Pullman's Spiritual Imagination in His Dark Materials.,"Dragonsong (Pern: Harper Hall #1). Journey to the wonder-filled world of Pern in the first volume of Anne McCaffrey's best-selling Harper Hall Trilogy. Dragonsong is the spellbinding tale of Menolly of Half Circle Hold, a brave young girl who flees her seaside village and discovers the legendary fire lizards of Pern. All her life, Menolly has longed to learn the ancient secrets of the Harpers, the master musicians of Harper Hall. When her stern father denies her the chance to make her dream come true, Menolly runs away from home. Hiding in a cave by the sea, she finds nine magical fire lizards who join her on a breathtaking journey to Harper Hall. Anne McCaffrey's enchanting tales of Pern, with all their colorful dragons and fantastic characters, have won her millions of fans around the world. The winner of the Hugo and Nebula Award, she is one of the best-loved writers in all of fantasy literature. (c)1976 Anne McCaffrey; (P)1992 Recorded Books","The More Than Complete Hitchhiker's Guide (Hitchhiker's Guide #1-4 + short story). Includes an essay entitled ""Introduction: A Guide to the Guide,"" the complete texts of The Hitchhiker's Guide to the Galaxy; The Restaurant at the End of the Universe; Life, the Universe and Everything;and So Long, and Thanks for All the Fish,as well as the short story ""Young Zaphod Plays It Safe.""","Candide and Other Stories (World's Classics). Candide is the most famous of Voltaire's ""philosophical tales,"" in which he combined witty improbabilities with the sanest of good sense. First published in 1759, it was an instant bestseller and has come to be regarded as one of the key texts of the Enlightenment. What Candide does for chivalric romance, the other tales in this selection--Micromegas, Zadig, The Ingenu, and The White Bull--do for science fiction, the Oriental tale, the sentimental novel, and the Old Testament. The most extensive one-volume selection currently available, this new edition includes a new verse translation of the story Voltaire based on Chaucer's The Wife of Bath's Tale: What Pleases the Ladies and opens with a revised introduction that reflects recent critical debates, including a new section on Candide.",Trojan Women / Iphigenia Among the Taurians / Ion.,Gulliver's Travels.,"Critique of Pure Reason. Like Werner Pluhar's distinguished translation of reflects the elegant achievement of a master translator. This richly annotated volume offers translations of the complete texts of both the first and second editions, as well as Kant's own notes. Extensive editorial notes by Werner Pluhar and James Ellington supply explanatory and terminological comments, translations of Latin and other foreign expressions, variant readings, cross-references to other passages in the text and in other writings of Kant, and references to secondary works. An extensive bibliography, glossary, and detailed index are included. Patricia Kitcher's illuminating Introduction provides a roadmap to Kant's abstract and complex argumentation by firmly locating his view in the context of eighteenth-century--and current--attempts to understand the nature of the thinking mind and its ability to comprehend the physical universe.","Penguin Book Of Norse Myths: Gods Of The Vikings. The Scandinavian myths form a linked chain of stories, creating a mighty, fantastical world teeming with gods and goddesses, master-smiths and magicians. This book reveals a dynamic culture in which is reflected the Norseman's spirit and confidence, his ruthlessness and cruelty, arrogance and generosity.","Spring's Awakening. Spring's Awakening is a tragi-comedy of teenage sex. Its fourteen-year-old heroine, Wendla, is killed by abortion pills. The young Moritz, terrorized by the world around him, and especially by his teachers, shoots himself. The ending seems likely to be the suicide of Moritz's friend, Melchior, but in a confrontation with a mysterious stranger (the famous Masked Man) he finally manages to shed his illusions and face the consequences.","An Evening of Long Goodbyes. Charles Hythloday observes the world from the comfortable confines of his family estate, and doesn't much care for what he sees. At twenty-four, Charles aims to resurrect the lost lifestyle of the aristocratic country gentleman. But Charles's cozy existence is about to face a serious shake-up. With the family fortune teetering in the balance, Charles must do something he swore he would never do: get a job. Booted into the mean streets of Dublin, he is as unprepared for real life. And it turns out that real life is a tad unprepared for Charles, as well.",Museo: Textos Ineditos.,"Because the Night (Lloyd Hopkins #2). A botched liquor store heist leaves three grisly dead. A hero cop is missing. Nobody could see a pattern in these two stray bits of information-no one except Detective Sergeant Lloyd Hopkins, a brilliant and disturbed L.A. cop with an obsessive desire to protect the innocent. To him they lead to one horrifying conclusion--a killer is on the loose and preying on his city. From the master of L.A. noir comes this beautiful and brutal tale of a cop and a criminal squared off in a life and death struggle.","River Of Ruin (Philip Mercer #5). In the heart of Panama, a volcanic lake feeds a serpentine river--its stone banks laid by the Inca, who took back the gold and jewels plundered from them by the conquistadors. Legend has it that the Twice-Stolen Treasure has been buried for centuries in the Panamanian jungle. Discovering it means surviving the unpredictable black waters of the River of Ruin.... It begins at a Paris auction house, with a favor granted by an old high school friend to geologist Philip Mercer: the opportunity to buy a rare diary written during the French attempt at digging the Panama Canal. But Mercer isn't the only one who wants it. Three Chinese assassins have been dispatched to get it, forcing Mercer into a subterranean game of cat and mouse that takes him from the hellish maze of l'empire de la mort and through the sewers of Paris. Mercer realizes he has uncovered an intricate Chinese plot to trigger a deadly shift in the world's balance of power. At stake is control of the canal, recently handed over","Baltasar and Blimunda. From the recipient of the 1998 Nobel Prize in Literature, a ""brilliant...enchanting novel"" (New York Times Book Review) of romance, deceit, religion, and magic set in eighteenth-century Portugal at the height of the Inquisition. National bestseller. Translated by Giovanni Pontiero. When King and Church exercise absolute power what happens to the dreams of ordinary people? In early eighteenth century Lisbon, Baltasar, a soldier who has lost a hand in battle, falls in love with Blimunda, a young girl with visionary powers. From the day that he follows her home from the auto-da-fe where her mother is condemned and sent into exile, the two are bound body and soul by a love of unassailable strength. A third party shares their supper that evening: Padre Bartolemeu Lourenco, whose fantasy is to invent a flying machine. As the inquisition rages and royalty and religion clash, they pursue his impossible, not to mention heretical, dream of flight.","The Princess of the Chalet School. When Madge Bettany decides to start a school in the Austrian Alps, little does she realize how such a small idea will so completely change her life. Another term and the arrival of a European princess adds an extra touch of the exotic to the Chalet School. The need to make Princess Elisaveta of Belsornia feel welcome brings out the best in Joey Bettany, but she never dreamed that she would have to save the life of her royal chum. A less welcome arrival is the new matron, who quickly becomes thoroughly unpopular with pupils and teachers alike. She will not last for long at the Chalet School ... Joey has to be at her most resourceful to save her friend from the dastardly Prince Cosimo; her brave deeds make for compelling reading in the kidnap drama which climaxes 'The Princess of the Chalet School'. Elinor Brent-Dyer is in vintage form in the third of her Chalet School adventures.","Shopgirl. One of the most acclaimed and beloved entertainers, Steve Martin is quickly becoming recognized as a gorgeous writer capable of being at once melancholy and tart, achingly innocent and astonishingly ironic (Elle). A frequent contributor to both The New Yorkerand the New York Timesas well as the author of the New York Timesbestseller Pure Drivel, Martin is once again poised to capture the attention of readers with his debut novella, a delightful depiction of life and love. The shopgirl is Mirabelle, a beautiful aspiring artist who pays the rent by selling gloves at the Beverly Hills Neiman Marcus. She captures the attention of Ray Porter, a wealthy, lonely businessman. As Ray and Mirabelle tentatively embark on a relationship, they both struggle to decipher the language of love--with consequences that are both comic and heartbreaking. Filled with the kind of witty, discerning observations that have brought Steve Martin incredible critical success, Shopgirlis a work of disarming tenderne","The Street Lawyer. Michael was in a hurry. He was scrambling up the ladder at Drake & Sweeney, a giant D.C. law firm with eight hundred lawyers. The money was good and getting better; a partnership was three years away. He was a rising star with no time to waste, no time to stop, no time to toss a few coins into the cups of panhandlers. No time for a conscience. But a violent encounter with a homeless man stopped him cold. Michael survived; his assailant did not. Who was this man? Michael did some digging, and learned that he was a mentally ill veteran who'd been in and out of shelters for many years. Then Michael dug a little deeper, and found a dirty secret, and the secret involved Drake & Sweeney. The fast track derailed; the ladder collapsed. Michael bolted the firm and took a top-secret file with him. He landed in the streets, an advocate for the homeless, a street lawyer. And a thief. From the Hardcover edition.","Brave New World. Far in the future, the World Controllers have created the ideal society. Through clever use of genetic engineering, brainwashing and recreational sex and drugs, all its members are happy consumers. Bernard Marx seems alone harbouring an ill-defined longing to break free. A visit to one of the few remaining Savage Reservations, where the old, imperfect life still continues, may be the cure for his distress... Huxley's ingenious fantasy of the future sheds a blazing light on the present and is considered to be his most enduring masterpiece.","Into the Woods (De Beers #4). Her life would never be the same once she ventured... INTO THE WOODS The only child of a U.S. naval officer father and a charming mother, Grace Houston is the center of her parents' universe -- until sudden tragedy tears her world apart. Now Grace and her mother, Jackie Lee, move from the naval base in Virginia to ritzy Palm Beach, Florida, to start all over again. It's hard enough being the new girl -- but Grace is enrolled at a prestigious private school where what you wear is more important than who you are. Now her own mother is pressuring her to do whatever it takes to be accepted by the in-crowd. But Grace just wants to close her eyes and disappear.... Soon Jackie Lee marries a sophisticated millionaire, Winston Montgomery, who is her ticket to high society. But happiness once again vanishes into the shadows...and it's not long before the young and dashing Kirby Scott works his way into Jackie Lee's life. He's got his eye on her newly inherited fortune -- and something much more","The Monk Who Sold His Ferrari: A Fable about Fulfilling Your Dreams and Reaching Your Destiny (Revised). El monje que vendio su Ferran es la sugerente y emotiva historia de Julian Mantle, un superabogado cuya vida estresante, desequilibrada y obsesionada con el dinero acaba provocandole un infarto. Ese desastre provoca en Julian una crisis espiritual que le lleva a enfrentarse a las grandes cuestiones de la vida. Esperando descubrir los secretos de la felicidad y el esclarecimiento, emprende un extraordinario viaje por el Himalaya para conocer una antiquisima cultura de hombres sabios. Y alli descubre un modo de vida mas gozoso, asi como un metodo que le permite liberar Iodo su potencial y vivir con pasion, determinacion y paz. Escrito a modo de fabula, este libro contiene una serie de sencillas y eficaces lecciones para mejorar nuestra manera de vivir. Vigorosa fusion de la sabiduria espiritual de Oriente con los principios del exito occidentales, muestra paso a paso como vivir con mas coraje, alegria, equilibrio y satisfaccion. ""Una cautivadora historia que ensena y deleita al mismo tie",The Amen Corner.,The Best American Sports Writing 2006.,"Postmortem (Kay Scarpetta #1). Under cover of night in Richmond, Virginia, a human monster strikes, leaving a gruesome trail of stranglings that has paralyzed the city. Medical examiner Kay Scarpetta suspects the worst: a deliberate campaign by a brilliant serial killer whose signature offers precious few clues. With an unerring eye, she calls on the latest advances in forensic research to unmask the madman. But this investigation will test Kay like no other, because it's being sabotaged from within--and someone wants her dead.","Racso and the Rats of NIMH (Rats of NIMH #2). 'Racso, a brash and boastful little rodent, is making his way to Thorn Valley, determined to learn how to read and write and become a hero. His bragging and lies get him off to a bad start, but a crisis gives him the opportunity to prove his mettle. A worthy successor [to Mrs. Frisby and the Rats of NIMH, a Newbery Medal winner by the author's father].' 'BL. 1986 Children's Editors' Choices (BL) Children's Choices for 1987 (IRA/CBC) Notable 1986 Childrens' Trade Books in Social Studies (NCSS/CBC) 1986 Children's Books (NY Public Library) Best Science Fiction/Fantasy 1986 (VOYA)","The Memory of Whiteness: A Scientific Romance. In 3229 A.D., human civilization is scattered among the planets, moons, and asteroids of the solar system. Billions of lives depend on the technology derived from the breakthroughs of the greatest physicist of the age, Arthur Holywelkin. But in the last years of his life, Holywelkin devoted himself to building a strange, beautiful, and complex musical instrument that he called The Orchestra. Johannes Wright has earned the honor of becoming the Ninth Master of Holywelkin's Orchestra. Follow him on his Grand Tour of the Solar System, as he journeys down the gravity well toward the sun, impelled by a destiny he can scarcely understand, and is pursued by mysterious foes who will tell him anything except the reason for their enmity.",Pure and Simple: The Extraordinary Teachings of a Thai Buddhist Laywoman.,"Dark Rivers of the Heart / Sole Survivor / Intensity. Dean Koontz is one of the world's top-selling authors with total worldwide sales of his novels at 225 million copies! He achieves what few writers can: he creates books that consistently jump to the top of the bestseller lists in both hardcover and paper. His newest novel had a half-million copy first printing, and it went straight to the Number One position in its first week on The New York Times and Publishers Weekly Bestseller lists! His many fans will snap up this handsome foil-and-embossed volume, with three of his best works in one book. The perfect impulse buy or gift. The collection includes the complete and unabridged novels Dark Rivers of the Heart, Intensity, and Sole Survivor.","The Avignon Quintet: Monsieur Livia Constance Sebastian and Quinx. Rich in invention, psychological truth and sheer entertainment, the five short novels that comprise The Avignon Quintetform one of the key works of an undisputed modern master. 'Another constellation of Mediterranean mysteries and memories. This time it is not Alexandria, but Avignon: the old kingdom of the Popes, the capital of the ancient South of France, the heart of legendary Provence . . . The evocation of all of this is superb . . . Our old guide bleu in vintage form.' The Times","Hush! A Thai Lullaby. FOR USE IN SCHOOLS AND LIBRARIES ONLY. A lullaby which asks animals such as a lizard, monkey, and water-buffalo to be quiet and not disturb the sleeping baby.","The Captain's Verses. New Directions celebrates the Pablo Neruda Centennial. In celebration of the 100th anniversary of Pablo Neruda's birth, New Directions is pleased to announce the reissue of a classic work in a timeless translation by Donald D. Walsh and fully bilingual. The Captain's Verseswas first published anonymously in 1952, some years before Neruda married Matilde Urrutia - the one with ""the fire / of an unchained meteor"" - to whom he had addressed these poems of love, ecstasy, devotion, and fury. Our bilingual edition is seen by many as the most intimate and passionate volume of Neruda's love poetry, capturing all the erotic energy of a new love.","Yakitate!! Japan Volume 6. Kazuma's Ja-pan 44 may be the greatest Ja-pan yet! A bread so mind-bogglingly delicious it borders on the sublime, Kazuma's heavenly creation sends the Pantasia Rookie Tournament judges Kuroyanagi and Dave straight to cloud nine. If Kazuma's new recipe is quite literally to die for, does this mean he advances to the next round, or is the competition over?!","Berlin Blues. It's 1989 and, whenever he isn't hanging out in the local bars, Herr Lehmann lives entirely free of responsibility in the bohemian Berlin district of Kreuzberg. Through years of judicious sidestepping and heroic indolence, this barman has successfully avoided the demands of parents, landlords, neighbours and women. But suddenly one unforeseen incident after another seems to threaten his idyllic and rather peaceable existence. He has an encounter with a decidedly unfriendly dog, his parents threaten to descend on Berlin from the provinces, and he meets a dangerously attractive woman who throws his emotional life into confusion. Berlin Blues is a richly entertaining evocation of life in the city and a classic of modern-day decadence.","Novels and Stories. When she died in poverty and obscurity in 1960, all of Zora Neale Hurston'sbooks were out of print. Today her groundbreaking works, suffused with the culture and traditions of African-Americans and the poetry of black speech, have won her recognition as one of the most significant African-American writers. This volume, with its companion, Zora Neale Hurston: Folklore, Memoirs & Other Writingsbrings together for the first time all of Hurston's best writings in one authoritative set. ""Folklore is the arts of the people,"" Hurston wrote, ""before they find out that there is any such thing as art.""",JoJo's Bizarre Adventure Vol. 7 (Stardust Crusaders #7).,"Cyclops / Alcestis / Medea. Euripides of Athens (ca. 485-406 BCE), famous in every age for the pathos, terror, surprising plot twists, and intellectual probing of his dramatic creations, wrote nearly ninety plays. Of these, eighteen (plus a play of unknown authorship mistakenly included with his works) have come down to us from antiquity. In this first volume of a new Loeb Classical Library edition of Euripides, David Kovacs gives us a freshly edited Greek text of three plays and an accurate and graceful translation with explanatory notes. The volume begins with Cyclops, a satyr play--the only complete example of this genre to survive. Alcestis is the story of a woman who agrees, in order to save her husband's life, to die in his place. Medea is a tragedy of revenge in which Medea kills her own children, as well as their father's new wife, to punish him for his desertion. Each play is preceded by an introduction. In a General Introduction, Kovacs demonstrates that the biographical tradition about Euripides--parts","Little Women. Growing up in New England during the Civil War, the March sisters share everything- their joys, and troubles, their loves and secrets. But the four girls couldn't be more different. Meg, the oldest, is the sensible writer. Jo is funny and mischievous. Beth is the shy, dreamy one, and Amy is pretty and artistic. From dances to despairs, through weddings and funerals, the March girls stand as sisters. This is one family you will never forget.",X/1999 Volume 02: Overture.,"A Christmas Carol and Other Christmas Books. A Christmas Carolhas gripped the public imagination since it was first published in 1843, and it is now as much a part of the holiday season as is mistletoe or Santa's reindeer. Here is a wonderful collection of Dickens' Christmas stories, graced with many of the original drawings that appeared in the first edition. Pride of place goes to A Christmas Carol, of course, but the book also includes four other marvelous tales: The Chimes, The Cricket on the Hearth, The Battle of Life, and The Haunted Man. All five stories show Dickens at his unpredictable best, jumbling together comedy and melodrama, genial romance and urgent social satire. The volume also features an excellent introduction by Robert Douglas-Fairhurst, who offers invaluable background to the Christmas stories, illuminating the social questions they address, outlining their reception and the enduring popularity of A Christmas Caroland highlighting how their style and themes resonate in more complex ways in his major fictions","The Thrill of Victory. A love story, where betrayal is only a heartbeat away from desire, and love can be found in the most unexpected of places.",Potshot (Spenser #28).,The Illustrated Stephen King Trivia Book.,"Lectures on the History of Philosophy 1: Greek Philosophy to Plato. G. W. F. Hegel (1770-1831), the influential German philosopher, believed that human history was advancing spiritually and morally according to God's purpose. At the beginning of this masterwork, Hegel writes: ""What the history of Philosophy shows us is a succession of noble minds, a gallery of heroes of thought, who, by the power of Reason, have penetrated into the being of things, of nature and of spirit, into the Being of God, and have won for us by their labours the highest treasure, the treasure of reasoned knowledge."" In his introduction to this Bison Book edition, Frederick C. Beiser notes the complex and controversial history of Hegel's text. He makes a case that this English-language translation by E. S. Haldane and Frances H. Simson is still the most reliable one.","Dirty Italian: Everyday Slang from ""What's Up?"" to ""F*%# Off!"".","The Control of Nature. While John McPhee was working on his previous book, Rising from the Plains, he happened to walk by the engineering building at the University of Wyoming, where words etched in limestone said: ""Strive on--the control of Nature is won, not given."" In the morning sunlight, that central phrase--""the control of nature""--seemed to sparkle with unintended ambiguity. Bilateral, symmetrical, it could with equal speed travel in opposite directions. For some years, he had been planning a book about places in the world where people have been engaged in all-out battles with nature, about (in the words of the book itself) ""any struggle against natural forces--heroic or venal, rash or well advised--when human beings conscript themselves to fight against the earth, to take what is not given, to rout the destroying enemy, to surround the base of Mt. Olympus demanding and expecting the surrender of the gods."" His interest had first been sparked when he went into the Atchafalaya--the largest river swamp","Summer of Night (Seasons of Horror #1). It's the summer of 1960 in Elm Haven, Illinois, and five 12-year old boys are forming the bonds that a lifetime of changes will never erase. But then a dark cloud threatens the bright promise of summer vacation: on the last day of school, their classmate Tubby Cooke vanishes. Soon, the group discovers stories of other children who once disappeared from Elm Haven. And there are other strange things happening in town: unexplained holes in the ground, a stranger dressed as a World War I soldier, and a rendering-plant truck that seems to be following the five boys. The friends realize that there is a terrible evil lurking in Elm Haven...and they must be the ones to stop it.","The Cat in the Hat and Other Dr. Seuss Favorites. 11 complete stories at a great price! Featuring: The Cat in the Hatread by Kelsey Grammer Horton Hears a Whoread by Dustin Hoffman How the Grinch Stole Christmasread by Walter Matthau Did I Ever Tell You How Lucky You Are?read by John Cleese The Loraxread by Ted Danson Yertle the Turtle, Gertrude McFuzz, and The Big Bragread by John Lithgow Thidwick, the Big-Hearted Mooseread by Mercedes McCambridge Horton Hatches the Eggread by Billy Crystal The Cat in the Hat Comes Backread by Kelsey Grammer",Raising the Bar: Ministry to Youth in the New Millennium.,The Decline and Fall of the Roman Empire.,"The Great Gatsby. The late Alexander Scourby's voice is so resonant with images of the past that now when we hear his artful interpretations (at least, we older folks), we feel we are traveling familiar roads. After all, he helped define the audiobook age. As with all great narrators, Scourby has an actor's sensibilities. His rendition of Fitzgerald's most popular novel, recorded many years back, thus has been lauded, and rightly so. Scourby understands Nick Carraway's sympathetic telling of the inescapability of the past and the improbability of finding love and honor, even for the privileged classes, a truth that has assured Americans for decades that the wealthy suffer, too. Still, a latent sadness pervades this narration: Somehow Scourby makes us feel that we all have lost Daisy, and that Gatsby deserved better.","Heart of the Sea (Gallaghers of Ardmore #3). The breathtaking conclusion to the New York Times bestselling trilogy that began with Jewels of the Sun and Tears of the Moon... Darcy Gallagher has always believed in the pull of fate, the magic of legend... and the importance of money. She longs to find a rich man who will sweep her away - into a world filled with glamour and adventure, and the exotic life that is her destiny... A wealthy businessman with Irish blood, Trevor Magee has come to Ardmore to build a theater - and uncover the secrets hidden in his family's past. He thought he had given up on love long ago, but Darcy Gallagher tempts him like no woman ever has. She's gorgeous, intelligent, and she knows what she wants - and he's more than willing to give it to her. But as their mutual attraction flares into passion, they look into their hearts - and find out what happens when you truly believe...",Theogonia Opera et Dies Scutum Fragmenta Selecta (Classical Texts).,"Around the World in Eighty Days. Jules Verne's career as a novelist began in 1863, when he struck a new vein in fiction-stories that combined popular science and exploration. In Around the World in Eighty Days, Phileas Fogg rashly bets his companions PS20,000 that he can travel around the entire globe in just eighty days, and he is determined not to lose. Breaking the well-established routine of his daily life, the reserved Englishman immediately sets off for Dover, accompanied by his hot-blooded French manservant, Passepartout. Traveling by train, steamship, sailboat, sledge, and even elephant, they must overcome storms, kidnappings, natural disasters, Sioux attacks, and the dogged Inspector Fix of Scotland Yard to win the extraordinary wager. Combining exploration, adventure, and a thrilling race against time, Around the World in Eighty Daysgripped audiences upon its publication and remains hugely popular to this day.","How to Build a Time Machine. According to the laws of physics, time travel is possible, albeit a little troublesome and, because time is money, financially rather stretching. Physicist Paul Davies, shows how it can be done - without breaking the laws of physics and without any earth-shattering paradoxes - in this concise, step-by-step guide, illustrated throughout with explanatory diagrams. With the help of a handy black hole, or even better, a wormhole, and a bit of luck, this mode of travel could yet be a viable option.",The Feelings Book: The Care & Keeping of Your Emotions. This companion to The Care and Keeping of Youhelps girls understand their emotions and learn to deal with them.,"Hunger. One of the most important and controversial writers of the 20th century, Knut Hamsun made literary history with the publication in 1890 of this powerful, autobiographical novel recounting the abject poverty, hunger and despair of a young writer struggling to achieve self-discovery and its ultimate artistic expression. The book brilliantly probes the psychodynamics of alienation and obsession, painting an unforgettable portrait of a man driven by forces beyond his control to the edge of self-destruction. Hamsun influenced many of the major 20th-century writers who followed him, including Kafka, Joyce and Henry Miller. Required reading in world literature courses, the highly influential, landmark novel will also find a wide audience among lovers of books that probe the ""unexplored crannies in the human soul"" (George Egerton).","Velocity. Dean Koontz's unique talent for writing terrifying thrillers with a heart and soul is nowhere more evident than in this latest suspense masterpiece that pits one man against the ultimate deadline. If there were speed limits for the sheer pulse-racing excitement allowed in one novel, ""Velocity"" would break them all. Get ready for the ride of your life. Velocity Bill Wile is an easygoing, hardworking guy who leads a quiet, ordinary life. But that is about to change. One evening, after his usual eight-hour bartending shift, he finds a typewritten note under the windshield wiper of his car. ""If you don't take this note to the police and get them involved, I will kill a lovely blond schoolteacher. If you do take this note to the police, I will instead kill an elderly woman active in charity work. You have four hours to decide. The choice is yours. "" It seems like a sick joke, and Bill's friend on the police force, Lanny Olson, thinks so too. His advice to Bill is to go home and forget about","Underworld. A finalist for the National Book Award, Don DeLillo's most powerful and riveting novel--""a great American novel, a masterpiece, a thrilling page-turner"" (San Francisco Chronicle)--Underworldis about the second half of the twentieth century in America and about two people, an artist and an executive, whose lives intertwine in New York in the fifties and again in the nineties. With cameo appearances by Lenny Bruce, J. Edgar Hoover, Bobby Thompson, Frank Sinatra, Jackie Gleason and Toots Shor, ""this is DeLillo's most affecting novel...a dazzling, phosphorescent work of art"" (Michiko Kakutani, The New York Times).","The Farming of Bones. The Farming of Bonesbegins in 1937 in a village on the Dominican side of the river that separates the country from Haiti. Amabelle Desir, Haitian-born and a faithful maidservant to the Dominican family that took her in when she was orphaned, and her lover Sebastien, an itinerant sugarcane cutter, decide they will marry and return to Haiti at the end of the cane season. However, hostilities toward Haitian laborers find a vitriolic spokesman in the ultra-nationalist Generalissimo Trujillo who calls for an ethnic cleansing of his Spanish-speaking country. As rumors of Haitian persecution become fact, as anxiety turns to terror, Amabelle and Sebastien's dreams are leveled to the most basic human desire: to endure. Based on a little-known historical event, this extraordinarily moving novel memorializes the forgotten victims of nationalist madness and the deeply felt passion and grief of its survivors.","Theories of Relativity. My fingers search the cardboard container, but I've finished the fries. I squirt ketchup on my fingers and lick it off. I'm never full. I think it was one of the reasons I had to leave, or, rather, my mother kicked me out. Jenna's a runaway, but I'm a throwaway. Tossed out. Like garbage. Keep your wits about you. Check your back. Do what it takes to survive on the streets. Dylan is living on the streets not through any choice of his own, unlike some of the teenagers he meets in the same situation. He's been cut loose by his unstable mother, and lost most contact with his two younger brothers. He has nothing but his backpack stuffed with a few precious belongings and the homeless kids he meets. At least he has his theories. No one can take those away from him. Like how every fourth person throws him spare change; how no one does anything for anyone without a price; and how he just might be able to find a place in this complicated world. Disturbing, gritty, painful, hopeful--this is a s",The Making Of Disney's Animal Kingdom Theme Park. Book details the planning and development of Disney's Animal Kingdom and allows you to take a thrilling and exclusive behind-the-scenes tour with stories from those worked to turn dream of a new type of theme park into a reality.,"The Long Dark Tea-Time of the Soul (Dirk Gently #2). When a passenger check-in desk at London's Heathrow Airport disappears in a ball of orange flame, the explosion is deemed an act of God. But which god, wonders holistic detective Dirk Gently? What god would be hanging around Heathrow trying to catch the 3:37 to Oslo? And what has this to do with Dirk's latest--and late-- client, found only this morning with his head revolving atop the hit record ""Hot Potato""? Amid the hostile attentions of a stray eagle and the trauma of a very dirty refrigerator, super-sleuth Dirk Gently will once again solve the mysteries of the universe...","The Power of Now: A Guide to Spiritual Enlightenment. Eckhart Tolle's message is simple: living in the now is the truest path to happiness and enlightenment. And while this message may not seem stunningly original or fresh, Tolle's clear writing, supportive voice and enthusiasm make this an excellent manual for anyone who's ever wondered what exactly ""living in the now"" means. Foremost, Tolle is a world-class teacher, able to explain complicated concepts in concrete language. More importantly, within a chapter of reading this book, readers are already holding the world in a different container--more conscious of how thoughts and emotions get in the way of their ability to live in genuine peace and happiness.Tolle packs a lot of information and inspirational ideas into The Power of Now. (Topics include the source of Chi, enlightened relationships, creative use of the mind, impermanence and the cycle of life.) Thankfully, he's added markers that symbolise ""break time"". This is when readers should close the book and mull over what they just",The World of Mr. Mulliner.,Return to the Planet of the Apes #2: Escape from Terror Lagoon.,"John Adams. The enthralling, often surprising story of John Adams, one of the most important and fascinating Americans who ever lived. In this powerful, epic biography, David McCullough unfolds the adventurous life-journey of John Adams, the brilliant, fiercely independent, often irascible, always honest Yankee patriot -- ""the colossus of independence,"" as Thomas Jefferson called him -- who spared nothing in his zeal for the American Revolution; who rose to become the second President of the United States and saved the country from blundering into an unnecessary war; who was learned beyond all but a few and regarded by some as ""out of his senses""; and whose marriage to the wise and valiant Abigail Adams is one of the moving love stories in American history. Like his masterly, Pulitzer Prize-winning biography Truman, David McCullough's John Adams has the sweep and vitality of a great novel. It is both a riveting portrait of an abundantly human man and a vivid evocation of his time, much of it drawn","One Two Buckle My Shoe (Hercule Poirot #23). A dentist's suspicious death leads Poirot to drill the good doctor's patients, partners, lovers, and friends. From the Publisher: What reason would an amiable dentist like Dr. Morely have for committing suicide? He didn't have emotional difficulties, money problems, or love trouble. What he did have was an appointment with Hercule Poirot, who is not persuaded by the suicide story and has therefore taken it upon himself to questions the good doctor's patients, partners, and friends. All he's come up with is the numbing fear that Dr. Morely wasn't an unlikely victim at all. Nor the first.","Identity and Violence: The Illusion of Destiny. In this sweeping philosophical work, Amartya Sen proposes that the murderous violence that has riven our society is driven as much by confusion as by inescapable hatred. Challenging the reductionist division of people by race, religion, and class, Sen presents an inspiring vision of a world that can be made to move toward peace as firmly as it has spiraled in recent years toward brutality and war.","The Hungry Tide. A contemporary story of adventure, history, and identity by acclaimed author Amitav Ghosh. Off the easternmost corner of India, in the Bay of Bengal, lies the immense labyrinth of tiny islands known as the Sundarbans, where settlers live in fear of drowning tides and man-eating tigers. Piya Roy, a young American marine biologist of Indian descent, arrives in this lush, treacherous landscape in search of a rare species of river dolphin and enlists the aid of a local fisherman and a translator. Together the three of them launch into the elaborate backwaters, drawn unawares into the powerful political undercurrents of this isolated corner of the world that exact a personal toll as fierce as the tides.","La princesa prometida. La bella Buttercup jura amor eterno a Westley, que parte en busca de fortuna y es asesinado por unos piratas. La doncella, obligada, se promete al principe Humperdinck de Florin, un bellaco al que solo le interesa la caza. Esta obra reune todos los elementos clasicos de los grandes relatos ambientados en un mundo de fantasia medieval, imprimiendoles su fino sentido del humor. Sus personajes representan a todos los heroes y villanos de nuestros cuentos de infancia para rendir homenaje a la novela de aventuras.",The Art of War.,Changeling Storytellers Guide.,The Riverside Chaucer.,"Bleak House. Bleak House is a novel by Charles Dickens, published in 20 monthly installments between March 1852 and September 1853. It is held to be one of Dickens's finest novels, containing one of the most vast, complex and engaging arrays of minor characters and sub-plots in his entire canon. At the novel's core is long-running litigation in England's Court of Chancery, Jarndyce v Jarndyce, which has far-reaching consequences for all involved. The litigation, which already has taken many years and consumed between PS60,000 and PS70,000 in court costs, is emblematic of the failure of Chancery. Though Chancery lawyers and judges criticised Dickens's portrait of Chancery as exaggerated and unmerited, his novel helped to spur an ongoing movement that culminated in the enactment of legal reform in the 1870s.",The Picture of Dorian Gray. The wish spoken by Dorian Gray as he looks at his portrait forms the basis of the plot of this story of a gilded and spoilt hedonist who is willing to sell his soul for his beauty.,"King Lear. King Lear, growing old and too tired to reign, decides to divide his realm amongst his three daughters, leaving the largest share to the one who loves him the most. His two eldest daughters, Goneril and Regan, foolish and deceitful children, are rewarded for their insincere flattery. His youngest daughter, Cordelia, however, speaks honestly and truthfully, which enrages the old king. He disinherits Cordelia, and then drives himself to madness, left to wander the heath with only his Fool, his servant Caius, and the madman Tom O'Bedlam for company. Once reunited with Cordelia, Lear is too late repents his rashness, and must face the tragic consequences of his choices.","Strange Attractors. Recent high school graduate Max is looking forward to his visit to Mercury Labs, an honor for top science students, when his mother tells him he's already been there--yesterday. Then Eve, the daughter of the Lab's top scientist, Dr. Sylvan, calls Max and asks him to return what he took from the Lab. But Max doesn't remember anything at all, and discovers that there are two Eves and two Dr. Sylvans. Which ones are real and which are imposters? What does Dr. Sylvan's work on the chaotic bifurcation graph have to do with time travel? - Publishers Weekly","Speaker for the Dead (Ender's Saga #2). In the aftermath of his terrible war, Ender Wiggin disappeared, and a powerful voice arose: the Speaker for the Dead, who told of the true story of the Bugger War. Now long years later, a second alien race has been discovered, but again the aliens' ways are strange and frightening...again, humans die. And it is only the Speaker for the Dead, who is also Ender Wiggin the Xenocide, who has the courage to confront the mystery...and the truth.",Sukhoi Su-27 Flanker (WarbirdTech #42).,"How Do You Lose Those Ninth-grade Blues?. Elsie Edwards has gone from 5th-grade fatty to 9th-grade fox, but inside she still feels like an ugly 10-year-old. So when senior football star Craddoc Shaw begins to notice her, Elsie's sure that he's looking at the wrong girl. Then Craddoc asks her out. Can a girl who still hates herself handle first love?","The Road to Dune. Frank Herbert's Dune is widely known as the science fiction equivalent of The Lord of the Rings. Now The Road to Dune is a companion work comparable to The Silmarillion, shedding light on and following the remarkable development of the bestselling science fiction novel of all time. In this fascinating volume, the world's millions of Dune fans can read--at long last--the unpublished chapters and scenes from Dune and Dune Messiah. The Road to Dune also includes some of the original correspondence between Frank Herbert and famed editor John W. Campbell, Jr., along with other correspondence during Herbert's years-long struggle to get his innovative work published, and the article ""They Stopped the Moving Sands,"" Herbert's original inspiration for Dune. The Road to Dune also features newly discovered papers and manuscripts of Frank Herbert, and Spice Planet,an original novel by Brian Herbert and Kevin J. Anderson, based on a detailed outline left by Frank Herbert. The Road to Dune is a trea","King Arthur Flour Whole Grain Baking: Delicious Recipes Using Nutritious Whole Grains. This revolutionary cookbook breathes new life into breads, cakes, cookies, pastries, and more by transforming the dark and dense alchemy of whole grain baking into lively, flavorful, sweet, and savory treats. The final result is more than 400 delicious, inviting, and foolproof recipes that define the next generation of whole grain cooking.","Uncle Setnakt's Essential Guide to the Left Hand Path. The Essential Guide opens the door to the darkly resplendent worlds of the Left Hand Path. Part philosophical treatise, part ontological stand-up comedy, and part magical practicum, this book makes clear what many other books have only hinted at. For people with wit and perseverance, this book is a training manual for super-men and women. Don Webb has been a practitioner of the Left hand path since the 1970s. He is the former High Priest of the Temple of Set, the world's largest Left Hand Path organization, and the author of the best-selling Seven Faces of Darkness.","It's a Magical World (Calvin and Hobbes #11). When cartoonist Bill Watterson announced that his phenomenally popular cartoon strip would be discontinued, Calvin and Hobbesfans throughout the world went into mourning. Fans have learned to survive -- despite the absence of the boy and his tiger in the daily newspaper. It's a Magical Worlddelivers all the satisfaction of visiting its characters once more. Calvin fans will be able to see their favorite mischief maker stir it up with his furry friend, long-suffering parents, classmate Susie Derkins, school teacher Miss Wormwood, and Rosalyn the baby-sitter. It's a Magical Worldincludes full-color Sundays and has it all: Calvin-turned-firefly waking Hobbes with his flashlight glow; courageous Spaceman Spiff rocketing through alien galaxies as he battles Dad-turned-Bug-Being; and Calvin's always inspired snowman art. There's no better way for Watterson fans to savor again the special qualities of their favorite strip.","The Lighthouse Land (Lighthouse Trilogy #1). When Jamie's mother inherits a small island, and moves her little family from Harlem to Ireland, her troubled son sees a chance to start over, far away from the bullies and the pitying stares. Cancer has left Jamie without an arm or the will to speak. But Muck Island offers more than solitude and sea views. Jamie learns that he is heir to an ancient title, Laird of Muck, Guardian of the Passage, and certain otherworldly responsibilities. With the help of a mysterious object he discovers in the island's old lighthouse, Jamie sets out on a dangerous mission that will change the course of his life, and possibly the universe, forever.","Beach Blanket Bad Boys. Batteries Not Requiredby Linda Lael Miller The only boyfriend Gayle Hayes has is the battery-operated kind. But when she returns to her small Montana hometown, rodeo bad boy Tristan McCullough gives her a whole new lesson in power surge... Sara Smilesby Alison Kent Six months ago, Sara Wade has turned down her boyfriend Jax's proposals. Now, it's her turn to convince the hunk she wants it all, starting with a steamy fantasy weekend in sultry Puerto Vallarta... Seducing Tabbyby Lucy Monroe Everybody always wants Tabby Payton's beautiful sister. But not sexy English spy Calder Maxwell. He wants Tabby, body and soul, and he's willing to take the seduction to new levels to prove it... Captivatedby Jill Shalvis James Scott warned his investigator ex-wife Ella to be more careful. Now he finds the irate woman nearly naked and handcuffed to the towel rack in his Mexican vacation condo. He should release her. Then again... Sister Switchby Susanna Carr Tracy Parks is in control of every situatio",Touchy Subjects.,"Kitchen Privileges: A Memoir. In her long-awaited memoir, Mary Higgins Clark, America's beloved and bestselling Queen of Suspense, recounts the early experiences that shaped her as a person and influenced her as a writer.Even as a young girl, growing up in the Bronx, Mary Higgins Clark knew she wanted to be a writer. The gift of storytelling was a part of her Irish ancestry, so it followed naturally that she would later use her sharp eye, keen intelligence, and inquisitive nature to create stories about the people and things she observed. Along with all Americans, those who lived in New York City's borough of the Bronx suffered during the Depression. So it followed that when Mary's father died, her mother, deciding to open the family home to boarders, placed a discreet sign next to the front door that read, FURNISHED ROOMS. KITCHEN PRIVILEGES. Very shortly the first in a succession of tenants arrived: a couple dodging bankruptcy who moved in with their wild-eyed boxer; a teacher who wept endlessly over her lost lov","The Dirt: Confessions of the World's Most Notorious Rock Band. Whiskey and porn stars, hot reds and car crashes, black leather and high heels, overdoses and death. This is the life of Motley Crue, the heaviest drinking, hardest fighting, most oversexed and arrogant band in the world. Their unbelievable exploits are the stuff of rock 'n' roll legend. They nailed the hottest chicks, started the bloodiest fights, partied with the biggest drug dealers, and got to know the inside of every jail cell from California to Japan. They have dedicated an entire career to living life to its extreme, from the greatest fantasies to the darkest tragedies. Tommy married two international sex symbols; Vince killed a man and lost a daughter to cancer; Nikki overdosed, rose from the dead, and then OD'd again the next day; and Mick shot a woman and tried to hang his own brother. But that's just the beginning. Fueled by every drug they could get their hands on and obscene amounts of alcohol, driven by fury and headed straight for hell, Motley Crue raged through two deca","Gifts (Annals of the Western Shore #1). Scattered among poor, desolate farms, the clans of the Uplands possess gifts. Wondrous gifts: the ability--with a glance, a gesture, a word--to summon animals, bring forth fire, move the land. Fearsome gifts: They can twist a limb, chain a mind, inflict a wasting illness. The Uplanders live in constant fear that one family might unleash its gift against another. Two young people, friends since childhood, decide not to use their gifts. One, a girl, refuses to bring animals to their death in the hunt. The other, a boy, wears a blindfold lest his eyes and his anger kill. In this beautifully crafted story, Ursula K. Le Guin writes of the proud cruelty of power, of how hard it is to grow up, and of how much harder still it is to find, in the world's darkness, gifts of light. Includes a reader's guide and a sample chapter from the companion title Voices.","The Politics of Injustice: Crime and Punishment in America. The U.S. crime rate has dropped steadily for more than a decade, yet the rate of incarceration continues to skyrocket. Today, more than 2 million Americans are locked in prisons and jails with devastating consequences for poor families and communities, overcrowded institutions and overburdened taxpayers. How did the U.S. become the world's leader in incarceration? Why have the numbers of women, juveniles, and people of color increased especially rapidly among the imprisoned? The Politics of Injustice: Crime and Punishment in America, Second Editionis the first book to make widely accessible the new research on crime as a political and cultural issue. Katherine Beckett and Theodore Sasson provide readers with a robust analysis of the roles of crime, politics, media imagery and citizen activism in the making of criminal justice policy in the age of mass incarceration.","Three Weeks With My Brother. The day the brochure came was a typical one. With a wife and five small children, a hectic schedule, and a new book due to his publishers, Nicholas Sparks was busy with his usual routine. The colorful mailer, however, described something very different: a tour to some of the most exotic places on Earth. Slowly, an idea took hold in Nicholas's mind and heart. In January 2003, Nicholas Sparks and his brother, Micah, set off on a three-week trip around the globe. It was to mark a milestone in their lives, for at thirty-seven and thirty-eight respectively, they were now the only surviving members of their family. And as they voyaged to the lost city of Machu Picchu high in the Andes. . . to mysterious Easter Island. . . to Ayers Rock in the Australian outback. . . and across the vast Indian subcontinent, the ultimate story of their lives would unfold. Against the backdrop of the wonders of the world and often overtaken by their feelings, daredevil Micah and the more serious, introspective","Eat This Book: Cooking with Global Fresh Flavors. While traveling the globe as the host of Food Network's hit TV shows Tyler's Ultimateand Food 911, Tyler Florence developed a unique perspective on how Americans like to eat and cook today--and on how to help them with their daily cooking challenges. InEat This Book, Tyler draws inspiration from kitchens around the world to enliven America's favorite foods in more than 150 new real kitchen recipes for everyday occasions. Now you can wake up tired weeknight chicken with the zing of North African spices. Turn Sunday's same old spaghetti dinner into an authentic Italian abbondanza with Pappardelle Bolognese and Veal Saltimbocca alla Romana. Hit a home run on game day with Fresh Tortilla Chips, Guacamole, and Farmstand Salsa. Each recipe zeroes in on the bright notes of fresh, global fare and a handful of readily available ingredients that engage the senses and spark the palate, and all are as easy to prepare as they are flavorful. From the simple pleasures of midnight fridge raids to the","Fast Food Nation: The Dark Side of the All-American Meal. A groundbreaking work of investigation and cultural history that may change the way America thinks about the way it eats. Are we what we eat? To a degree both engrossing and alarming, the story of fast food is the story of postwar America. Though created by a handful of mavericks, the fast food industry has triggered the homogenization of our society. Fast food has hastened the malling of our landscape, widened the chasm between rich and poor, fueled an epidemic of obesity, and propelled the juggernaut of American cultural imperialism abroad. That's a lengthy list of charges, but Eric Schlosser makes them stick with an artful mix of first-rate reportage, wry wit, and careful reasoning. Schlosser's myth-shattering survey stretches from the California subdivisions where the business was born to the industrial corridor along the New Jersey Turnpike where many of fast food's flavors are concocted. He hangs out with the teenagers who make the restaurants run and communes with those unlucky","Moby-Dick. On a previous voyage, a mysterious white whale had ripped off the leg of a sea captain named Ahab. Now the crew of the Pequod, on a pursuit that features constant adventure and horrendous mishaps, must follow the mad Ahab into the abyss to satisfy his unslakeable thirst for vengeance. Narrated by the cunningly observant crew member Ishmael, Moby-Dickis the tale of the hunt for the elusive, omnipotent, and ultimately mystifying white whale--Moby Dick. On its surface, Moby-Dickis a vivid documentary of life aboard a nineteenth-century whaler, a virtual encyclopedia of whales and whaling, replete with facts, legends, and trivia that Melvillehad gleaned from personal experience and scores of sources. But as the quest for the whale becomes increasingly perilous, the tale works on allegorical levels, likening the whale to human greed, moral consequence, good, evil, and life itself. Who is good? The great white whale who, like Nature, asks nothing but to be left in peace? Or the bold Ahab who",Galactic Goodnight (Disney's Little Einsteins).,"Mine. Adrift in the 1980s and slowly losing her mind, a heavily armed former '60s radical kidnaps a baby with the hope, deluded as it may be, of returning her life to simpler times. The child's mother, though, isn't about to take it lying down and, along with a tracker, begins a cross-country chase to get her child back.","The Drifting Classroom Vol. 6 (The Drifting Classroom). As a plague spreads through the school, the students fight one another with their last dregs of strength! Will they choose a slow death from disease, or a violent death at the hands of their own classmates? Then, Sho and his friends must venture once more into the wasteland, where rusted ships lie beached forever in the desert that used to be the sea...",戰廢品.,"The Red Badge of Courage and Four Stories. A pioneer in the realistic school of American fiction and the true forerunner of Ernest Hemingway, Stephen Crane probed the thoughts and actions of trapped or baited men fighting the destructive forces in nature, in other human beings, and in themselves...","At First Sight (Jeremy Marsh & Lexie Darnell #2). There are a few things Jeremy Marsh was sure he'd never do: he'd never leave New York City; never give his heart away after barely surviving one failed marriage; and never become a parent. Now Jeremy is living in the tiny town of Boone Creek, North Carolina, engaged to Lexie Darnell, the love of his life, and anticipating the start of their family. But just as his life seems to be settling into a blissful pattern, a mysterious and disturbing e-mail sets off a chain of events that will change the course of this young couple's relationship. How well do we really know the ones we love? How do we handle the inevitable doubts, fears concerning parenthood, and stumbling blocks that are sometimes placed in our way? Continuing the story of the young couple introduced in Sparks's bestselling True Believer, this novel captures all the heartbreak, tension, romance and surprises of those who are newly wed. An astonishing tale about the love between a man and a woman and between a parent and a chil","Daisy-Head Mayzie. When a daisy suddenly sprouts from the top of Mayzie McGrew's head, she is faced with her classmates' taunts, her parents' dismay, and a publicity agent's greed. How poor Mayzie learns that love is more important than fame and fortune makes an endearing morality tale for our time--and for all ages. Narrated by the Cat in the Hat, Daisy-Head Mayzieis vintage Seuss!","Marabou Stork Nightmares. The acclaimed author of the cult classics Trainspottingand The Acid House, Irvine Welsh has been hailed as ""the best thing that has happened to British writing in a decade"" (London Sunday Times). This audacious novel is a brilliant (and literal) head trip of a book that brings us into the wildly active, albeit coma-beset, mind of Roy Strang, whose hallucinatory quest to eradicate the evil predator/scavenger marabou stork keeps being interrupted by grisly memories of the social and family dysfunction that brought him to this state. It is the sort of lethally funny cocktail of pathos, violence, and outrageous hilarity that only Irvine Welsh can pull off.","Diana Vreeland. In the early 1960s Jackie Kennedy wrote to Diana Vreeland: ""you are and always will be my fashion mentor."" Vreeland helped the young First Lady create her famous ""Jackie look"" which was imitated all over America. She had inspired readers of ""Harper Bazaar's"" with her brilliant tips from the mid 1930s to the early '60s and ran ""Vogue"" as editor-in-chief in its most innovative years (1963-1972). Then for thirteen years she organized the hugely successful annual costume history shows at the Costume Institute of the Metropolitan Museum of Art. Known for her flamboyant personality, her striking looks, and impeccable taste, Diana Vreeland changed fashion forever. Now, we can begin to assess her immense contribution in ""Diana Vreeland."" This lavishly illustrated biography includes more than 300 full-color and black and white photographs many from Vreeland's own family scrapbooks and collection which have never been seen before, of family and friends and the talented people in the fashion worl","Good Omens: The Nice and Accurate Prophecies of Agnes Nutter Witch. The world will end on Saturday. Next Saturday. Just before dinner, according to The Nice and Accurate Prophecies of Agnes Nutter, Witch, the world's only completely accurate book of prophecies written in 1655. The armies of Good and Evil are amassing and everything appears to be going according to Divine Plan. Except that a somewhat fussy angel and a fast-living demon are not actually looking forward to the coming Rapture. And someone seems to have misplaced the Antichrist. Put New York Timesbestselling authors Neil Gaiman and Terry Pratchett together . . . and all Hell breaks loose.",Tara Road.,"Blue Like Jazz: Nonreligious Thoughts on Christian Spirituality. ""I never liked jazz music because jazz music doesn't resolve. I used to not like God because God didn't resolve. But that was before any of this happened."" --Donald MillerIn Donald Miller's early years, he was vaguely familiar with a distant God. But when he came to know Jesus Christ, he pursued the Christian life with great zeal. Within a few years he had a successful ministry that ultimately left him feeling empty, burned out, and, once again, far away from God. In this intimate, soul-searching account, Miller describes his remarkable journey back to a culturally relevant, infinitely loving God. For anyone wondering if the Christian faith is still relevant in a postmodern culture. For anyone thirsting for a genuine encounter with a God who is real. For anyone yearning for a renewed sense of passion in life. Blue Like Jazzis a fresh and original perspective on life, love, and redemption.","Tandia. Tandia sat waiting anxiously for the fight to begin between the man she loved the most in the world and the man she hated the most in the world. Tandia is a child of Africa: half Indian, half African, beautiful and intelligent, she is only sixteen when she is first brutalised by the police. Her fear of the white man leads her to join the black resistance movement, where she trains as a terrorist. With her in the fight for justice is the one white man Tandia can trust, the welterweight champion of the world, Peekay. Now he must fight their common enemy in order to save both their lives.","Mountains Beyond Mountains: The Quest of Dr. Paul Farmer a Man Who Would Cure the World. This powerful and inspiring book shows how one person can make a difference, as Kidder tells the true story of a gifted man who is in love with the world and has set out to do all he can to cure it. Tracy Kidder is a winner of the Pulitzer Prize and the author of the bestsellers The Soul of a New Machine, House, Among Schoolchildren, and Home Town. He has been described by the Baltimore Sun as the ""master of the non-fiction narrative."" This powerful and inspiring new book shows how one person can make a difference, as Kidder tells the true story of a gifted man who is in love with the world and has set out to do all he can to cure it. At the center of Mountains Beyond Mountains stands Paul Farmer. Doctor, Harvard professor, renowned infectious-disease specialist, anthropologist, the recipient of a MacArthur ""genius"" grant, world-class Robin Hood, Farmer was brought up in a bus and on a boat, and in medical school found his life's calling: to diagnose and cure infectious diseases and to",O Xará.,"First Meetings in Ender's Universe (Ender's Saga #0.5). Meet Andrew ""Ender"" Wiggin, the unforgettable boy-hero of Ender's Game--winner of the Hugo Award and the Nebula Award for Best Novel--and enter his Universe through this collection of stories. ""The Polish Boy"" is John Paul Wiggin, the future father of Ender. In the years between the first two Bugger Wars, the Hegemony is desperate to recruit brilliant military commanders to repel the alien invasion. They may have found their man--or boy--in John Paul Wiggin.... In ""Teacher's Pest""-a novella written especially for this collection--a brilliant but arrogant John Paul Wiggin, now a university student, matches wits with an equally brilliant graduate student. ""The Investment Counselor"" is set after the end of the Bugger Wars. Banished from Earth and slandered as a mass murderer, twenty-year-old Andrew Wiggin wanders incognito from planet to planet as a fugitive--until a blackmailing tax inspector compromises his identity and threatens to expose Ender the Xeoncide. Also reprinted here is the","Burr. Gore Vidal's Narratives of Empire series spans the history of the United States from the Revolution to the post-World War II years. With their broad canvas and large cast of fictional and historical characters, the novels in this series present a panorama of the American political and imperial experience as interpreted by one of its most worldly, knowing, and ironic observers. Burr is a portrait of perhaps the most complex and misunderstood of the Founding Fathers. In 1804, while serving as vice president, Aaron Burr fought a duel with his political nemesis, Alexander Hamilton, and killed him. In 1807, he was arrested, tried, and acquitted of treason. In 1833, Burr is newly married, an aging statesman considered a monster by many. Burr retains much of his political influence if not the respect of all. And he is determined to tell his own story. As his amanuensis, he chooses Charles Schermerhorn Schuyler, a young New York City journalist, and together they explore both Burr's past and t",School Days (Spenser #33).,"Saint George and the Dragon. This special new paperback edition of St. George and the Dragon commemorates the 25th Anniversary of the Caldecott Award-winning picture book. Hodges retells an exciting segment from Spenser's The Faerie Queene, in which the Red Cross Knight slays a dreadful dragon that has been terrorizing the countryside for years, bringing peace and joy back to the land. Featuring a fresh new cover design - with artwork that highlights the dragon adventure within - and distinctive embossed gold Caldecott Award sticker, this is the perfect way to introduce the classic tale to a whole new generation of readers.","Dragonfly in Amber (Outlander #2). With her now-classic novel Outlander, Diana Gabaldon introduced two unforgettable characters--Claire Randall and Jamie Fraser--delighting readers with a story of adventure and love that spanned two centuries. Now Gabaldon returns to that extraordinary time and place in this vivid, powerful follow-up to Outlander. DRAGONFLY IN AMBER For nearly twenty years Claire Randall has kept her secrets. But now she is returning with her grown daughter to Scotland's majestic mist-shrouded hills. Here Claire plans to reveal a truth as stunning as the events that gave it birth: about the mystery of an ancient circle of standing stones... about a love that transcends the boundaries of time... and about Jamie Fraser, a Scottish warrior whose gallantry once drew a young Claire from the security of her century to the dangers of his. Now a legacy of blood and desire will test her beautiful copper-haired daughter, Brianna, as Claire's spellbinding journey of self-discovery continues in the intrigue-ridden","The Devil in the Junior League. The Junior League of Willow Creek, Texas, is tres exclusive. Undesirables need not apply. Fredericka Mercedes Hildebrand Ware (Frede to her friends) is a member beyond reproach...until her life begins to unravel. When her husband betrays her, steals her money, and runs off to places unknown, it's something Frede would rather keep under wraps. The last thing she needs is to become fodder for the JLWC gossip mill. And to make matters worse, there's only one person in town who stands a chance at helping her get revenge: Howard Grout, a tasteless, gold-chain-wearing lawyer who has bought his way into Frede's tony neighborhood. But here's a price: She has to get his tacky, four-inch-stiletto-and-pink-spandex-wearing wife Nikki into the Junior League. Linda Francis Lee has written an hysterical novel about the creme de la creme of Texas society, the lengths to which one woman goes to bring her cheating husband to justice, and how taking on what seems like a Mission Impossiblecan change you i","Shakespeare: The Biography. Drawing on an exceptional combination of skills as literary biographer, novelist, and chronicler of London history, Peter Ackroyd surely re-creates the world that shaped Shakespeare--and brings the playwright himself into unusually vivid focus. With characteristic narrative panache, Ackroyd immerses us in sixteenth-century Stratford and the rural landscape-the industry, the animals, even the flowers-that would appear in Shakespeare's plays. He takes us through Shakespeare's London neighborhood and the fertile, competitive theater world where he worked as actor and writer. He shows us Shakespeare as a businessman, and as a constant reviser of his writing. In joining these intimate details with profound intuitions about the playwright and his work, Ackroyd has produced an altogether engaging masterpiece.","La caverna. Una pequena alfareria, un centro comercial gigantesco. Un mundo en rapido proceso de extincion, otro que crece y se multiplica como un juego de espejos donde no parece haber limites para la ilusion enganosa. La caverna habla de un modo de vivir que cada vez va siendo menos el nuestro. Todos los dias se extinguen especies animales y vegetales, todos los dias hay profesiones que se tornan inutiles, idiomas que dejan de tener personas que los hablen, tradiciones que pierden sentido, sentimientos que se convierten en sus contrarios. Una familia de alfareros comprende que ha dejado de serle necesaria al mundo. Como una serpiente que muda de piel para poder crecer en otra que mas adelante tambien se volvera pequena, el centro comercial dice a la alfareria: <>. (less)","How to Be a Jewish Parent: A Practical Handbook for Family Life. A creative handbook for Jewish parents explains how to build a family and a home that is imbued with the values, principles, and traditions of Judaism combining insights from the Talmud with practical advice and firsthand experience to offer guidance on synagogue membership, religious education, hol","Gossip Girl (Gossip Girl #1). Welcome to New York City's Upper East Side, where my friends and I live, go to school, play, and sleep--sometimes with each other. S is back from boarding school, and if we aren't careful, she's going to win over our teachers, wear that dress we couldn't fit into, steal our boyfriends' hearts, and basically ruin our lives in a major way. I'll be watching closely . . . You know you love me, gossip girl",The Evolution of the Gilgamesh Epic.,"Stranger In A Strange Land. NAME: Valentine Michael smith ANCESTRY: Human ORIGIN: Mars Valentine Michael Smith is a human being raised on Mars, newly returned to Earth. Among his people for the first time, he struggles to understand the social mores and prejudices of human nature that are so alien to him, while teaching them his own fundamental beliefs in grokking, watersharing, and love.","Demon Box. In this collection of short stories,Ken Keseychallenges public and private demons with a wrestler's brave and deceptive embrace, making it clear that the energy of madness must live on.","The Good Earth (House of Earth #1). Wang Lung, rising from humble Chinese farmer to wealthy landowner, gloried in the soil he worked. He held it above his family, even above his gods. But soon, between Wang Lung and the kindly soil that sustained him, came flood and drought, pestilence and revolution.... Through this one Chinese peasant and his children, Nobel Prize-winner Pearl S. Buck traces the whole cycle of life, its terrors, its passion, its persistent ambitions and its rewards. Her brilliant novel beloved by millions of readers throughout the world is a universal tale of the destiny of men.","Captain Cat. A patriotic feline, Captain Cat springs out of bed whenever the bugle sounds and he has more stripes than any of the soldiers. But most of all, this young recruit and his best friend Pete know what it really takes to make the army a home--friendship. 'Hoff continues his string of hits.' --BL. 'Hoff has maintained his deft touch with a title that's sure to appeal to youngsters.' --SLJ.",Little Miss Lucky. Little Miss Lucky is anything but?.However did she get that name?,"Ebert's ""Bigger"" Little Movie Glossary.","Creepers. On a cold October night, five people gather in a run-down motel on the Jersey shore and begin preparations to break into the Paragon Hotel. Built in the glory days of Asbury Park by a reclusive millionaire, the magnificent structure - which foreshadowed the beauties of art deco architecture - is now boarded up and marked for demolition. The five people are ""creepers,"" the slang term for urban explorers: city archeologists with a passion for investigating abandoned buildings and their dying secrets. On this evening, they are joined by a reporter who wants to profile them - anonymously, as this is highly illegal activity - for a New York Times article. Frank Balenger, a sandy-haired, broad-shouldered reporter with a decided air of mystery about him, isn't looking for just a story, however. And after the group enters the rat-infested tunnel leading to the hotel, it becomes clear that he will get much more than he bargained for. Danger, terror, and death await the creepers in a place ravag","Collected Stories. In a literary career spanning more than fifty years, Wallace Stegner created a remarkable record of the history and culture of twentieth-century America. Each of the thirty-one stories contained in this volume embody some of the best virtues and values to be found in contemporary fiction, demonstrating why the author is acclaimed as one of America's master storytellers. The traveler -- Buglesong -- Beyond the glass mountain -- The berry patch -- The women on the wall -- Balance his, swing yours -- Saw gang -- Goin' to town -- The view from the balcony -- Volcano -- Two rivers -- Hostage -- In the twilight -- Butcher bird -- The double corner -- The colt -- The Chink -- Chip off the old block -- The sweetness of the twisted apples -- The blue-winged teal -- Pop goes the alley cat -- Maiden in a tower -- Impasse -- The volunteer -- A field guide to the western birds -- Something spurious from the Mindanao Deep -- Genesis -- The wolfer -- Carrion spring -- He who spits at the sky -- The c",Vergeef me. De levensgeschiedenis van een Amerikaanse eeneiige tweeling van wie er een schizofreen is.,"Judas Pig. Billy Abrahams is a career criminal who makes a very good living from violence, armed robbery, sex shops, and theft from other criminals. But he becomes increasingly haunted by childhood ghosts and by the ever-growing influence of Danny, his psychopathic partner in crime. Billy finds himself starting to look beyond the violence and the scams, slowly descending into a drug-fuelled netherworld that affects his judgment and his perceptions. He is finally tipped over the edge when Danny commits an act even Billy cannot stomach. And that's when things really start to go wrong. This explosive first novel from a reformed career criminal comes with authenticity stamped throughout.",Pyramids of Montauk: Explorations in Consciousness.,"Shield of Thunder (Troy #2). The second novel in David Gemmell's bestselling Troy trilogy. Interlacing myth and history, and high adventure, this is epic storytelling at its very best. War is looming, and all the kings of the Great Green are gathering, each with their own dark plans of conquest and plunder. Into this maelstrom of treachery come three travellers: Piria, a runaway priestess nursing a terrible secret; Kalliades, a warrior with high ideals and a legendary sword; and his close friend Banokles, who will carve his own legend in the battles to come. Together they journey to the fabled city of Troy, where a darkness is falling that will eclipse the triumphs and personal tragedies of ordinary mortals for centuries to come. From the Paperback edition.","Murder in Foggy Bottom (Capital Crimes #17). Once it was a swamp. Now Foggy Bottom is swimming with real-estate sharks. When a man is found stabbed to death in this trendy D.C. neighborhood, it is major news. But within forty-eight hours the nation is gripped by a fear that leaves this comparatively small crime in the dark. Three passenger planes are shot out of the sky. Everywhere-in law enforcement, in the media, and in the most secret realms of government-men and women scramble to find out who shot hand-held missiles at the planes, and why. It is a search that reaches from Moscow to the Pacific Northwest, putting some people's lives in jeopardy and turning others lives inside out. But no one can guess the truth: that the epicenter of the terrorist outbreak is Washington D.C. . . . and a dead man behind a park bench in a place called Foggy Bottom.","A Philosophical Enquiry into the Origin of our Ideas of the Sublime and Beautiful. An eloquent and sometimes even erotic book, the Philosophical Enquiry was long dismissed as a piece of mere juvenilia. However, Burke's analysis of the relationship between emotion, beauty, and art form is now recognized as not only an important and influential work of aesthetic theory, but also one of the first major works in European literature on the Sublime, a subject that has fascinated thinkers from Kant and Coleridge to the philosophers and critics of today.",In Search of Lost Time Vol. 2: Within a Budding Grove Part 2 & The Guermantes' Way.,Jimmy Stewart: The Truth Behind the Legend. This is the definitive biography of a man who became one of the silver screen's enduring legends.,"The Crying of Lot 49. ""The comedy crackles, the puns pop, the satire explodes"" praised the"" New York Times"", and the ""Chicago Tribune"" agreed: ""The work of a virtuoso with prose. . . . His intricate symbolic order [is] akin to that of Joyce's Ulysses"".","Historia del rey transparente. Historia del rey transparentees una novela poderosa, con la fuerza desbordante de los libros llamados a convertirse en clasicos. En un turbulento siglo XII, Leola, campesina adolescente, desnuda a un guerrero muerto en un campo de batalla y se viste con sus ropas de hierro, para protegerse bajo un disfraz viril. Asi comienza el vertiginoso y emocionante relato de su vida, una peripecia existencial que no es solo la de Leola sino tambien la nuestra, porque esta novela de aventuras con ingredientes fantasticos nos esta hablando en realidad del mundo actual y de lo que todos somos. Historia del rey transparentees ademas un insolito viaje a una Edad Media desconocida que se huele y se siente sobre la piel. Una historia que conmueve por su grandeza epica. Un encuentro deslumbrante con unos personajes inolvidables. Una gran fabula para adultos que posee el embeleso y la capacidad metaforica de los relatos esenciales. Uno de esos libros que no se leen, sino que se viven. La novela queda abier","The Long Road Back: A Survivor's Guide to Anorexia. ""Today, I see the link between my feelings of craziness and loss of control over my own life and my need to place rigid restraints on my weight and eating. ""When other areas of my life felt out of control, there was always one thing I knew I could control. My weight and eating became the focus of my life, and all of my other troubles were forgotten -- at least temporarily."" From The Long Road Back: A Survivor's Guide to Anorexia Each year, in the United States alone, thousands die of the eating disorder anorexia nervosa, which carries the highest mortality rate of any psychiatric disorder. To make matters worse, it is some of our brightest and best young people (more than 90 percent of them females) whose lives are lost to this insidious illness. Anorexia is characterized by a refusal to maintain a minimally normal body weight. The individual suffering from it is intensely afraid of gaining weight, and has a distorted perception of the size and shape of his or her body. Unless there","The Dog Who Loved Too Much: Tales Treatments and the Psychology of Dogs. Do you have a problem pooch? What do you do with a dog who attacks the telephone whenever it rings? Or one who chases imaginary rabbits down imaginary holes? Or one who is terrified of microblinds...or turns into Cujo every time company arrives? In this warm, compassionate, entertaining, and very informative book, Dr. Nicholas Dodman, one of the premier veterinary behaviorists in the country, tells real-life stories from his practice that illustrate his unique approach to correcting unwanted behaviors. By making key changes in a dog's diet, exercise regime, environment, and training, Dr. Dodman has been able to work wonders with even the most difficult problems. Utilizing revolutionary discoveries in canine behaviorism and pharmacology, Dr. Dodman has given hope and help to owners whose only previous options were obedience schools, or if these failed--euthanasia. Whether you own a problem dog or just want to better understand the complex, intelligent mind of your canine companion, thi","Exclusive. A second-stringer with first-class talent, Barrie Travis is stuck at a low-budget independent television station struggling to survive among the giant networks. Then, suddenly, she receives an invitation from First Lady Vanessa Merritt for an off-the-record conversation. Barrie's reporter's instincts are instantly aroused. During a furtive, emotionally charged meeting, Barrie sees that the President's beautiful wife is stunned by grief after the crib death of her infant son. Vanessa's motive for meeting Barrie seems to be to share her heartache with another woman. What Barrie overlooks in her excitement at hearing the confidences of the First Lady are the questions she should be asking: Why would Vanessa Merritt call her? And why would the President's wife hint to an unknown reporter that her child may have been murdered? Blind to everything but getting her exclusive, Barrie is determined to investigate the death of the President's child. But she soon realizes that getting her story wi","Alanna: The First Adventure (Song of the Lioness #1). From now on I'm Alan of Trebond, the younger twin. I'll be a knight. And so young Alanna of Trebond begins the journey to knighthood. Though a girl, Alanna has always craved the adventure and daring allowed only for boys; her twin brother, Thom, yearns to learn the art of magic. So one day they decide to switch places: Thom heads for the convent to learn magic; Alanna, pretending to be a boy, is on her way to the castle of King Roald to begin her training as a page. But the road to knighthood is not an easy one. As Alanna masters the skills necessary for battle, she must also learn to control her heart and to discern her enemies from her allies. Filled with swords and sorcery, adventure and intrigue, good and evil, Alanna's first adventure begins - one that will lead to the fulfillment of her dreams and the magical destiny that will make her a legend in her land.","The Rabbi. Michael Kind was a rabbi, but he was also a man. A man who couldn't help that his heart led him to Leslie, a beautiful minister's daughter. Defying parents and teachers, they dare to love one another and build a life together, in this sweeping drama of love and identity, compassion and crueltly, and a complicated world that will not accept their decisions.... ""A rewarding reading experience."" LOS ANGELES TIMES","The South. Set in the 1950s, this is the story of Katherine Proctor who ""flees husband, child and County Wexford (Ireland) for Spain. She, a Catalan lover, and another Irish emigre, painters all, fashion new worlds in their work while fighting past worlds in their lives."" (Library Journal)",ツバサ-RESERVoir CHRoNiCLE- 3.,Exile's Honor (Heralds of Valdemar #6).,"The Virgin's Lover (The Plantagenet and Tudor Novels #13). From the author of The Other Boleyn Girl and The Queen's Fool comes a stunning portrait of the first perilous years of Elizabeth I's reign. As a new queen, Elizabeth faces two great dangers: the French invasion of Scotland, which threatens to put Mary Queen of Scots on her throne, and her passion for the convicted traitor Robert Dudley. But Dudley is already married, and his devoted wife Amy will never give him up, least of all to an upstart Protestant Princess. She refuses to set her beloved husband free to marry the queen; but she cannot prevent him from becoming the favorite and the focus of the feverishly plotting, pleasure seeking court. Others too oppose the marriage, but for very different reasons. William Cecil, the queen's wisest counselor, knows she must marry for policy; her uncle hates Dudley and swears he will be murder him first. Behind the triangle of lovers, the factions take up their places: the Protestants, the priests, the assassins, the diplomats and the moneymakers","The Story of Salt. From the team that created the ALA Notable Book The Cod's Tale comes the fascinating history of salt, which has been the object of wars and revolutions and is vital for life. Based on Mark Kurlansky's critically acclaimed bestseller Salt: A World History, this handsome picture book explores every aspect of salt: The many ways it's gathered from the earth and sea; how ancient emperors in China, Egypt, and Rome used it to keep their subjects happy; Why salt was key to the Age of Exploration; what salt meant to the American Revolution; And even how the search for salt eventually led to oil. Along the way, you'll meet a Celtic miner frozen in salt, learn how to make ketchup, and even experience salt's finest hour: Gandhi's famous Salt March.","Thanksgiving. When Megan Murphy discovered a floppy-eared rabbit gnawing on the hem of her skirt, she meant to give its careless owner a piece of her mind, but Dr. Patrick Hunter was too attractive to stay mad at for long. Soon the two are making Thanksgiving dinner for their families.","The One Tree (The Second Chronicles of Thomas Covenant #2). Thomas Covenant and Linden Avery begin their search for the One Tree that is to be the salvation of the Land. Only he could find the answer and forge a new Staff of Lawbut fate decreed that the journey was to be long, the quest arduous, and quite possibly a failure....","Shopgirl. Lonely, depressed, Vermont transplant Mirabelle Buttersfield, who sells expensive evening gloves nobody ever buys at Neiman Marcus in Beverly Hills and spends her evenings watching television with her two cats. She attempts to forge a relationship with middle-aged, womanizing, Seattle millionaire Ray Porter while being pursued by socially inept and unambitious slacker Jeremy. With more than 340,000 copies in print, Steve Martin's Shopgirlhas landed on bestseller lists nationwide including: New York Times, Publishers Weekly, USA Today, Wall Street Journal, San Francisco Chronicle, Washington Post, and Los Angeles Times. Filled with the kind of witty, discerning observations that have brought Steve Martin incredible critical success, this story of modern day love and romance is a work of disarming tenderness.","To the Friend who Didn't Save my Life. In To the Friend Who Did Not Save My Life,critically acclaimed French writer Herve Guibert has created an unnervingly intimate novel about an imaginative and vital young man confronting the ominous spectre of AIDS in his life. Le Nouvel Observateurcalls it ""a masterpiece."" Written in the form of a journal, this novel offen both an unflinchingly honest examination of daily life under a death sentence, and the impact of the disease on a group of gifted and artistic people--a circle of French artists and intellectuals spinning out of control in shared fear and uncertainty, discovering that talent and genus offer little solace: Muzil, the brilliant young philosopher whose dangerous underground exploits have life-and-death consequences; Marine, the eccentric and unreliable movie star who uses her jet-set life as an escape from reality; Muzil's friends and lovers, who attempt to salvage the groundbreaking texts that Muzil is both furiously churning out and trying to destroy before his death;","Sherlock Holmes: The Unauthorized Biography. He has been called a genius and a fraud, a hero and an addict. He advised kings in their glittering palaces, then disappeared into the darkest alleys of London's criminal underworld. He was (and remains) a global icon, but he could pass his most ardent fan on the street without a flicker of recognition. Who was this Sherlock Holmes? With an attention to detail that would make his subject envious, Nick Rennison gathers the clues of a life lived among the stars of the late nineteenth and early twentieth centuries, from Oscar Wilde to Sigmund Freud, and uncovers startling, previously unknown information. How did a Cambridge drop-out and bit player on the London stage transform himself into a renowned ""consulting detective""? Did he know the identity of ""Jack the Ripper""? When did Holmes and his nemesis Professor Moriarty first cross paths? To where did Sherlock Holmes disappear after his presumed ""death"" in 1891? Sherlock Holmesanswers these questions and many more as it careens through th","Wizard: The Life and Times of Nikola Tesla: Biography of a Genius. Nikola Tesla (1856-1943), credited as the inspiration for radio, robots, and even radar, has been called the patron saint of modern electricity. Based on original material and previously unavailable documents, this acclaimed book is the definitive biography of the man considered by many to be the founding father of modern electrical technology. Among Tesla's creations were the channeling of alternating current, fluorescent and neon lighting, wireless telegraphy, and the giant turbines that harnessed the power of Niagara Falls.","A Fistful of Charms (The Hollows #4). The evil night things that prowl Cincinnati despise witch and bounty hunter Rachel Morgan. Her new reputation for the dark arts is turning human and undead heads alike with the intent to possess, bed, and kill her -- not necessarily in that order. Now a mortal lover who abandoned Rachel has returned, haunted by his secret past. And there are those who covet what Nick possesses -- savage beasts willing to destroy the Hollows and everyone in it if necessary. Forced to keep a low profile or eternally suffer the wrath of a vengeful demon, Rachel must nevertheless act quickly. For the pack is gathering for the first time in millennia to ravage and to rule. And suddenly more than Rachel's soul is at stake.","Vampires Don't Wear Polka Dots (The Adventures of the Bailey School Kids #1). The hugely popular early chapter book series re-emerges with a new look! Brand-new eye-catching cover art brings a modern feel to this classic monster series for young readers. The kids in the third grade at Bailey Elementary are so hard to handle that all of their teachers have quit. But their new teacher, Mrs. Jeepers, is different to say the least. She's just moved from the Transylvanian Alps and she seems to have some strange powers that help her deal with these mischief-makers. Her methods may be a little unconventional, but, then again, Mrs. Jeepers may be just what the Bailey School kids need.",Rover rettet Weihnachten..,"Blue Moon (Anita Blake Vampire Hunter #8). When she chose master vampire Jean-Claude over her ex-fiance, alpha werewolf Richard Zeeman, Anita learned that sometimes love is not enough. But though she and Richard won't be walking down any aisles, she can't turn her back on him when he's arrested on a rape charge in Tennessee. Anita knows firsthand that Richard has the morals of a saint--or at least a boy scout. But his guilt or innocence is not the issue. He's behind bars, and in five days a full moon will rise...","The Three Musketeers (Classic Starts). ""All for one and one for all!"" That's the rallying cry of the Musketeers--guards of the French King--and the call to adventure for young readers enjoying their first taste of Dumas' classic swashbuckler. Aramis, Athos, Porthos, and the not-quite-yet Musketeer D'Artagnan use their wits and their swords to battle an evil Cardinal, the traitorous Milady, and other enemies of the French court.","Soldiers of Salamis. In the final moments of the Spanish Civil War, a writer and founding member of Franco's Fascist Party is about to be shot, and yet miraculously escapes into the forest. When his hiding place is discovered, he faces death for the second time that day-but is spared, this time by a lone Republican soldier. The writer becomes a national hero and a member of Franco's first government, while the soldier is forgotten. Sixty years later, Cercas's novel peels back the layers of truth and propaganda in order to discover who the real hero was. Winner of the Independent Prize in Foreign Fiction, Soldiers of Salamis is a wholly original work of fiction by a modern master.","Peter Pan. Peter Pan, the book based on J.M. Barrie's famous play, is filled with unforgettable characters: Peter Pan, the boy who would not grow up; the fairy, Tinker Bell; the evil pirate, Captain Hook; and the three children--Wendy, John, and Michael--who fly off with Peter Pan to Neverland, where they meet Indians and pirates and a crocodile that ticks. Renowned children's-book artist Michael Hague has brought the amazing adventures of Peter Pan to life. His beautiful illustrations capture the wild, seductive power of this classic book. This newly designed edition will be enjoyed by fans young and old alike.","Harry Potter Schoolbooks Box Set: Two Classic Books from the Library of Hogwarts School of Witchcraft and Wizardry. There is an alternate cover edition for this ISBN13 . Fans of Harry Potter will love the chance to really get inside the Hogwarts School of Witchcraft and Wizardry. Now, straight from the Hogwarts School Library, come two textbooks used by Harry and all his fellow wizards-in-training. Written by J. K. Rowling under two delightful pseudonyms, Quidditch Through the Agesand Fantastic Beasts & Where to Find Themcome packaged in a fabulous box set. Did you know that in 1938 the wizard Zacharias Mumps set down the first full description of the game of Quidditch? Written by a renowned Quidditch expert (and ""the author of many Quidditch-related works""), Quidditch Through the Agesreveals everything readers need to know about the most important sport in the wizarding world. From the evolution of the flying broomstick and the rules for playing Quidditch to the changes in the sport since the 14th century (up until today) and details about all the Quidditch teams of Britain and Ireland, this book","You Shall Know Our Velocity!. In his first novel, Dave Eggers has written a moving and hilarious tale of two friends who fly around the world trying to give away a lot of money and free themselves from a profound loss. It reminds us once again what an important, necessary talent Dave Eggers is.",The Mottled Lizard.,The Humor of the American Cowboy.,"Treason. Lanik Mueller's birthright as heir to planet Treason's most powerful rulership will never be realized. He is a ""rad"" -- radical regenerative. A freak among people who can regenerate injured flesh... and trade extra body parts to the Offworld oppressors for iron. For, on a planet without hard metals -- or the means of escape -- iron is power in the race to build a spacecraft. Iron is the promise of freedom -- which may never be fulfilled as Lanik uncovers a treacherous conspiracy beyond his imagination. Now charged with a mission of conquest -- and exile -- Lanik devises a bold and dangerous plan... a quest that may finally break the vicious chain of rivalry and bloodshed that enslaves the people of Treason as the Offworld never could.","Jane's Warlord (Warlord #1). The next target of a time traveling killer, crime reporter Jane Colby finds herself in the hands of a warlord from the future sent to protect her--and in his hands is just where she wants to be.","Surely You're Joking Mr. Feynman!. A series of anecdotes, such as are included in Surely You're Joking, Mr Feynman, shouldn't by rights add up to an autobiography, but that's just one of the many pieces of received wisdom that Nobel Prize-winning physicist Richard Feynman (1918-88) cheerfully ignores in this engagingly eccentric book. Fiercely independent (read the chapter entitled ""Judging Books by Their Covers""), intolerant of stupidity even when it comes packaged as high intellectualism (check out ""Is Electricity Fire?""), unafraid to offend (see ""You Just Ask Them?""), Feynman informs by entertaining. It's possible to enjoy Surely You're Joking, Mr Feynman, a bestseller ever since its initial publication in 1985, simply as a bunch of hilarious yarns with the author as know-it-all hero. At some point, however, attentive readers realise that underneath all the merriment simmers a running commentary on what constitutes authentic knowledge: learning by understanding, not by rote; refusal to give up on seemingly insoluble","Structure and Interpretation of Computer Programs (MIT Electrical Engineering and Computer Science). Structure and Interpretation of Computer Programshas had a dramatic impact on computer science curricula over the past decade. This long-awaited revision contains changes throughout the text. There are new implementations of most of the major programming systems in the book, including the interpreters and compilers, and the authors have incorporated many small changes that reflect their experience teaching the course at MIT since the first edition was published. A new theme has been introduced that emphasizes the central role played by different approaches to dealing with time in computational models: objects with state, concurrent programming, functional programming and lazy evaluation, and nondeterministic programming. There are new example sections on higher-order procedures in graphics and on applications of stream processing in numerical programming, and many new exercises. In addition, all the programs have been reworked to run in any Scheme implementation that adheres to the IEE","Journey of Awakening: A Meditator's Guidebook. Ram Dass is an American psychologist and spiritual teacher who has studied and practiced meditation for many years. Here he shares his understanding and explores the many paths of meditation--from mantra, prayer, singing, visualizations, and ""just sitting"" to movement meditations such as tai chi--and suggests how you can find methods suitable for you. He illuminates the stages and benefits of meditative practice, and provides wise and often humorous advice on overcoming difficulties along the way.","Mansfield Park. At the age of ten, Fanny Price leaves the poverty of her Portsmouth home to be brought up among the family of her wealthy uncle, Sir Thomas Bertram, in the chilly grandeur of Mansfield Park. She gradually falls in love with her cousin Edmund, but when the dazzling and sophisticated Crawfords arrive, and amateur theatricals unleash rivalry and sexual jealousy, Fanny has to fight to retain her independence. This new edition places Mansfield Park in its Regency context and elucidates the theatrical background that pervades the novel.","The Peloponnesian War. The first unabridged translation into American English, and the first to take into account the wealth of Thucydidean scholarship of the last half of the twentieth century, Steven Lattimore's translation sets a new standard for accuracy and reliability. Notes provide information necessary for a fuller understanding of problematic passages, explore their implications as well as the problems they may pose, and shed light on Thucydides as a distinctive literary artist as well as a source for historians and political theorists.","Chimera. By the winner of the National Book Award and bestselling author of ""The Tidewater Tales,"" three of the great myths of all time revisited by a modern master. Dunyazade, Scheherazade's kid sister, holds the destiny of herself and the prince who holds her captive. Perseus, the demigod who slew the Gorgon Medusa, finds himself at forty battling for simple self-respect like any common mortal. Bellerophon, once a hero for taming the winged horse Pegasus, must wrestle with a contentment that only leaves him wretched.","Complete Novels and Stories. From ruined Louisiana plantations to bustling, cosmopolitan New Orleans, Kate Chopin wrote with unflinching honesty about propriety and its strictures, the illusions of love and the realities of marriage, and the persistence of a past scarred by slavery and war. Her stories of fiercely independent women, culminating in her masterpiece ""The Awakening"" (1899), challenged contemporary mores as much by their sensuousness as their politics, and today seem decades ahead of their time. Now, The Library of America collects all of Chopin's novels and stories as never before in one authoritative volume. The explosive novel ""At Fault"" (1890) centers on a love triangle between a strong-willed young widow, a stiff St. Louis businessman, and the man's alcoholic wife. In the story collections ""Bayou Folk"" (1894) and ""A Night in Acadie"" (1897), Chopin transforms the local color sketch into taut, perfectly calibrated tales of post-Civil War bayou culture. In ""The Awakening,"" the now-classic novel that","Sins of a Shaker Summer (Sister Rose Callahan #3). Rose Callahan, newly appointed eldress of the community of Believers at the Kentucky Shaker viliage of North Homage, confesses to a nagging resentment toward Andrew, sent by the lead ministry in Mount Lebanon to act as trustee. She knows little about the man, except that he's taken charge of the Medicinal Herb Garden, over which Rose previously had control, and he's been expanding the tiny industry and experimenting with new medicinal herbs.Now two little girls have suddenly become deathly ill, and Rose's attention turns to the herb garden. Suspecting that the girls may have taken a notion to nibble on pretty but poisonous plants, she fears their hallowed land may have accidentally been turned into a killing ground. But as Rose investigates, mysterious death invades the gentle oasis of their spiritual world, and some chilling secrets come to light...secrets that bring Rose closer to a truth that even a nonviolent Believer might kill to keep.","Star Wars: The New Essential Guide to Weapons & Technology. There's more to the arms, artillery, and exotic equipment of the Star Warsgalaxy than Jedi lightsabers and blasters. Species such as the tree-dwelling Wookiees, the amphibious Gungans, and the deadly Yuuzhan Vong have yielded a staggering array of unique weapons and devices. And as the Star Warsmythos continues to grow-in prequels and video games, on screen, in print, and beyond-these remarkable technical creations also multiply and evolve. The NewEssential Guide to Weapons and Technologyis the fully updated and greatly expanded reference resource that organizes and explains every key class, make, and model of Star Wars munitions-from the smallest personal sidearms to the most devastating interplanetary superweapons-along with a host of other high-tech paraphernalia. This exhaustive compendium includes: * New in this edition: a fascinating look at the historical significance of Star Warsweaponry and the major technological turning points- including the Clone Wars, the creation of the f","Beloved. Winner of the Pulitzer Prize, Toni Morrison's Belovedis a spellbinding and dazzlingly innovative portrait of a woman haunted by the past. Sethe was born a slave and escaped to Ohio, but eighteen years later she is still not free. She has borne the unthinkable and not gone mad, yet she is still held captive by memories of Sweet Home, the beautiful farm where so many hideous things happened. Meanwhile Sethe's house has long been troubled by the angry, destructive ghost of her baby, who died nameless and whose tombstone is engraved with a single word: Beloved. Sethe works at beating back the past, but it makes itself heard and felt incessantly in her memory and in the lives of those around her. When a mysterious teenage girl arrives, calling herself Beloved, Sethe's terrible secret explodes into the present.","Betraying Spinoza: The Renegade Jew Who Gave Us Modernity. Part of the Jewish Encounter series In 1656, Amsterdam's Jewish community excommunicated Baruch Spinoza, and, at the age of twenty-three, he became the most famous heretic in Judaism. He was already germinating a secularist challenge to religion that would be as radical as it was original. He went on to produce one of the most ambitious systems in the history of Western philosophy, so ahead of its time that scientists today, from string theorists to neurobiologists, count themselves among Spinoza's progeny. In Betraying Spinoza,Rebecca Goldstein sets out to rediscover the flesh-and-blood man often hidden beneath the veneer of rigorous rationality, and to crack the mystery of the breach between the philosopher and his Jewish past. Goldstein argues that the trauma of the Inquisition' s persecution of its forced Jewish converts plays itself out in Spinoza's philosophy. The excommunicated Spinoza, no less than his excommunicators, was responding to Europe' s first experiment with racial an","Homemade Love. Her Mama calls her Girlpie-a sweet treat, homemade with love. And when Girlpie makes a mistake, the lover of her mother and father lets her pick up the pieces and make everything right again. Shane W. Evan's resplendent artwork teems with ""homemade love,"" one of the tender nicknames award-winning author bell hooks gives her young heroine.","Benjamin Franklin. ""The best short biography of Franklin ever written.""--Gordon S. Wood Benjamin Franklin is perhaps the most remarkable figure in American history: the greatest statesman of his age, he played a pivotal role in the formation of the American republic. He was also a pioneering scientist, a bestselling author, the country's first postmaster general, a printer, a bon vivant, a diplomat, a ladies' man, and a moralist--and the most prominent celebrity of the eighteenth century. Franklin was, however, a man of vast contradictions, as Edmund Morgan demonstrates in this brilliant biography. A reluctant revolutionary, Franklin had desperately wished to preserve the British Empire, and he mourned the break even as he led the fight for American independence. Despite his passion for science, Franklin viewed his groundbreaking experiments as secondary to his civic duties. And although he helped to draft both the Declaration of Independence and the American Constitution, he had personally hoped that th","Emotional Intelligence: Why It Can Matter More Than IQ. Everyone knows that high IQ is no guarantee of success, happiness, or virtue, but until Emotional Intelligence, we could only guess why. Daniel Goleman's brilliant report from the frontiers of psychology and neuroscience offers startling new insight into our ""two minds""--the rational and the emotional--and how they together shape our destiny. Through vivid examples, Goleman delineates the five crucial skills of emotional intelligence, and shows how they determine our success in relationships, work, and even our physical well-being. What emerges is an entirely new way to talk about being smart. The best news is that ""emotional literacy"" is not fixed early in life. Every parent, every teacher, every business leader, and everyone interested in a more civil society, has a stake in this compelling vision of human possibility. From the Trade Paperback edition.","Hoot. Unfortunately, Roy's first acquaintance in Florida is Dana Matherson, a well-known bully. Then again, if Dana hadn't been sinking his thumbs into Roy's temples and mashing his face against the school-bus window, Roy might never have spotted the running boy. And the running boy is intriguing: he was running away from the school bus, carried no books, and-here's the odd part-wore no shoes. Sensing a mystery, Roy sets himself on the boy's trail. The chase introduces him to potty-trained alligators, a fake-fart champion, some burrowing owls, a renegade eco-avenger, and several extremely poisonous snakes with unnaturally sparkling tails. Roy has most definitely arrived in Carl Hiaasen's Florida. ""From the Hardcover edition.""","Empire of the Senseless. Set in the near future, in a Paris devastated by revolution and disease, Empire of the Senselessis narrated by two terrorists and occasional lovers, Thivai, a pirate, and Abhor, part-robot part-human. Together and apart, the two undertake an odyssey of carnage, a holocaust of erotic. ""An elegy for the world of our fathers,"" as Kathy Acker calls it, where the terrorists and the wretched of the earth are in command, marching down a road charted by Genet to a Marseillaisecomposed by Sade.","A Dirty Job (Grim Reaper #1). Charlie Asher is a pretty normal guy with a normal life, married to a bright and pretty woman who actually loves him for his normalcy. They're even about to have their first child. Yes, Charlie's doing okay--until people start dropping dead around him, and everywhere he goes a dark presence whispers to him from under the streets. Charlie Asher, it seems, has been recruited for a new position: as Death. It's a dirty job, but hey! Somebody's got to do it.","Fear and Loathing in Las Vegas. 'We were somewhere around Barstow on the edge of the desert when the drugs began to take hold. I remember saying something like, ""I feel a bit lightheaded; maybe you should drive ...""' Hunter S. Thompson is roaring down the desert highway to Las Vegas with his attorney, the Samoan, to find the dark side of the American Dream. Armed with a drug arsenal of stupendous proportions, the duo engage in a surreal succession of chemically enhanced confrontations with casino operators, police officers and assorted Middle Americans. This stylish reissue of Hunter S. Thompson's iconic masterpiece, a controversial bestseller when it appeared in 1971, features the brilliant Ralph Steadman illustrations of the original. It brings to a new generation the hallucinatory humour and nightmare terror of Hunter S. Thompson's musings on the collapse of the American Dream.","Nacho and Lolita. In this tender friendship story that will melt your heart, acclaimed storyteller Pam Munoz Ryan and talented newcomer Claudia Rueda reveal that any difference can be overcome with love. Once, when the two Californias ran alta y baja, high and low, along the Pacific, there lived a rare and majestic bird named Nacho, the only pitacoche for thousands of miles. He was proud of his brilliant feathers and haunting songs, but what good were they with no one to share them? Then the swallows came to nest and Nacho met Lolita. His heart filled with affection. Was it possible for two such different birds to find happiness together? And what would happen to Nacho when Lolita and the other swallows migrated back to South America?","Astonishing X-Men Volume 2: Dangerous. A tragic death at the Xavier Institute reveals a powerful enemy living among the X-Men that they could never have suspected - and no, it's not Magneto. Things heat up in a way none of the X-Men ever dreamed, but will teamwork save the day when they can't even depend on themselves? Collecting: Astonishing X-Men7-12","The Botany of Desire: A Plant's Eye View of the World. A farmer cultivates genetically modified potatoes so that a customer at Mc Donald's half a world away can enjoy a long, golden french fry. A gardener plants tulip bulbs in the autumn and in the spring has a riotous patch of colour to admire. Two simple examples of how humans act on nature to get what we want. Or are they? What if those potatoes and tulips have evolved to gratify certain human desires so that humans will help them multiply? What if, in other words, these plants are using us just as we use them? In blending history, memoir and superb science writing, Pollan tells the story of four domesticated species - the apple, the tulip, marijuana and the potato.",Gorgias/Timaeus. Two major works by one of history's best known and most widely read and studied philosophers. Gorgiasaddresses the temptations of success and the rewards of a moral life; Timaeusis an explanation of the world in terms not only of physical laws but also of metaphysical and religious principles. B. Jowett translation.,"Trial by Fire (Newpointe 911 #4). Pastor and fireman Nick Foster found the body in the inferno engulfing his church. From the bullet wound in the head, it's clear this is no ordinary fire victim. The quiet community of Newpointe, reeling from the shock of the dead man's identity, struggles with the agonizing question: who did it --- and why? Paramedic Issie Mattreaux is no icon of virtue, but she cares enough about her teenage nephew, Jake, to track him down when he turns up missing. Only, what she finds is far more than a harmless bonfire on the outskirts of town. After a chilling attempt on Issie's life, Nick takes on the role of protector even as he struggles wit the tragedy that has struck his church. Whoever is behind the fire is far from finished. Unknown to Nick, that person's twisted agenda now threatens to consume everything he loves most.","The Day the Country Died: A History of Anarcho-Punk 1980-1984. If the bands in Burning Britainwere loud, political, and uncompromising, those examined in Ian Glasper's new book were even more so. With Crass and Poison Girls opening the floodgates, the arrival of bands like Zoundz, Flux of Pink Indians, Conflict, Subhumans, Dirt, The Mob, Omega Tribe, and Icons of Filth heralded a new age of honesty and integrity in the 1980s underground music scene. It was a time when punk stopped being merely a radical fashion statement, and became a force for real social change. Anarchy in punk rock no longer meant ""cash from chaos""--it meant ""freedom, peace, and unity."" Comprehensively covering all the groups and names, big and small, The Day the Country Diedalso features exclusive interviews and hundreds of never-before-published photos.","The Brethren. Trumble is a minimum-security federal prison, a ""camp,"" home to the usual assortment of relatively harmless criminals--drug dealers, bank robbers, swindlers, embezzlers, tax evaders, two Wall Street crooks, one doctor, at least five lawyers.And three former judges who call themselves the Brethren: one from Texas, one from California, and one from Mississippi. They meet each day in the law library, their turf at Trumble, where they write briefs, handle cases for other inmates, practice law without a license, and sometimes dispense jailhouse justice. And they spend hours writing letters. They are fine-tuning a mail scam, and it's starting to really work. The money is pouring in. Then their little scam goes awry. It ensnares the wrong victim, a powerful man on the outside, a man with dangerous friends, and the Brethren's days of quietly marking time are over.","Cold As Ice (Ice #2). Never get in the way of a mission The job was supposed to be dead easy -- hand-deliver some legal papers to billionaire philanthropist Harry Van Dorn's extravagant yacht, get his signature and be done. But Manhattan lawyer Genevieve Spenser soon realizes she's in the wrong place at the wrong time, and that the publicly benevolent playboy has a sick, vicious side. As he tries to make her his plaything for the evening, eager to use and abuse her until he discards her with the rest of his victims, Genevieve must keep her wits if she intends to survive the night. But there's someone else on the ship who knows the true depths of Van Dorn's evil. Peter Jensen is far more than the unassuming personal assistant he pretends to be -- he's a secret operative who will stop at nothing to ensure Harry's deadly Rule of Seven terror campaign dies with him. But Genevieve's presence has thrown a wrench into his plans, and now he must decide whether to risk his mission to keep her alive, or allow her to",20 000 Leagues Under the Sea.,"The Hope (The Hope and the Glory #1). Herman Wouk is one of this century's great historical novelists, whose peerless talent for capturing the human drama of landmark world events has earned him worldwide acclaim. In The Hope, his long-awaited return to historical fiction, he turns to one of the most thrilling stories of our time - the saga of Israel. In the grand, epic style of The Winds of War and War and Remembrance, The Hope plunges the reader into the major battles, the disasters and victories, and the fragile periods of peace from the 1948 War of Independence to the astounding triumph of the Six-Day War in 1967. And since Israelis have seen their share of comic mishaps as well as heroism, this novel offers some of Herman Wouk's most amusing scenes since the famed ""strawberry business"" in The Caine Mutiny. First to last The Hope is a tale of four Israeli army officers and the women they love: Zev Barak, Viennese-born cultured military man; Benny Luria, ace fighter pilot with religious stirrings; Sam Pasternak, sardoni","Star Wars. Episode I - Die dunkle Bedrohung. Ein Weltraummarchen voller Gefuhle, Abenteuer und technischer Spektakel, zugleich aber auch der Beginn einer monumentalen epischen Saga und der erste Teil eines grossen Handlungsbogens, der in den klassischen Star Wars-Filmen endet. Die drei schon bekannten Filme entpuppen sich so als Episoden 4-6. Fur die Episode 1 wird die Sternenuhr um 32 Erdenjahre zuruckgedreht, wir erleben z.B. wie der neunjahrige Anakin Skywalker zu Darth Vader wurde, dem Symbol des Schreckens.","Euripides I: Alcestis / The Medea / The Heracleidae / Hippolytus. This volume contains the following tragedies by Euripides: 1. Alcestis, translated by Richmond Lattimore 2. The Medea, translated by Rex Warner 3. The Heracleidae, translated by Ralph Gladstone 4. Hippolytus, translated by David Grene In nine paperback volumes, the Grene and Lattimore editions offer the most comprehensive selection of the Greek tragedies available in English. Over the years these authoritative, critically acclaimed editions have been the preferred choice of over three million readers for personal libraries and individual study as well as for classroom use.","Winter of Magic's Return. Convinced that a new age of magic is about to begin in the wake of the nuclear holocaust, a young resurrected Merlin and two friends set out to bring King Arthur back to the land.","Notes from Underground & The Double. 'It is best to do nothing! The best thing is conscious inertia! So long live the underground!'Alienated from society and paralysed by a sense of his own insignificance, the anonymous narrator of Dostoyevsky's groundbreaking Notes from Undergroundtells the story of his tortured life. With bitter sarcasm, he describes his refusal to become a worker in the 'ant-hill' of society and his gradual withdrawal to an existence 'underground'. The seemingly ordinary world of St Petersburg takes on a nightmarish quality in The Doublewhen a government clerk encounters a man who exactly resembles him - his double perhaps, or possibly the darker side of his own personality. Like Notes from Underground,this is a masterly study of human consciousness.Jessie Coulson's introduction discusses the stories' critical reception and the themes they share with Dostoyevksy's great novels.",Victoria. novel translated from Norwegian,"The Rebel. By one of the most profoundly influential thinkers of our century, The Rebel is a classic essay on revolution. For Albert Camus, the urge to revolt is one of the ""essential dimensions"" of human nature, manifested in man's timeless Promethean struggle against the conditions of his existence, as well as the popular uprisings against established orders throughout history. And yet, with an eye toward the French Revolution and its regicides and deicides, he shows how inevitably the course of revolution leads to tyranny. As old regimes throughout the world collapse, The Rebel resonates as an ardent, eloquent, and supremely rational voice of conscience for our tumultuous times. Translated from the French by Anthony Bower.","The Shining. First published in 1977, The Shiningquickly became a benchmark in the literary career of Stephen King. This tale of a troubled man hired to care for a remote mountain resort over the winter, his loyal wife, and their uniquely gifted son slowly but steadily unfolds as secrets from the Overlook Hotel's past are revealed, and the hotel itself attempts to claim the very souls of the Torrance family. Adapted into a cinematic masterpiece of horror by legendary director Stanley Kubrick -- featuring an unforgettable performance by a demonic Jack Nicholson -- The Shiningstands as a cultural icon of modern horror, a searing study of a family torn apart, and a nightmarish glimpse into the dark recesses of human weakness and dementia.","The Dream Kingdom (The Morland Dynasty #26). 1908 - Edwardian period; Aviation In the height of Edwardian splendour, Jessie and Violet share a sparkling London debut. At Morland Place, Teddy's business is expanding and he brings home a new wife, to the anxiety of his sister Henrietta who knows there can't be two mistresses of the house. England is a land of confidence and opportunity but below the surface troubles are stirring. The death of the King brings to a head the constitutional crisis, while abroad the flexing of Russian and German might are an ominous sign of the dangers that lie ahead.","Seduction and Betrayal: Women and Literature. The novelist and essayist Elizabeth Hardwick is one of contemporary America's most brilliant writers, and Seduction and Betrayal, in which she considers the careers of women writers as well as the larger question of the presence of women in literature, is her most passionate and concentrated work of criticism. A gallery of unforgettable portraits--of Virginia Woolf and Zelda Fitzgerald, Dorothy Wordsworth and Jane Carlyle--as well as a provocative reading of such works as Wuthering Heights, Hedda Gabler, and the poems of Sylvia Plath, Seduction and Betrayalis a virtuoso performance, a major writer's reckoning with the relations between men and women, women and writing, writing and life.","Seminole Song. Amid rising tensions in 1830's Florida, The Seminole Indians retreat into the swamps of the Everglades rather than be sent to reservations. They are joined there by slaves fleeing cruel plantation owners. One such slave is Calida, who once saved the life of the war chief Panther, and who witnessed her master murder his wife. Soon, Panther and Calida are deeply in love--with enemies closing in on both sides.","Stay!: Keeper's Story. This is the story of a dog who tells his own tale. As a pup he is separated from his mother and siblings. This unusual dog learns about living on the dangerous streets and even makes up poetry. He finds human friends, has the chance to win fame and fortune, and is given the name Keeper. Through it all Keeper can't forget his long lost-little sister. If only they could be together again, life would be perfect. But an old enemy is watching and waiting to make his move. -Throughout this lighthearted saga of the narrator's 'dog days, ' the author proves she is as well versed in animal behavior as in human sensibilities.---Publishers Weekly","The Art of the Personal Essay: An Anthology from the Classical Era to the Present. For more than four hundred years, the personal essay has been one of the richest and most vibrant of all literary forms. Distinguished from the detached formal essay by its friendly, conversational tone, its loose structure, and its drive toward candor and self-disclosure, the personal essay seizes on the minutiae of daily life-vanities, fashions, foibles, oddballs, seasonal rituals, love and disappointment, the pleasures of solitude, reading, taking a walk -- to offer insight into the human condition and the great social and political issues of the day. ""The Art of the Personal Essay"" is the first anthology to celebrate this fertile genre. By presenting more than seventy-five personal essays, including influential forerunners from ancient Greece, Rome, and the Far East, masterpieces from the dawn of the personal essay in the sixteenth century, and a wealth of the finest personal essays from the last four centuries, editor Phillip Lopate, himself an acclaimed essayist, displays the tra",Encyclopedia Brown and the Case of the Slippery Salamander (Encyclopedia Brown #22).,"A History of Philosophy 1: Greece and Rome. Preface Introduction Pre-Socratic Philosophy The Socratic Period Plato Aristotle Post-Aristotelian Philosophy Appendices Index","Harry Potter ve Sırlar Odası (Harry Potter #2). Dursley'ler o yaz oylesine cekilmez olmuslardir ki, Harry bir an once okulu Hogwarts'a geri donmek icin can atmaktadir. Esyalarini toplarken ortaya cikan ev cini Dobby ise onu uyarir: Hogwarts'a donerse, bir felaket olacaktir. Olur da: Sirlar Odasi'nin acilmasiyla ortaya cikan karanlik bir guc, Hogwarts'takileri tasa cevirmeye baslar. Harry, hayatini tehlikeye atarak, Oda'nin elli yillik olumcul gizemini cozmeye calisir. Ve gercekten de basina gelmedik felaket kalmaz. Harry Potter'in okuldaki ikinci yilini anlatan Harry Potter ve Sirlar Odasi'nda J.K. Rowling, bildik ogrenci sorunlarini -kiskancliklar, rekabetler, cekingenlikler- yer yer urkutucu, yer yer komik dussel ogelerle ustaca ic ice geciriyor. Dizinin ilk kitabi Harry Potter ve Felsefe Tasi kadar surukleyici olan bu ikinci kitabi heyecandan solugunuzu tutarak okuyacaksiniz.","The Siege (Guardians of Ga'Hoole #4). Tensions erupt in the owl kingdom when the forces of evil wage war against the protectors of good. Enraged by his clash with Soren and driven by an all-consuming desire for power, Kludd and his group, the Pure Ones, launch an attack upon the Great Ga'Hoole Tree. The noble owls who live there must fight fiercely to protect their resources and defend their honor. Meanwhile, Soren is called upon by the elders of the Great Tree to lead a mission back to the one place he thought he'd never see again-St. Aegolius Academy for Orphaned Owls. He and his crew will have to enter St. Aggie's as spies, then leave unnoticed once their work is done. If peace is to be restored, he must do it again.",Interstellar Pig (Interstellar Pig #1).,"Where the Sidewalk Ends: Poems and Drawings. Shel Silverstein, the New York Timesbestselling author of The Giving Tree, A Light in the Attic, Falling Up, and Every Thing On It, has created a poetry collection that is outrageously funny and deeply profound. Come in...for where the sidewalk ends, Shel Silverstein's world begins. This special edition contains 12 extra poems. You'll meet a boy who turns into a TV set, and a girl who eats a whale. The Unicorn and the Bloath live there, and so does Sarah Cynthia Sylvia Stout who will not take the garbage out. It is a place where you wash your shadow and plant diamond gardens, a place where shoes fly, sisters are auctioned off, and crocodiles go to the dentist. Shel Silverstein's masterful collection of poems and drawings stretches the bounds of imagination and will be cherished by readers of all ages. This is a collection that belongs on everyone's bookshelf. Makes a great gift for special occasions such as holidays, birthdays, and graduation. And don't miss Runny Babbit Returns, the n","Gates of Fire. In 480 B.C., two million Persian invaders come to the mountain pass of Thermopylae in eastern Greece, where they are met by 300 of Sparta's finest warriors. The Greek loyalists battle for six days in a prelude to their ultimate victory.","The Book of Embraces. Parable, paradox, anecdote, dream, and autobiography blend into an exuberant world view and affirmation of human possibility.","Straken (High Druid of Shannara #3). The High Druid of Shannara trilogy draws to a thrilling close as a young hero nears completion of his trial by fire, a banished ruler fights for her life in a wilderness of dread, and forces of darkness and light square off in a battle unto death for the right to absolute rule. Prepare to be spellbound by the masterly hand of bestselling legend weaver Terry Brooks, conjuring at the peak of his skills. For reasons known only to himself, the King of the Silver River has charged young Penderrin Ohmsford, barely more than a boy, with the daunting task of rescuing his aunt, Grianne, Ard Rhys of the Druid order, from her forced exile in the terrifying dimension of all things damned: the Forbidding. With the noble dwarf Tagwen and the prodigal elven princess Khyber Elessedil by his side-and with the outcome of the bloody war between the Federation and the Free-born at stake-Pen has accepted his mission without question. But not without risk . . . or sacrifice. Because Shadea a'Ru, the ruthles","Presocratic Philosophy: A Very Short Introduction. Generations of philosophers, both ancient and modern, have traced their inspiration back to the Presocratics. Part of the fascination stems from the fact that little of what they wrote survives. Here Osborne invites her readers to dip their toes into the fragmentary remains of thinkers from Thales to Pythagoras, Heraclitus to Protagoras, and to try to reconstruct the moves that they were making, to support stories that Western philosophers and historians of philosophy like to tell about their past. This book covers the invention of western philosophy: introducing to us the first thinkers to explore ideas about the nature of reality, time, and the origin of the universe. About the Series: Combining authority with wit, accessibility, and style, Very Short Introductions offer an introduction to some of life's most interesting topics. Written by experts for the newcomer, they demonstrate the finest contemporary thinking about the central problems and issues in hundreds of key topics, from",Hitler's Willinge Vollstrecker: Ganz gewöhlnliche Deutsche und der Holocaust.,"Sugar Cookie Murder (Hannah Swensen #6). When it comes to holidays, Minnesotans rise to the occasion--and the little town of Lake Eden is baking up a storm with Hannah Swensen leading the way. The annual Christmas Buffet is the final test of the recipes Hannah has collected for the Lake Eden Holiday Buffet Cookbook. The recently divorced Martin Dubinski arrives at the buffet with his new Vegas showgirl wife--all wrapped up in glitter and fur. His ex-wife, however, seems as cool as chilled eggnog. And when Hannah's mother's antique Christmas cake knife disappears, its discovery in the decolletage of the new--and now late--Mrs. Dubinski puts the festivities on ice. With everyone stranded at the community center by a blizzard, Hannah puts her investigative skills to the test, using the ingredients at hand: half the town of Lake Eden--and a killer. Now, as the snowdrifts get higher, it's up to Hannah to dig out all the clues--and make sure that this white Christmas doesn't bring any more deadly tidings...","The Prophet of Yonwood. It's 50 years before the settlement of the city of Ember, and the world is in crisis. War looms on the horizon as 11-year-old Nickie and her aunt travel to the small town of Yonwood, North Carolina. There, one of the town's respected citizens has had a terrible vision of fire and destruction. Her garbled words are taken as prophetic instruction on how to avoid the coming disaster. If only they can be interpreted correctly. . . . As the people of Yonwood scramble to make sense of the woman's mysterious utterances, Nickie explores the oddities she finds around town--her great-grandfather's peculiar journals and papers, a reclusive neighbor who studies the heavens, a strange boy who is fascinated with snakes--all while keeping an eye out for ways to help the world. Is this vision her chance? Or is it already too late to avoid a devastating war? In this prequel to the acclaimed The City of Ember and The People of Sparks, Jeanne DuPrau investigates how, in a world that seems out of control,","The Histories. Herodotus is not only known as the `father of history', as Cicero called him, but also the father of ethnography; as well as charting the historical background to the Persian Wars, his curiosity also prompts frequent digression on the cultures of the peoples he introduces. While much of the information he gives has proved to be astonishingly accurate, he also entertains us with delightful tales of one-eyed men & gold-digging ants. This readable new translation is supplemented with expansive notes that provide readers the background that they need to appreciate the book in depth.","Monster Island (Monster Island #1). It's one month after a global disaster. The most ""developed"" nations of the world have fallen to the shambling zombie masses. Only a few pockets of humanity survive -- in places rife with high-powered weaponry, such as Somalia. In New York City, the dead walk the streets, driven by an insatiable hunger for all things living. One amongst them is different; though he shares their appetites he has retained his human intelligence. Alone among the mindless zombies, Gary Fleck is an eyewitness to the end of the world -- and perhaps the evil genius behind it all. From the other side of the planet, a small but heavily-armed group of schoolgirls-turned-soldiers has come in search of desperately needed medicine. Dekalb, a former United Nations weapons inspector, leads them as their local guide. Ayaan, a crack shot at the age of sixteen, will stop at nothing to complete her mission. They think they are prepared for anything. On Monster Island they will find that there is something worse even than","Fullmetal Alchemist Vol. 1 (Fullmetal Alchemist #1). Alchemy: the mystical power to alter the natural world; something between magic, art and science. When two brothers, Edward and Alphonse Elric, dabbled in this power to grant their dearest wish, one of them lost an arm and a leg...and the other became nothing but a soul locked into a body of living steel. Now Edward is an agent of the government, a slave of the military-alchemical complex, using his unique powers to obey orders...even to kill. Except his powers aren't unique. The world has been ravaged by the abuse of alchemy. And in pursuit of the ultimate alchemical treasure, the Philosopher's Stone, their enemies are even more ruthless than they are...","Yanks: The Epic Story of the American Army in World War I. Fought far from home, World War I was nonetheless a stirring Americanadventure. The achievements of the United States during that war, often underrated by military historians, were in fact remarkable, and they turned the tide of the conflict. So says John S. D. Eisenhower, one of today's most acclaimed military historians, in his sweeping history of the Great War and the men who won it: the Yanks of the American Expeditionary Force. Their men dying in droves on the stalemated Western Front, British and French generals complained that America was giving too little, too late. John Eisenhower shows why they were wrong. The European Allies wished to plug the much-needed U.S. troops into their armies in order to fill the gaps in the line. But General John J. ""Black Jack"" Pershing, the indomitable commander of the AEF, determined that its troops would fight together, as a whole, in a truly American army. Only this force, he argued -- not bolstered French or British units -- could convince Ge","The Hamlet. The Hamlet, the first novel of Faulkner's Snopes trilogy, is both an ironic take on classical tragedy and a mordant commentary on the grand pretensions of the antebellum South and the depths of its decay in the aftermath of war and Reconstruction. It tells of the advent and the rise of the Snopes family in Frenchman's Bend, a small town built on the ruins of a once-stately plantation. Flem Snopes -- wily, energetic, a man of shady origins -- quickly comes to dominate the town and its people with his cunning and guile.","The Myth of the Eternal Return or Cosmos and History. This founding work of the history of religions, first published in English in 1954, secured the North American reputation of the Romanian emigre-scholar Mircea Eliade (1907-86). Making reference to an astonishing number of cultures & drawing on scholarship published in no less than half a dozen European languages, Eliade's ""The Myth of the Eternal Return makes both intelligible & compelling the religious expressions & activities of a wide variety of archaic & ""primitive"" religious cultures. While acknowledging that a return to the ""archaic"" is no longer possible, Eliade passionately insists on the value of understanding this view in order to enrich our contemporary imagination of what it is to be human.","Malinche. This is an extraordinary retelling of the passionate and tragic love between the conquistador Cortez and the Indian woman Malinalli, his interpreter during his conquest of the Aztecs. Malinalli's Indian tribe has been conquered by the warrior Aztecs. When her father is killed in battle, she is raised by her wisewoman grandmother who imparts to her the knowledge that their founding forefather god, Quetzalcoatl, had abandoned them after being made drunk by a trickster god and committing incest with his sister. But he was determined to return with the rising sun and save her tribe from their present captivity. When Malinalli meets Cortez she, like many, suspects that he is the returning Quetzalcoatl, and assumes her task is to welcome him and help him destroy the Aztec empire and free her people. The two fall passionately in love, but Malinalli gradually comes to realize that Cortez's thirst for conquest is all too human, and that for gold and power, he is willing to destroy anyone, even","Letters to a Young Artist. From ""the most exciting individual in American theater"" (Newsweek), here is Anna Deavere Smith's brass tacks advice to aspiring artists of all stripes. In vividly anecdotal letters to the young BZ, she addresses the full spectrum of issues that people starting out will face: from questions of confidence, discipline, and self-esteem, to fame, failure, and fear, to staying healthy, presenting yourself effectively, building a diverse social and professional network, and using your art to promote social change. At once inspiring and no-nonsense, Letters to a Young Artistwill challenge you, motivate you, and set you on a course to pursue your art without compromise.",A Clockwork Orange (Stage Play).,"The Secret City (Pyrates #1). Spies. Underground tunnels. Old maps. New enemies. Pirate oaths. Hidden treasure. Endless danger. This series has real boy appeal. It has a fast pace, adventure, international intrigue, and more. George is fascinated by his family's legacy, the stories that link his ancestors to the infamous pirate Captain Kidd. But for 12 years, everyone has told him the stories are rumors. Now George has discovered the truth. And the truth is hidden in the web of tunnels mysteriously dug underneath his house in Manhattan. There are secrets to be revealed, friendships to be tested, and ancient injustices to be set right. George and his friends will sink deep underground to a secret city in search of treasure, but they'll find they aren't the only ones looking for it - and there's much more at stake.","A Year in the Merde. Paul West, a young Englishman, arrives in Paris to start a new job - and finds out what the French are really like. They do eat a lot of cheese, some of which smells like pigs' droppings. They don't wash their armpits with garlic soap. Going on strike really is the second national participation sport after petanque. And, yes, they do use suppositories. In his first novel, Stephen Clarke gives a laugh-out-loud account of the pleasures and perils of being a Brit in France. Less quaint than A Year in Provence, less chocolatey than Chocolat, A Year in the Merdewill tell you how to get served by the grumpiest Parisian waiter; how to make perfect vinaigrette every time; how to make amour - not war; and how not to buy a house in the French countryside.","Sharing Good Times. Following his New York Times bestselling classics comes this sparkling account of the joys of sharing the simple pleasures of life from Jimmy Carter. In this wonderfully evocative volume, Jimmy Carter writes about the things that matter most, the simple relaxed days and nights that he has enjoyed with family and friends through the years and across the generations. Here are lively, witty accounts of exploring the outdoors with his father and with black playmates; making furniture; painting; pursuing new adventures and going places with children, grandchildren, and friends; and sharing life with his wife, Rosalynn. Sharing Good Timesis an inspirational guide for anyone desiring to stretch mind and heart and to combine work and pleasure.","The Dark Mirror (The Bridei Chronicles #1). THE DARK MIRROR is the first book in Juliet Marillier's Bridei Chronicles. Bridei is a young nobleman, a fosterling of one of the most powerful druids in the land, Briochan. All of Bridei's memories are of this dark and mysterious man who seems to be training him for a special purpose he will not divulge. But, everything changes when on one bitter MidWinter Eve Bridei discovers a child on their doorstep--a child abandoned by the fairie folk. In order to avoid the bad luck that seems to come with fairie folk, all counsel the babe's death. But, Bridei follows his instinct and, heedless of the danger, fights to save the child. Briochan, though wary, relents. As Bridei comes to manhood, and the foundling Tuala blossoms into a beautiful young woman, he begins to feel things he didn't know were possible. Briochan sees this and feels only danger, for Tuala could be a key part in Bridei's future...or could spell his doom.","The Ruby Ring. From critically acclaimed historical novelist Diane Haeger comes The Ruby Ring, an unforgettable story of love, loss, and immortal genius . . . Rome, 1520. The Eternal City is in mourning. Raphael Sanzio, beloved painter and national hero, has died suddenly at the height of his fame. His body lies in state at the splendid marble Pantheon. At the nearby convent of Sant'Apollonia, a young woman comes to the Mother Superior, seeking refuge. She is Margherita Luti, a baker's daughter from a humble neighborhood on the Tiber, now an outcast from Roman society, persecuted by powerful enemies within the Vatican. Margherita was Raphael's beloved and appeared as the Madonna in many of his paintings. Theirs was a love for the ages. But now that Raphael is gone, the convent is her only hope of finding an honest and peaceful life. The Mother Superior agrees to admit Margherita to their order. But first, she must give up the ruby ring she wears on her left hand, the ring she had worn in Raphael's sc","Fierce Invalids Home from Hot Climates. The Imaginary Invalid Like many of his characters, Tom Robbins appears to thrive on contradictory stimuli. His last novel, Half Asleep in Frog Pajamas,set its account of spiritual enlightenment and extraterrestrial influences against the credibly rendered backdrop of a faltering stock exchange. His latest, Fierce Invalids Home From Hot Climates,is also concerned with the quest for enlightenment but chooses for its hero a renegade operative for that supremely unenlightened, reflexively conservative institution, the Central Intelligence Agency. The operative in question is named, simply, Switters, and he gives new meaning to the phrase ""loose cannon."" Switters, along with a number of his fellow agents, sees himself as an ""angel,"" a subversive element dedicated to opposing the ""cowboys"" of the CIA, those zealots who have done so much damage in the name of our national interests. A born anarchist, Switters meditates, indulges in mind-altering substances, reads and rereads , and obsessivel","The Little Fire Engine. Mr. Small does it all! In this adventure, Fireman Small rushes to battle a fire in town. When the alarm bell rings, Fireman Small suits up and roars down the road in his shiny red fire engine. When he helps extinguish the fire and rescues a young girl, Fireman Small becomes a hero in Tinytown. Now back in print in full color, Lois Lenski's timeless story of Fireman Small and his little fire engine is sure to delight a new generation of young readers.","Oswald Chambers Abandoned to God: The Life Story of the Author of My Utmost for His Highest. What do you know about the man behind the popular devotional My Utmost for His Highest? Trace the life of Oswald Chambers from his boyhood in Scotland through an astounding journey of faith and trust in God's provision. From the United Kingdom to a YMCA training camp in Egypt during World War I, Chambers was a man utterly devoted to God and to sharing the timeless wisdom of the Bible with others. Discover a remarkable story, and find inspiration for your walk with Christ.","The Floating Opera and The End of the Road. The Floating Operaand The End Of The Roadare John Barth's first two novels. Their relationship to each other is evident not only in their ribald subject matter but in the eccentric characters and bitterly humorous tone of the narratives. Both concern strange, consuming love triangles and the destructive effect of an overactive intellect on the emotions. Separately they give two very different views of a universal human drama.",Till We Have Faces: A Myth Retold. This tale of two princesses - one beautiful and one unattractive - and of the struggle between sacred and profane love is Lewis' reworking of the myth of Cupid and Psyche and one of his most enduring works.,"The Builders. Nan Ryan lives by herself at Number 14 Chestnut Road. When it's heard that the builders are coming to work on the deserted house next door, everyone has an opinion.","The Lust Lizard of Melancholy Cove (Pine Cove #2). The town psychiatrist has decided to switch everybody in Pine Cove, California, from their normal antidepressants to placebos, so naturally--well, to be accurate, artificially--business is booming at the local blues bar. Trouble is, those lonely slide-guitar notes have also attracted a colossal sea beast named Steve with, shall we say, a thing for explosive oil tanker trucks. Suddenly, morose Pine Cove turns libidinous and is hit by a mysterious crime wave, and a beleaguered constable has to fight off his own gonzo appetites to find out what's wrong and what, if anything, to do about it.","The Body Farm (Kay Scarpetta #5). When an eleven-year-old girl is found murdered, Kay Scarpetta, Chief Medical Examiner for the Commonwealth of Virginia, gets another chance at stopping one of the most heartless and horrifying serial killers of her career: the demented Temple Gault.","The Untouchable. One of the most dazzling and adventurous writers now working in English takes on the enigma of the Cambridge spies in a novel of exquisite menace, biting social comedy, and vertiginous moral complexity. The narrator is the elderly Victor Maskell, formerly of British intelligence, for many years art expert to the Queen. Now he has been unmasked as a Russian agent and subjected to a disgrace that is almost a kind of death. But at whose instigation? As Maskell retraces his tortuous path from his recruitment at Cambridge to the airless upper regions of the establishment, we discover a figure of manifold doubleness: Irishman and Englishman; husband, father, and lover of men; betrayer and dupe. Beautifully written, filled with convincing fictional portraits of Maskell's co-conspirators, and vibrant with the mysteries of loyalty and identity, The Untouchableplaces John Banville in the select company of both Conrad and le Carre. Winner of the Lannan Literary Award for Fiction ""Contemporary fic","The Complete Short Stories of Mark Twain. For deft plotting, riotous inventiveness, unforgettable characters, and language that brilliantly captures the lively rhythms of American speech, no American writer comes close to Mark Twain. This sparkling anthology covers the entire span of Twain's inimitable yarn-spinning, from his early broad comedy to the biting satire of his later years. Every one of his sixty stories is here: ranging from the frontier humor of ""The Celebrated Jumping Frog of Calaveras County,"" to the bitter vision of humankind in ""The Man That Corrupted Hadleyburg,"" to the delightful hilarity of ""Is He Living or Is He Dead?"" Surging with Twain's ebullient wit and penetrating insight into the follies of human nature, this volume is a vibrant summation of the career of-in the words of H. L. Mencken-""the father of our national literature.""","Eureka Mill. The Asheville Citizen-Times writes: ""Every now and then a book comes along that transports us so thoroughly to another time and another way of life that, when we finally put it down, our own lives don't quite look the same. It is even more remarkable if the book is set where we live, a place we thought we'd been."" These poems make up a dramatic and lyrical portrait of the migration of poor Buncombe County farmers to a mill village outside Chester, S.C. However, the book is much more than documentary. Rash, whose grandparents and parents worked in the Eureka Mill interweaves his family's personal history with the broader texture of mill life, giving us at once intimacy and perspective, heart and understanding.","Peach Cobbler Murder (Hannah Swensen #7). As she sits in her nearly empty store on Groundhog Day, Hannah can only hope that spring is just around the corner - ""and that the popularity of the new Magnolia Blossom Bakery is just a passing fad. The southern hospitality of Lake Eden's two Georgia transplants, Shawna Lee and Vanessa Quinn, is grating on Hannah's nerves -"" and cutting into her profits. At least Hannah has her business partner Lisa's wedding to look forward to. Unfortunately, Shawna Lee has finagled an invitation to the reception - ""and is bringing her Southern Peach Cobbler for the dessert table. Things go from bad to worse when Shawna Lee and Hannah's sometime-boyfriend, Detective Mike Kingston, are no-shows to the wedding. When Hannah sees lights on at the Magnolia Blossom Bakery after the reception, she investigates -"" and finds Shawna Lee shot to death. With a little help from her friends, Hannah's determined to track down whoever had the right ingredients to whip up a murder.",The Electric Kool-aid Acid Test/The Kandy Kolored Tangerine Flake Streamline Baby/Radical Chic & Mau Mauing the Flak Catchers.,犬夜叉 17.,"The Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1). Seconds before the Earth is demolished to make way for a galactic freeway, Arthur Dent is plucked off the planet by his friend Ford Prefect, a researcher for the revised edition of The Hitchhiker's Guide to the Galaxy who, for the last fifteen years, has been posing as an out-of-work actor. Together this dynamic pair begin a journey through space aided by quotes from The Hitchhiker's Guide (""A towel is about the most massively useful thing an interstellar hitchhiker can have"") and a galaxy-full of fellow travelers: Zaphod Beeblebrox--the two-headed, three-armed ex-hippie and totally out-to-lunch president of the galaxy; Trillian, Zaphod's girlfriend (formally Tricia McMillan), whom Arthur tried to pick up at a cocktail party once upon a time zone; Marvin, a paranoid, brilliant, and chronically depressed robot; Veet Voojagig, a former graduate student who is obsessed with the disappearance of all the ballpoint pens he bought over the years.","The Choice: A Fable of Free Trade and Protectionism. Written as a novel, the book makes the complex concepts, issues and terminology of international trade understandable for students. Professors complain that their students cannot grasp the nature of how some economic tools are used or how they work in life. This novel bridges the gap of concepts with applications by use of a fictional story. David Ricardo comes to life to discuss international trade theory and policy with Ed Johnson, a fictional American television manufacturer seeking trade protection from television manufacturers. Their dialogue is a sophisticated, rigorous discussion of virtually every major issue in trade theory and policy. To illustrate the positive and normative effects of international trade and trade policy, Ricardo takes the reader and Ed Johnson into the future to see an America of free trade and an America of complete self-sufficiency. The fictional element brings these topics to life so that students gain the intuition and understanding of how trade changes","Inferno. In this superb translation of the Inferno, Allen Mendelbaum brings to life for contemporary readers the first and most famous part of Dante's Divine Comedy: the poet's classic journey through the underworld. Here is Dante at his ribald, shocking, and demonic best as he describes in unforgettably vivid detail his harrowing descent to the very bottom of Hell. Filled with politics and philosophy, humor and horror, the Infernois an epic poem at once personal and universal that provides a darkly illuminating view into our present world no less than Dante's own. For as we're lead to the last circle of the Inferno we recognize the very worst in human nature...and the ever-abiding potential for redemption. Complete with an introduction and commentary, this definitive dual-language edition is unsurpassed for its clarity, beauty, and faithfulness to the original.","Where Is Baby's Mommy? (A Lift-the-Flap Book). Is Mommy behind the chair? Is Mommy behind the plant? Join baby as he plays hide-and-seek with Mommy. The sturdy format and easy-to-lift flaps in this delightful interactive book are perfect for parents and children to share.","King Henry IV Part 1. David Scott Kastan lucidly explores the remarkable richness and the ambitious design of King Henry IV Part 1and shows how these complicate any easy sense of what kind of play it is. Conventionally regarded as a history play, much of it is in fact conspicuously invented fiction, and Kastan argues that the non-historical, comic plot does not simply parody the historical action but by its existence raises questions about the very nature of history. The full and engaging introduction devotes extensive discussion to the play's language, indicating how its insistent economic vocabulary provides texture for the social concerns of the play and focuses attention on the central relationship between value and political authority. Kastan also covers the recurrence of the word ""honor"" in the text and the role that women play. Appendices provide the sources of 1 Henry IV, discussions of Shakespeare's metrics, and the history of the manuscript. The appendix on casting features a doubling chart to sho",Wild Fire (The Hot Zone #3).,"All Around the Town. The author of the New York Times best-seller The Gangs of New York returns with a second volume of tales from Gotham's underworld. In this wonderfully colorful and surprising history, Herbert Asbury expands his purview beyond the Five Corners to the entire city of New York. From Lord Cornbury, a loonily corrupt, cross-dressing British governor of colonial days, to the Broadway pickpocket who built herself a mansion in Hoboken, where she set herself up as European royalty, to prohibitionist Carry Nation's first visit to a scornful city of saloons (and her memorable confrontation with the drunken John L. Sullivan), All Around the Town brings to vivid life a memorable range of characters, grifters, murderers, and madmen. Rediscovering a fascinating array of lost corners in the history of the city, Asbury shows that today's tabloid headlines have nothing on the daily goings-on 150 years ago. From ""The Sawing-Off of Manhattan Island"" to ""The Wickedest Man in New York"" to ""The Flour Riot of","Strange Fits of Passion. A labyrinthine tale of truth and deception from acclaimed novelist Anita ShreveEveryone believes that Maureen and Harrold English, two successful New York City journalists, have a happy, stable marriage. It's the early '70s and no one discusses or even suspects domestic abuse. But after Maureen suffers another brutal beating, she flees with her infant daughter to a coastal town in Maine. The weeks pass slowly, and just as Maureen begins to settle into her new life and new identity, Harrold reappears, bringing the story to a violent, unforgettable climax.",The Circle (Dan Lenson #3).,"Lucy Sullivan Is Getting Married. What happens when a psychic tells Lucy that she'll be getting married within the year? Her roommates panic! What is going to happen to their blissful existence of eating take-out, drinking too much wine, bringing men home, and never vacuuming? Lucy reassures her friends that she's far too busy arguing with her mother and taking care of her irresponsible father to get married. And then there's the small matter of not even having a boyfriend. But then Lucy meets gorgeous, unreliable Gus. Could he be the future Mr. Lucy Sullivan? Or could it be handsome Chuck? Or Daniel, the world's biggest flirt? Or even cute Jed, the new guy at work? Maybe her friends have something to worry about after all....","The Perennial Philosophy. The Perennial Philosophy is defined by its author as ""The metaphysic that recognizes a divine Reality substantial to the world of things and lives and minds."" With great wit and stunning intellect, Aldous Huxley examines the spiritual beliefs of various religious traditions and explains them in terms that are personally meaningful.",Real Estate Loopholes: Secrets of Successful Real Estate Investing.,Physics for Scientists and Engineers. For the calculus-based General Physics course primarily taken by engineers and scientists.,"Leviathan. New York Times bestselling author Paul Auster (The New York Trilogy) opens Leviathanwith the tearing of a bomb explosion and the death of one Benjamin Sachs. Ben's one-time best friend, Peter Aaron, begins to retrospectively investigate the transformation that led Ben from his enviable, stable life to one of a recluse. Both were once intelligent, yet struggling novelists until Ben's near-death experience falling from a fire escape triggers a tumble in which he becomes withdrawn and disturbed, living alone and building bombs in a far-off cabin. That is, until he mysteriously disappears, leaving behind only a manuscript titled Leviathan, pages rustling in the wind.","Ghosthunters and the Muddy Monster of Doom! (Ghosthunters #4). For use in schools and libraries only. With the fate of the world resting on the outcome of his battle against the mud-dripping minotaur, Tom's final exam is one that is certain to test his combined knowledge in the field and, if he survives, rightfully earn him his Ghosthunting Diploma once","A Long Shadow (Inspector Ian Rutledge #8). ""New Year's Eve, 1919. Scotland Yard's Inspector Ian Rutledge has accompanied his sister to the home of mutual friends for dinner but is called away by work. On the steps outside, he finds a brass cartridge casing that is seemingly identical to the countless others he'd seen during the war he still cannot forget. But this one has an engraving in the metal. Curious, he pockets it. Soon he finds another - in a most unexpected place."" These cartridge casings seem to point to unfinished business involving the war. A man with a dark secret, Rutledge already walks on the edge of sanity. Now someone is hunting him. But who? And will Rutledge live long enough to discover why?","The Fall of a Sparrow. Robert Hellenga, bestselling author of The Sixteen Pleasures, once again reveals his profound understanding of the strength and resilience of the human spirit in a compelling and masterful novel. Alan Woodhull (""Woody""), a classics professor at a small Midwestern college, finds himself convinced that life has taught him all the lessons he has to learn: After the tragic death of his beloved oldest daughter during a terrorist bombing in Italy seven years ago, his wife has left him and his two remaining daughters have grown up and moved away. Yet his decision to attend the trial of the terrorists and to return to the scene of the tragedy marks the beginning of a new life and the awakening of a new love.","Medicus (Gaius Petreius Ruso #1). Gaius Petrius Ruso is a divorced and down-on his luck army doctor who has made the rash decision to seek his fortune in an inclement outpost of the Roman Empire, namely Britannia. His arrival in Deva (more commonly known as Chester, England) does little to improve his mood, and after a straight thirty six hour shift at the army hospital, he succumbs to a moment of weakness and rescues an injured slave girl, Tilla, from the hands of her abusive owner. Now he has a new problem: a slave who won't talk and can't cook, and drags trouble in her wake. Before he knows it, Ruso is caught in the middle of an investigation into the deaths of prostitutes working out of the local bar. A few years earlier, after he rescued Emperor Trajan from an earthquake in Antioch, Ruso seemed headed for glory: now he's living among heathens in a vermin-infested bachelor pad and must summon all his forensic knowledge to find a killer who may be after him next. Who are the true barbarians, the conquered or the con","Ten Days to Self-Esteem. Do you wake up dreading the day? Do you feel ciscouraged with what you've accomplished in life? Do you want greater self-esteem, productivity, and joy in daily living? If so, you will benefit from this revolutionary way of brightening your moods without drugs or lengthy therapy. All you need is your own common sense and the easy-to-follow methods revealed in this book by one of the country's foremost authorities on mood and personal relationship problems. In Ten Days to Self-esteem, Dr. David Burns presents innovative, clear, and compassionate methods that will help you identify the causes of your mood slumps and develop a more positive outlook on life. You will learn that You feel the way you think: Negative feelings like guilt, anger, and depression do notresult from the bad things that happen to you, but from the way you thinkabout these events. This simple but revolutionary idea can change your life! You can change the way you feel: You will discover why you get depressed and learn","The Mist. Sound so visual you're literally engulfed by its bonechilling terror! Stephen King's sinister imagination and the miracle of 3-D sound transport you to a sleepy all-American town. It's a hot, lazy day, perfect for a cookout, until you see those strange dark clouds. Suddenly a violent storm sweeps across the lake and ends as abruptly and unexpectedly as it had begun. Then comes the mist...creeping slowly, inexorably into town, where it settles and waits, trapping you in the supermarket with dozens of others, cut off from your families and the world. The mist is alive, seething with unearthly sounds and movements. What unleashed this terror? Was it the Arrowhead Project---the top secret government operation that everyone has noticed but no one quite understands? And what happens when the provisions have run out and you're forced to make your escape, edging blindly through the dim light? ""The Mist"" has you in it grip, and this masterpiece of 3-D sound engineering surrounds you with horror","The Big U. The New York Times Book Reviewcalled Neal Stephenson's most recent novel ""electrifying"" and ""hilarious"". but if you want to know Stephenson was doing twenty years before he wrote the epic Cryptonomicon, it's back-to-school time. Back to The Big U, that is, a hilarious send-up of American college life starring after years out of print, The Big Uis required reading for anyone interested in the early work of this singular writer.","The Gift of Asher Lev. ""Rivals anything Chaim Potok has ever produced. It is a book written with passion about passion. You're not likely to read anything better this year."" THE DETROIT NEWS Twenty years have passed for Asher Lev. He is a world-renowned artist living in France, still uncertain of his artistic direction. When his beloved uncle dies suddenly, Asher and his family rush back to Brooklyn--and into a world that Asher thought he had left behind forever.... From the Paperback edition.","Philosophy Made Simple. Rudy Harrington is ready for a new life. His daughters are grown, his wife has died, and the idea of running an avocado grove in Texas suddenly seems infinitely more appealing than staying in his rambling Midwestern house. So a new life it is. Rudy heads off for a part of the world where he knows scarcely a soul. But he has a guide: a slender book called Philosophy Made Simple, each chapter highlighting the ideas of a different philosopher. No amount of Plato, Schopenhauer, or Sartre, however, can prepare Rudy for the surprises that emerge as he arranges for his daughter's Hindu wedding and gets to know Norma Jean - an elephant with a talent for painting - who is abandoned to Rudy's care and who leads him, ultimately, toward the prospect of a new love.","Tears of the Giraffe (No. 1 Ladies' Detective Agency #2). For use in schools and libraries only. The story of The No. 1 Ladies' Detective Agency continues as irrepressible sleuth Precious Ramotswe searches for a young man who vanished many years ago on the African plains, while dealing with her engagement to Mr. J. L. B. Matekoni, sudden and unexpected motherhood, and her recently promoted new assistant.",Operation Wandering Soul.,"Henry IV. In this meeting of two noted playwrights, Tom Stoppard has made a new version of Luigi Pirandello's masterpiece of madness and sanity. After a fall from his horse, an Italian aristocrat wakes up believing he is the medieval German emperor Henry IV. Twenty years later the woman he once loved visits him, accompanied by her lover and psychiatrist, who plans to shock ""Henry"" back to sanity. But is ""Henry"" as mad as they think? And what is madness anyway?","The Maiden (The Morland Dynasty #8). 1720: political intrigue besets the kingdom as the Stuarts try to claim the throne occupied by the Hanoverians and the Morlands have to use all their wiles to keep their fortunes intact. Jeremy Morland, sole heir to his father's will, has no option but to marry to cold-hearted Lady Mary to secure Hanoverian protection and safeguard his inheritance. Then the rebellion of '45 and the bloody massacre at Culloden thrust his daughter Jemima into the spotlight as the saviour of the family. Independent, single-minded, and a rare beauty, Jemima is a capable caretaker of the Morland heritage. Although Morland Place and its lands suffer from the excesses of her dissolute husband, Jemima's quiet courage earns her an abiding love and loyalty.","The Unexpected Guest: A Play In Two Acts. Full-length play. A thriller as well as a puzzler set in a foggy estate in Wales, this mystery opens as a stranger walks into a house to find a man murdered and his wife standing over him with a gun. But the woman is dazed and her confession unconvincing. So the unexpected guest decides to help her and blame the murder on an intruder. Later, the police discover clues that point to a man who died two years previously and a pandora's box of loves and hates, suspicions and intrigues is opened to the night air.",CSS: The Definitive Guide.,"Lady of Quality. Independent and spirited, Miss Annis Wychwood gives little thought to finding herself a suitable husband, thus dashing the dreams of many hopeful suitors. When she becomes embroiled in the affairs of the runaway heiress Lucilla, though, she encounters the beautiful fugitive's guardian - as rakish and uncivil a rogue she has ever met. Although chafing a bit at the restrictions of Regency society in Bath, Annis does have to admit that Oliver Carleton, at least, is never boring. Showing all the skills that won her a devoted worldwide readership, Georgette Heyer's Lady of Qualityis a dashing romance by the undisputed queen of the romantic novel.","The Woman in White. 'In one moment, every drop of blood in my body was brought to a stop... There, as if it had that moment sprung out of the earth, stood the figure of a solitary Woman, dressed from head to foot in white' The Woman in Whitefamously opens with Walter Hartright's eerie encounter on a moonlit London road. Engaged as a drawing master to the beautiful Laura Fairlie, Walter becomes embroiled in the sinister intrigues of Sir Percival Glyde and his 'charming' friend Count Fosco, who has a taste for white mice, vanilla bonbons, and poison. Pursuing questions of identity and insanity along the paths and corridors of English country houses and the madhouse, The Woman in Whiteis the first and most influential of the Victorian genre that combined Gothic horror with psychological realism. Matthew Sweet's introduction explores the phenomenon of Victorian 'sensation' fiction, and discusses Wilkie Collins's biographical and societal influences. Included in this edition are appendices on theatrical adapta","Drums of Autumn (Outlander #4). In this breathtaking novel--rich in history and adventure--The New York Timesbestselling author Diana Gabaldon continues the story of Claire Randall and Jamie Fraser that began with the now-classic novel Outlanderand continued in Dragonfly in Amberand Voyager. Once again spanning continents and centuries, Diana Gabaldon has created a work of sheer passion and brilliance.... It began at an ancient Scottish stone circle. There, a doorway, open to a select few, leads into the past--or the grave. Dr. Claire Randall survived the extraordinary passage, not once but twice. Her first trip swept her into the arms of Jamie Fraser, an eighteenth-century Scot whose love for her became a legend--a tale of tragic passion that ended with her return to the present to bear his child. Her second journey, two decades later, brought them together again in the American colonies. But Claire had left someone behind in the twentieth century--their daughter, Brianna.... Now Brianna has made a disturbing discov","Ellora's Cavemen: Dreams of the Oasis Volume II. Allergic to Love By Anna J. Evans Marcus Ashton is a werewolf searching for his one true mate. He's had his share of fantasies about the perfect woman, but none of them involved severe canine allergies or a colleague out to get him fired. Ella Bradley has had enough of controlling men and no amount of chemistry is going to change her mind, especially when she suspects the dangerously handsome Marcus of slipping libido-enhancing drugs into her cocoa. These two would-be lovers have less than twelve hours to clear up a major biological roadblock and a little human misunderstanding, or they may find themselves permanently allergic to love. Blind Date By Elisa Adams Ruthie Ryan has been unlucky in love. Her recent dates have all been complete disasters. There's only one man she's ever met who really gets her -- but he's out of the question. He's her best friend. Mike wants more than friendship with Ruthie, but she doesn't believe him. Sick of waiting for her to take him seriously, he sets u","The Burglar Who Painted Like Mondrian (Bernie Rhodenbarr #5). It's not that used bookstore owner and part-time burglar Bernie Rhodenbarr believes the less legal of his two professions is particularly ethical. (It is, however, a rush, and he is very good at it.) He just thinks it's unfair to face a prison term for his legitimate activities. After appraising the worth of a rich man's library -- conveniently leaving his fingerprints everywhere in the process -- Bernie finds he's the cops' prime suspect when his client is murdered. Someone has framed Bernie Rhodenbarr better than they do it at the Whitney. And if he wants to get out of this corner he's been masterfully painted into, he'll have to get to the bottom of a rather artful -- if multiply murderous -- scam.","Convergence Culture: Where Old and New Media Collide. Convergence Culture maps a new territory: where old and new media intersect, where grassroots and corporate media collide, where the power of the media producer and the power of the consumer interact in unpredictable ways. Henry Jenkins, one of America's most respected media analysts, delves beneath the new media hype to uncover the important cultural transformations that are taking place as media converge. He takes us into the secret world of ""Survivor"" Spoilers, where avid internet users pool their knowledge to unearth the show's secrets before they are revealed on the air. He introduces us to young ""Harry Potter"" fans who are writing their own Hogwarts tales while executives at Warner Brothers struggle for control of their franchise. He shows us how ""The Matrix"" has pushed transmedia storytelling to new levels, creating a fictional world where consumers track down bits of the story across multiple media channels.Jenkins argues that struggles over convergence will redefine the face o","The Aeneid (Verse Translation). Aeneas flees the ashes of Troy to found the city of Rome and change forever the course of the Western world--as literature as well. Virgil's ""Aeneid"" is as eternal as Rome itself, a sweeping epic of arms and heroism--the searching portrait of a man caught between love and duty, human feeling and the force of fate--that has influenced writers for over 2,000 years. Filled with drama, passion, and the universal pathos that only a masterpiece can express. ""The Aeneid"" is a book for all the time and all people.""Allen Mandelbaum has produced a living ""Aeneid,"" a version that is unmistakably poetry."" -- Erich Segal, ""The New York Times Book Review"" ""A brilliant translation; the only one since Dryden which reads like English verse and conveys some of the majesty and pathos of the original."" -- Bernard M. W. Knox ""Mandelbaum has... given us a contemporary experience of the masterpiece, at last."" -- David Ignatow","Who's To Blame (Sweet Valley High #66). Elizabeth and Jessica Wakefield's parents have separated. Mr. Wakefield has moved into an apartment of his own, and the house seems empty without him. Elizabeth has never been so miserable. She would do anything to bring her family together again. Then Jessica tells her twin that she thinks their parents' separation is all Elizabeth's fault. Distraught and guilt-ridden, Elizabeth decides to move away from home. If she really is the cause of her parents' unhappiness, perhaps they'll get back together once she is out of their way.",Invisible Residents: The Reality of Underwater UFOs.,"Le Portrait de Dorian Gray. Dorian Gray est un jeune homme pur et incroyablement beau. Dans l'atelier du peintre qui realise son portrait, il rencontre lord Henry Wotton, un dandy cynique immediatement seduit par sa fraicheur. En contemplant son image sur la toile, Dorian prend subitement conscience que sa beaute n'est qu'ephemere. Il souhaite alors que ce soit le portrait qui accuse les marques du temps et non son visage. Les jours qui suivent, Dorian ne quitte plus lord Henry, qui exerce une influente grandissante sur lui. Une nuit, le jeune homme commet un acte d'une grande cruaute. De retour chez lui, il remarque un leger changement sur le portrait... En bonus : les inedits de GEO. Pour decouvrir l'oeuvre et son auteur a travers un resume et une biographie. Pour mieux connaitre et comprendre le monde qui nous entoure des enquetes et des documents riches et passionnants autour des themes de l'oeuvre. Une nouvelle aventure commence... Dorian Gray subit l'ascendant nefaste d'un homme manipulateur. L'enfance et l",Nova Express (The Nova Trilogy #3).,"The Complete Stories of Robert Louis Stevenson: Strange Case of Dr. Jekyll and Mr. Hyde and Nineteen Other Tales. The complexity and range of Robert Louis Stevenson's short fiction reveals his genius perhaps more than any other medium. Here, leading Stevenson scholar Barry Menikoff arranges and introduces the complete selection of Stevenson's brilliant stories, including the famed masterpiece Strange Case of Dr. Jekyll and Mr. Hyde, as well as ""The Beach of Falesa"" and Stevenson's previously uncollected stories. Arthur Conan Doyle has written that ""[Stevenson's] short stories are certain to retain their position in English literature. His serious rivals are few indeed."" This Modern Library Paperback Classics edition includes explanatory notes, a Scots' Glossary, and a unique appendix dedicated to Stevenson's influence on the Oxford English Dictionary.","Real Ultimate Power: The Official Ninja Book. Dear Stupid Idiots, A lot of you have been saying that I don't know anything about REAL ninjas. But that's a bunch of bull crap! You dummies don't know anything. And maybe YOU should get a life. I bet a lot of you have never even seen a girl naked! You idiots believe that ninjas had some ""code of honor."" Yeah right! If by ""code of honor,"" you mean ""code to flip out and go nuts for absolutely no reason at all even if it means that people might think you are totally insane or sweet,"" then you are right. But if you mean a ""code to be nice and speak nicely while sharing and not cutting off heads,"" then you're the biggest idiot ever!!!!!! So if you have any brains, you will shut up and get a life. So go shut up, you stupid idiot. No thank you, Robert Hamburger","My Wicked Pirate. First he gave her a wicked kiss... Azure-eyed Alanis was by far the most exquisite treasure ever claimed by the black pirate known as the Viper, but his motives went deeper than his silken promise to ravish the feisty Yorkshire heiress. Commanding the waters of the Caribbean was his means to an end: reclaiming his birthright--and his blood debt against those who had betrayed him. Then he gave her nights of wicked pleasure... Comfortably betrothed to a nobleman, Alanis never imagined the heady emotions involved in the true games of seduction--games this blackguard seemed to thoroughly enjoy playing with her. Swept up into an adventure that soon revealed a gentleman and kindred spirit beneath the ruthless veneer of a privateer, Alanis began to soften towards her enigmatic captor, as her pride and her heart fell under his erotic spell.","The Physician (Cole Family Trilogy #1). In the 11th century, Rob Cole left poor, disease-ridden London to make his way across the land, hustling, juggling, peddling cures to the sick--and discovering the mystical ways of healing. It was on his travels that he found his own very real gift for healing--a gift that urged him on to become a doctor. So all consuming was his dream, that he made the perilous, unheard-of journey to Persia, to its Arab universities where he would undertake a transformation that would shape his destiny forever.",Mistaken Identity.,Measle and the Dragodon.,"Burning The Map. The choices Casey Evers has made in her twenty-six years aren't exactly making her happy. In fact, her life is so on course--college, law school, boyfriend, job offer--that it's actually off. So, before she slides into fourteen-hour days at a Chicago law firm, she heads to Rome and Greece with her two best friends for one last hurrah. The thing is, her best friends haven't really been all that close to her since she started seeing John two years ago, she hasn't been all that close to John lately, and she's awfully partial to Mediterranean men... I rest my head against his shoulder. The scooter starts to fly again, and Rome whizzes by--a myriad of fountains, marble statues, larger-than-life doors with gigantic handles, streets that look like alleys... The rigidity that has settled in my bones and head over the past year seems to thaw a bit. Yet with the thaw comes an army of questions from some unused corner of my brain. What about John? Will you tell him about this little excursion, th","Sad Underwear and Other Complications: More Poems for Children and Their Parents. Knock, knock. Who's there? Someone with sad underwear. Sad underwear? How can that be? When my best friend's mad at me, Everything is sad. Even my underwear. Only Judith Viorst, with the perfect pitch for the trials of childhood that has made her Alexander books modern classics, could create an ode to melancholy unmentionables. But the title poem is just one of the many pleasures in this collection, which bursts with wit and understanding -- and the occasional poignant note. Sure to delight readers of Shel Silverstein and Jack Prelutsky, as well as Viorst's own legions of fans, Sad Underwearis a perfect companion volume to her celebrated If I Were In Charge of the World.","The Broker. In his final hours in the Oval Office, the outgoing President grants a controversial last-minute pardon to Joel Backman, a notorious Washington power broker who has spent the last six years hidden away in a federal prison. What no one knows is that the President issues the pardon only after receiving enormous pressure from the CIA. It seems Backman, in his power broker heyday, may have obtained secrets that compromise the world's most sophisticated satellite surveillance system. Backman is quietly smuggled out of the country in a military cargo plane, given a new name, a new identity, and a new home in Italy. Eventually, after he has settled into his new life, the CIA will leak his whereabouts to the Israelis, the Russians, the Chinese, and the Saudis. Then the CIA will do what it does best: sit back and watch. The question is not whether Backman will survive, there is no chance of that. The question the CIA needs answered is, who will kill him? From the Hardcover edition.","The Dirty Duck (Richard Jury #4). ""Nothing ever happens in Stratford,"" insisted Superintendent Richard Jury of Scotland Yard. Unfortunately, he was wrong. Besides the stage murders commited nightly at the Royal Shakespeare Theatre, a real one had been performed not far from the Dirty Duck, a popular pub. The victim had been a member of an exclusive group too: Those rare homicidal maniacs compelled to leave an intentional clue - in this case, a fragment of Elizabethan verse. Now a nine-year old boy from the same tour had vanished and Jury was worried. For, if the killer intended to finish the rhyme, would it spell death for Stratford with each new line?","Slapstick or Lonesome No More!. Slapstick presents an apocalyptic vision as seen through the eyes of the current King of Manhattan (and last President of the United States), a wickedly irreverent look at the all-too-possible results of today's follies. But even the end of life-as-we-know-it is transformed by Kurt Vonnegut's pen into hilarious farce--a final slapstick that may be the Almighty's joke on us all.","Forfeit. When reporter Bert Checkov falls to his death, his colleague James Tyrone thinks he can prove it was murder. But there's no such thing as a sure thing.","The Summons / The Brethren. The Summons Once Judge Atlee was a powerful figure in Clanton, Mississippi-a pillar of the community who towered over local law and politics for forty years. Now the judge is a shadow of his former self, a sick, lonely old man who has withdrawn to his sprawling ancestral home. Knowing the end is near, Judge Atlee has issued a summons for his two sons to return to Clanton to discuss his estate. The summons is typed by the judge himself, on his handsome old stationery, and gives the date and time for his sons Ray and Forrest to appear in his study. But the judge dies too soon, and in doing so leaves behind a shocking secret. The Brethren They call themselves the Brethren: three disgraced former judges doing time in a Florida federal prison. Meeting daily in the prison law library, taking exercise walks in their boxer shorts, these judges-turned-felons can reminisce about old court cases, dispense a little jailhouse justice, and contemplate where their lives went wrong. Or they can use t","Pragmatic Version Control: Using Subversion (The Pragmatic Starter Kit Series). This book covers the theory behind version control and how it can help developers become more efficient, work better as a team, and keep on top of software complexity. Version control, done well, is your ""undo"" button for the project: nothing is final, and mistakes are easily rolled back. This book describes Subversion 1.3, the latest and hottest open source version control system, using a recipe-based approach that will get you up and running quickly and correctly. Learn how to use Subversion the right way-the pragmatic way. With this book, you can: Keep all project assets safe--not just source code--and never run the risk of losing a great idea Know how to undo bad decisions--even directories and symlinks are versioned Learn how to share code safely, and work in parallel for maximum efficiency Install Subversion and organize, administer and backup your repository Share code over a network with Apache, svnserve, or ssh Create and manage releases, code branches, merges and bug fixes Ma","Eva Luna. Conceived in an embrace designed to comfort a dying man, born to a servant and raised as a hired hand, Eva Luna learns quickly that she has a talent that belies her humble start: the gift of storytelling. As the years pass and her imprudent nature sends Eva from household to household--from the home of a doctor famed for mummifying the dead to a colorful whorehouse and the care of a beautiful transsexual--it is Eva's magical imagination that keeps her alive and fuels her ardent encounters with lovers of all kinds. And as her South American homeland teeters on the brink of political chaos, and Eva's fate is intertwined with guerrilla fighters and revolutionaries, she will find her life's calling--and the soul mate who will envelop her in a love entirely beyond her mystical inventions. Eva Lunais a literary triumph, a novel brimming with battles and passions, rebellions and reunions--and some of the most exquisite characters Isabel Allende has ever created.","The Abominable Snowman Doesn't Roast Marshmallows (The Adventures of the Bailey School Kids #50). A funny and spooky new adventure in the best-selling and beloved series about a town where the grown-ups are more than a little weird. There are some pretty weird grown-ups living in Bailey City. But could the frosty stranger in town for the Winter Carnival really be . . . the Abominable Snowman? The Bailey School kids are going to find out!",The Catcher in the Rye: Annotations and Study Aids.,"Dr. Seuss's ABC. This is an adaptation from Dr. Seuss's ABC Published by Random House in 1963. Simple, Silly, Sturdy Books for Babies of All Ages!","Hart's Hope. Your name was Asineth and you were cruelly used in the name of mercy. Palicrovol's cruelty ran like your virgin blood, down the streets of Hart's Hope, and named the city with the name of your shame. But because you dared to unmake what he dared to make, today you are Queen Beauty. And because you know the uses of the living blood, eternity is yours to savor revenge. Queen Beauty, beware. For the Hart has bred a son and what can be unmade can be unmade again... From the back cover of ISBN 0425058190 / 9780425058190","Something Borrowed. To honor a dying friend's wish, Lee gives up his life as a lawman, becomes guardian to a little girl, and vows to find a wife. The woman he has in mind is Mary, a part-Cherokee schoolteacher. But her marriage to a wealthy banker has already been arranged. Will Mary leave money for love?","I Married a Communist (The American Trilogy #2). I Married a Communistis the story of the rise and fall of Ira Ringold, a big American roughneck who begins life as a teenage ditch-digger in 1930s Newark, becomes a big-time 1940s radio star, and is destroyed, as both a performer and a man, in the McCarthy witchhunt of the 1950s. In his heyday as a star--and as a zealous, bullying supporter of ""progressive"" political causes--Ira marries Hollywood's beloved silent-film star, Eve Frame. Their glamorous honeymoon in her Manhattan townhouse is shortlived, however, and it is the publication of Eve's scandalous bestselling expose that identifies him as ""an American taking his orders from Moscow."" In this story of cruelty, betrayal, and revenge spilling over into the public arena from their origins in Ira's turbulent personal life, Philip Roth--who Commonwealcalls the ""master chronicler of the American twentieth century--has written a brilliant fictional portrayal of that treacherous postwar epoch when the anti-Communist fever not only infect","The Republic. Presented in the form of a dialogue between Socrates and three different interlocutors, this classic text is an enquiry into the notion of a perfect community and the ideal individual within it. During the conversation, other questions are raised: what is goodness?; what is reality?; and what is knowledge? The Republic also addresses the purpose of education and the role of both women and men as guardians of the people. With remarkable lucidity and deft use of allegory, Plato arrives at a depiction of a state bound by harmony and ruled by philosopher kings.",The American Flag (Symbols of America).,"Betsy and the Great World (Betsy-Tacy #9). It's the trip of a lifetime. Betsy Ray, 21 years old, is heading off for a solo tour of Europe. From the moment she casts off, her journey is filled with adventure - whether she's waltzing at the captain's ball, bartering for beads in Madeira, or sipping coffee at a bohemian cafe in Munich.",After Collapse: The Regeneration of Complex Societies.,Ad Infinitum... The Ghost in Turing's Machine: Taking God Out of Mathematics and Putting the Body Back In. An Essay in Corporeal Semiotics.,"Rape: A Love Story. Teena Maguire should not have tried to shortcut her way home that Fourth of July. Not after midnight, not through Rocky Point Park. Not the way she was dressed in a tank top, denim cutoffs, and high-heeled sandals. Not with her twelve-year-old daughter Bethie. Not with packs of local guys running loose on hormones, rage, and alcohol. A victim of gang rape, left for dead in the park boathouse, the once vivacious Teena can now only regret that she has survived. At a relentlessly compelling pace punctuated by lonely cries in the night and the whisper of terror in the afternoon, Joyce Carol Oates unfolds the story of Teena and Bethie, their assailants, and their unexpected, silent champion, a man who knows the meaning of justice. And love.",Medea.,"Riley in the Morning. One of romance's best-loved authors, Sandra Brown creates love stories whose ""larger-than-life heroes and heroines make you believe all the warm, wonderful, wild things in life"" (Rendezvous). Now the New York Times bestselling author delivers a poignant, funny, and irresistibly sensual novel about one night in the life of a man and a woman that will change their future forever. Television producer Brin Cassidy was throwing the biggest dinner party of her life. And with everything in utter chaos, who should show up unannounced on her doorstep but her handsome estranged husband, Jon Riley. Brin had not only worked with the popular star of Riley in the Morning, she had fallen in love with and married him. She knew she owed Riley an explanation for why she walked out. But did he have to come on this of all nights? Temperamental, charismatic, and devastatingly blue-eyed, Riley was a man who knew what he wanted, and he wasn't leaving until he got it. But the sensuous and strong-willed beauty","Julie and Julia: My Year of Cooking Dangerously. Now in paperback-the format in which it's destined to become a reading group favorite-the most heralded and hilarious memoir of recent years: Nearing 30 and trapped in a dead-end secretarial job, Julie Powell reclaims her life by cooking every single recipe in Julia Child's legendary Mastering the Art of French Cooking in the span of one year. It's a hysterical, inconceivable redemptive journey - life rediscovered through aspics, calves' brains and creme brulee. The bestselling memoir that's ""irresistible....A kind of Bridget Jones meets The French Chef"" (Philadelphia Inquirer) is now a major motion picture directed by Nora Ephron, starring Amy Adams as Julie and Meryl Streep as Julia, the film Julie & Julia will be released by Sony Pictures on August 7, 2009.","The Grace Awakening: Believing in Grace Is One Thing. Living it Is Another. The Grace Awakeningcalls all Christians to wake up and reject living in such legalistic, performance-oriented bondage. The God of the universe has given us an amazing, revolutionary gift of grace and freedom. This freedom and grace set us apart from every other ""religion"" on the face of the earth. In this best-selling classic, Charles Swindoll urges you not to miss living a grace-filled life. Freedom and joy-not lists and demands and duties-await all who believe in the Lord Jesus Christ.","'Salem's Lot. Upon its initial publication in 1975, 'Salem's Lot' was recognized as a landmark work. The novel has sold millions of copies in various editions, but it wasn't until Centipede Press published a special limited edition in 2004 that King's masterpiece was brought to brilliant and eerie life. With the addition of fifty pages of material deleted from the 1975 manuscript as well as material that has since been modified by King, an introduction by him, and two short stories related to the events of the novel, this edition represents the text as the author envisioned it. Centipede's deluxe edition, of which only 900 copies were printed, features lavishly creepy photographs by acclaimed photographer Jerry Uelsmann, printed interior endpapers, and a stunning page design. Doubleday is proud to make this volume, printed from the original design of the Centipede Press edition, available to the general reader. No King aficionado's library will be complete without owning this definitive illustrated","The City of God. One of the great cornerstones in the history of Christian philosophy, The City of God provides an insightful interpretation of the development of modern Western society and the origin of most Western thought. Contrasting earthly and heavenly cities--representing the omnipresent struggle between good and evil--Augustine explores human history in its relation to all eternity. In Thomas Merton's words, ""The City of God is the autobiography of the Church written by the most Catholic of her great saints."" This Modern Library edition is a complete and unabridged version of the 1871 Marcus Dods translation.","Parallel Worlds: A Journey through Creation Higher Dimensions and the Future of the Cosmos. In this thrilling journey into the mysteries of our cosmos, bestselling author Michio Kaku takes us on a dizzying ride to explore black holes and time machines, multidimensional space and, most tantalizing of all, the possibility that parallel universes may lay alongside our own. Kaku skillfully guides us through the latest innovations in string theory and its latest iteration, M-theory, which posits that our universe may be just one in an endless multiverse, a singular bubble floating in a sea of infinite bubble universes. If M-theory is proven correct, we may perhaps finally find answer to the question, ""What happened before the big bang?"" This is an exciting and unforgettable introduction into the new cutting-edge theories of physics and cosmology from one of the pre-eminent voices in the field.",Letters from Africa 1914-1931.,David Boring.,"Anthonology. CONTENTS: Possible to Rue; The Toaster; Quinquepedalian; Encounter; Phog; The Ghost Galaxies; Within the Cloud; The Life of the Stripe; In the Jaws of Danger; Beak by Beak; Getting Through University; In the Barn; Up Schist Crick; The Whole Truth; The Bridge; On the Uses of Torture; Small Mouth, Bad Taste; Wood You?; Hard Sell; Hurdle; Gone to the Dogs.","The Color of Water: A Black Man's Tribute to His White Mother. No fiction could be more unique and uplifting than this real-life biography of Rachel Deborah Shilsky, the daughter of an angry Orthodox Jewish rabbi in the South who runs off to Harlem, marries a black man, becomes a Baptist, and founds an all-black church. And puts 12 children through college! James McBride recalls his confusion as a black child of a white mother, the hardships of his childhood, and his own flirtation with drugs and violence, in the struggle to make peace with his own identity. Performed by Andre Braugher and Lainie Kazan, this extraordinary and best-selling memoir offers a special reflection on race and identity, a beautiful tribute to a mother from her son.","The Santaroga Barrier. Santaroga seemed to be nothing more than a prosperous farm community. But there was something ... different ... about Santaroga. Santaroga had no juvenile delinquency, or any crime at all. Outsiders found no house for sale or rent in this valley, and no one ever moved out. No one bought cigarettes in Santaroga. No cheese, wine, beer or produce from outside the valley could be sold there. The list went on and on and grew stranger and stranger. Maybe Santaroga was the last outpost of American individualism. Maybe they were just a bunch of religious kooks... Or maybe there was something extraordinary at work in Santaroga. Something far more disturbing than anyone could imagine.","Lovely in Her Bones (Elizabeth MacPherson #2). ""Who but Sharyn McCrumb can make a skull with a bullet hole funny? Those who like sardonic wit, slightly bent characters, and good fun will love LOVELY IN HER BONES."" Tony Hillerman The sequel to SICK OF SHADOWS. When an Appalachian dig to determine if an obscure Indian tribe in North Carolina can lay legal claim to the land they live on is stopped on account of murder, Elizabeth MacPherson -- eager student of the rites of the past and mysteries of the present -- starts digging deep. And when she mixes a little modern know-how with some old-fashioned suspicions, Elizabeth comes up with a batch of answers that surprise even the experts....","Fables & Reflections (The Sandman #6). Fables & Reflections (1993) is the sixth collection of issues in the DC Comics series, The Sandman. It was written by Neil Gaiman and illustrated by Bryan Talbot, Stan Woch, P. Craig Russell, Shawn McManus, John Watkiss, Jill Thompson, Duncan Eagleson, Kent Williams, Mark Buckingham, Vince Locke and Dick Giordano, coloured by Danny Vozzo and Lovern Kindzierski/Digital Chameleon, and lettered by Todd Klein. The introduction is written by Gene Wolfe. The issues in the collection first appeared in 1991, 1992 and 1993. The collection first appeared in paperback and hardback in 1993. The book contains four tales under the banner of ""Distant Mirrors"", containing Issue #29 ""Thermidor"", #30 ""August"", #31 ""Three Septembers and a January"" and #50 ""Ramadan"". Three of the issues making up the ""Distant Mirrors"" group were published between the ""Season of Mists"" and ""A Game of You"" story arcs. The last, ""Ramadan"", was written contemporaneously, but because of art delays DC published it as Issue #50,","Nonfiction. Chuck Palahniuk's world has been, well, different from yours and mine. The pieces that comprise Nonfiction prove just how different, in ways both highly entertaining and deeply unsettling. Encounters with alternative culture heroes Marilyn Manson and Juliette Lewis; the peculiar wages of fame attendant on the big budget film production of the movie Fight Club; life as an assembly-line drive train installer by day, hospice volunteer driver by night; the really peculiar lives of submariners; the really violent world of college wrestlers; the underground world of anabolic steroid gobblers; the harrowing circumstances of his father's murder and the trial of his killer - each essay or vignette offers a unique facet of existence as lived in and/or observed by one of America's most flagrantly daring and original literary talents.","Pope Joan: Translated & Adapted from the Greek. In this brilliant adaptation of a novel by the 19th century Greek author Emmanuel Royidis, Lawrence Durrell traces the remarkable history of a young woman who travelled across Europe in the ninth century disguised as a monk, acquired great learning, and ruled over Christendom for two years as Pope John VIII before her sudden and surprising death. When Papissa Joannawas first published in Athens in 1886 it created a sensation. The book was banned and its author excommunicated. It nevertheless brought him immediate fame and the work established itself securely in the history of modern Greek literature. Subsequently Durrell, one of the most important British writers of the 20th century, created a masterpiece in its own right--a dazzling concoction presented with the deftest touch.",Hell No We Won't Go! Resisting the Draft During the Vietnam War.,"How to Be Happy All the Time. The human drive for happiness is one of our most far-reaching and fundamental needs. Yet, despite our desperate search for happiness, according to a recent Gallup Poll, only a minority of North Americans describe themselves as very happy. It seems that very few of us have truly unlocked the secrets of lasting joy and inner peace. Now, in this volume of all-new, never-before-released material, Paramhansa Yogananda who has hundreds of thousands of followers and admirers in North America playfully and powerfully explains virtually everything needed to lead a happier, more fulfilling life. Topics covered include: looking for happiness in the right places; choosing to be happy; tools and techniques for achieving happiness; sharing happiness with others; balancing success and happiness, and many more. The Wisdom of Yogananda series features writings of Paramhansa Yogananda not available elsewhere. These books capture the Master's expansive and compassionate wisdom, his sense of fun, and his","The Celestine Prophecy: An Experiential Guide. James Redfield's The Celestine Prophecy is an extraordinary, life-changing book. Perhaps you, like millions of readers, have discovered in its pages a new vision of coincidences in your own life, the energies involved in communicating with others, and the purposes behind human history. Now, this companion handbook to that inspiring work helps you intensify and expand the exciting knowledge contained in each of the nine insights of The Celestine Prophecy. Through detailed explanations and carefully designed exercises, you can uncover further revelations about your family and partners, and the ways your past has been a preparation for the special contribution you can make to the world today.","The Ghost Stories of Edith Wharton. These 11 spine-tingling tales of the supernatural bring to light the author's interest in the traditional New England ghost story and her fascination with spirits, hauntings, and other phenomena. Fine line-drawings by Laszlo Kubinyi enhance the mysterious and sometimes chilling mood. The lady's maid's bell (1904) The eyes (1910) Afterward (1910) Kerfol (1916) The triumph of night (1914) Miss Mary Pask (1925) Bewitched (1925) Mr Jones (1928) Pomegranate seed (1931) The looking glass (1935) All souls' (1937)","Riding the Bullet. A Stephen King ghost story in the grand tradition, Riding the Bulletis the ultimate warning about the dangers of hitchhiking. A college student's mother is dying in a Maine hospital. When he hitches a ride to see her, the driver is not who he appears to be. Soon the journey veers off into a dark landscape that could only be drawn by Stephen King. 2 Cassettes / 2 Hours","I Am the Blues: The Willie Dixon Story. These are just a few of Willie Dixon's contributions to blues, R&B, and rock'n'roll--songs performed by artists as varied as the Rolling Stones, Howlin' Wolf, Muddy Waters, ZZ Top, the Doors, Sonny Boy Williamson, the Grateful Dead, Van Morrison, Megadeth, Eric Clapton, Let Zepplin, Tesla, Elvis Presley, Chuck Berry, Stevie Ray Vaughan, and Jeff Healey.I Am the Bluescaptures Willie Dixon's inimitable voice and character as he tells his life story: the segregation of Visksburg Mississippi, where Dixon grew up; the prison farm from which he escaped and then hoboed his way north as a teenager; his equal-rights-based draft refusal in 1942; his work--as songwriter bassist, producer, and arranger--with Muddy Waters, Howlin' Wolf, Little Walter, Bo Diddley, and Chuck Berry which shaped the definitive Chicago blues sound of Chess Records; and his legal battles to recapture the rights to his historic catalog of songs.",Science Fiction Treasury: Six Complete Novels (complete & unabridged).,The Power Broker: A Novel (Christian Gillette #3).,Three Complete Novels: Billy Bathgate/World's Fair/Loon Lake.,"Forgotten New York: Views of a Lost Metropolis. Forgotten New Yorkis your passport to more than 300 years of history, architecture, and memories hidden in plain sight. Houses dating to the first Dutch settlers on Staten Island; yellow brick roads in Brooklyn; clocks embedded in the sidewalk in Manhattan; bishop's crook lampposts in Queens; and a white elephant in the Bronx--this is New York and this is your guide to seeing it all. Forgotten New Yorkcovers all five boroughs with easy-to-use maps and suggested routes to hundreds of out-of-the way places, antiquated monuments, streets to nowhere, and buildings from a time lost. Forgotten New Yorkfeatures: Quiet Places Truly Forgotten History Happened Here What Is This Thing? Forgotten People And so much more","Voice of the Violin (Inspector Montalbano #4). The Sicilian detective, Inspector Salvo Montalbano, is on the search for the killer of a young woman. Among the suspects are her aging husband, a famous doctor; a shy admirer (now disappeared) and her lover - an antiques dealer from Bologna. However, it is a mysterious, reclusive violinist who holds the key. The fourth in the internationally bestselling series featuring the irresistible Sicilian detective. Inspector Salvo Montalbano, with his compelling mix of humor, cynicism, and compassion, has been compared to Georges Simenon's, Dashiel Hammett's, and Raymond Chandler's legendary detectives. In this latest novel, Montalbano's gruesome discovery of a lovely, naked young woman suffocated in her bed immediately sets him on a search for her killer. Among the suspects are her aging husband, a famous doctor; a shy admirer, now disappeared; an antiques-dealing lover from Bologna; and the victim's friend Anna, whose charms Montalbano cannot help but appreciate. But it is a mysterious, reclu","Much Ado about Nothing. This edition of Much Ado About Nothing is part of the groundbreaking Cambridge School Shakespeare series established by Rex Gibson. Remaining faithful to the series' active approach it treats the play as a script to be acted, explored and enjoyed. As well as the complete script of the play, you will find a variety of classroom-tested activities, an eight-page colour section and a selection of notes including information on characters, performance, history and language.","Point Counter Point. Aldous Huxley's lifelong concern with the dichotomy between passion and reason finds its fullest expression both thematically and formally in his masterpiece Point Counter Point. By presenting a vision of life in which diverse aspects of experience are observed simultaneously, Huxley characterizes the symptoms of ""the disease of the modern man"" in the manner of a composer--themes and characters are repeated, altered slightly, and played off one another in a tone that is at once critical and sympathetic. First published in 1928, Huxley's satiric view of intellectual life in the '20s is populated with characters based on such celebrities as D.H. Lawrence, Katherine Mansfield, Nancy Cunard, and John Middleton Murry, as well as Huxley himself.","Restless Till We Rest in You: 60 Reflections from the Writings of St. Augustine (Saints Speak Today). ""Restless Till We Rest in You"" features spiritual pearls from the works of St. Augustine (354-430 A.D.), including his ""Confessions"" and ""The City of God"", as well as rich insights from his homilies, especially those based on John's Gospel and epistles. As part of the ""Saints Speak Today Series"", this title features 60 daily readings, along with scripture passages and hymns.","Kirk: The Star to Every Wandering (Star Trek: Crucible #3). IN A SINGLE MOMENT . . . the lives of three men will be forever changed. In that split second, defined paradoxically by both salvation and loss, they will destroy the world and then restore it. Much had come before, and much would come after, but nothing would color their lives more than that one, isolated instant on the edge of forever. IN A SINGLE MOMENT . . . James T. Kirk, displaced in time, allows the love of his life to die in a traffic accident, thereby preserving Earth's history. Returning to the present, he continues a storied career as a starship captain, opening up the galaxy. But as he wanders among the stars, the incandescence that once filled his heart remains elusive. IN A SINGLE MOMENT . . . that haunts James T. Kirk throughout his life, he preserved the timeline at the cost of his happiness. Now, facing his own death, the very fabric of existence collapses across years and light-years, forcing him to race against -- and through -- time itself, until he comes full circl","Time for Revolution. Time for Revolution explores the burning issue of our times: is there still a place for resistance in a society utterly subsumed by capitalism? Written in prison two decades apart, these two essays reflect Antonio Negri's abiding interest in the philosophy of time and resistance. The first essay traces the fracture lines which force capitalist society into perpetual crisis. The second, written immediately after the global best-seller, Empire, develops the two key concepts of empire and multitude. Time for Revolution illuminates the course of Negri's thinking from the 1980s to Empire and beyond.","Bright Purple: Color Me Confused (TrueColors #10). Jessica LeCroix drops a bomb on her best friend, Ramie: -I'm a lesbian.- Ramie Grant cannot believe her ears. Jess!? Her best friend, her teammate . . . a homosexual? Before long other girls on the basketball team find out, and little jokes become vicious attacks. In the end, Ramie must decide if she will stand by Jessica's side or turn her back on a friend in need. The tenth book in the teen fiction series TrueColors, Bright Purpleexamines the subjects of sexuality, identity, and forgiveness. Includes discussion questions.","My Uncle Napoleon. A teenage boy makes the mistake of falling in love with the much-protected daughter of his uncle, mischievously nicknamed after his hero Napoleon Bonaparte, the curmudgeonly self-appointed patriarch of a large and extended Iranian family in 1940s Tehran. This edition features an introduction by author and literature professor Azar Nafisi, an informative preface by the translator, a list of characters, a map of Iran, a glossary of terms, an afterward by the author, and questions for reading group discussion. Reprint. 10,000 first printing.",The Visual Arts: A History.,"Crime and Punishment. Through the story of the brilliant but conflicted young Raskolnikov and the murder he commits, Fyodor Dostoevsky explores the theme of redemption through suffering. Crime and Punishmentput Dostoevsky at the forefront of Russian writers when it appeared in 1866 and is now one of the most famous and influential novels in world literature. The poverty-stricken Raskolnikov, a talented student, devises a theory about extraordinary men being above the law, since in their brilliance they think ""new thoughts"" and so contribute to society. He then sets out to prove his theory by murdering a vile, cynical old pawnbroker and her sister. The act brings Raskolnikov into contact with his own buried conscience and with two characters -- the deeply religious Sonia, who has endured great suffering, and Porfiry, the intelligent and discerning official who is charged with investigating the murder -- both of whom compel Raskolnikov to feel the split in his nature. Dostoevsky provides readers with a suspen","Tom Jones. An alternate cover for this isbn can be found . Tom Jonesis widely regarded as one of the first and most influential English novels. It is certainly the funniest. Tom Jones, the hero of the book, is introduced to the reader as the ward of a liberal Somerset squire. Tom is a generous but slightly wild and feckless country boy with a weakness for young women. Misfortune, followed by many spirited adventures as he travels to London to seek his fortune, teach him a sort of wisdom to go with his essential good-heartedness. This 'comic, epic poem in prose' will make the modern reader laugh as much as it did his forbears. Its biting satire finds an echo in today's society, for as Doris Lessing recently remarked 'This country becomes every day more like the eighteenth century, full of thieves and adventurers, rogues and a robust, unhypocritical savagery side-by-side with people lecturing others on morality'.",CSS Cookbook.,"Things Pondered: From the Heart of a Lesser Woman. Just as Mary treasured her memories as the mother of Jesus and pondered them in her heart, this book celebrates treasured moments in the life of every woman, wife, and mother. Told from a fresh, personal perspective, these stories and poems form a warm, inspiring collection of remembrances of children,Christmas, marriage, trials, friendship, the seasons, grace, and above all, God's love for us. Things Pondered proves Beth Moore not only to be an effective speaker and author of popular Bible studies, but also show her to be a gifted, sensitive writer and poet.","The Parallax View. The Parallax View is Slavoj Zizek's most substantial theoretical work to appear in many years; Zizek himself describes it as his magnum opus. Parallax can be defined as the apparent displacement of an object, caused by a change in observational position. Zizek is interested in the ""parallax gap"" separating two points between which no synthesis or mediation is possible, linked by an ""impossible short circuit"" of levels that can never meet. From this consideration of parallax, Zizek begins a rehabilitation of dialectical materialism.Modes of parallax can be seen in different domains of today's theory, from the wave-particle duality in quantum physics to the parallax of the unconscious in Freudian psychoanalysis between interpretations of the formation of the unconscious and theories of drives. In The Parallax View, Zizek, with his usual astonishing erudition, focuses on three main modes of parallax: the ontological difference, the ultimate parallax that conditions our very access to real",Learnability and Cognition: The Acquisition of Argument Structure.,"The Gospel of the Flying Spaghetti Monster. Behold the Church of the Flying Spaghetti Monster (FSM), today's fastest growing carbohydrate-based religion. According to church founder Bobby Henderson, the universe and all life within it were created by a mystical and divine being: the Flying Spaghetti Monster. What drives the FSM's devout followers, a.k.a. Pastafarians? Some say it's the assuring touch from the FSM's ""noodly appendage."" Then there are those who love the worship service, which is conducted in pirate talk and attended by congregants in dashing buccaneer garb. Still others are drawn to the Church's flimsy moral standards, religious holidays every Friday, or the fact that Pastafarian heaven is way cooler: Does your heaven have a Stripper Factory and a Beer Volcano? Intelligent Design has finally met its match-and it has nothing to do with apes or the Olive Garden of Eden. Within these pages, Bobby Henderson outlines the true facts- dispelling such malicious myths as evolution (""only a theory""), science (""only a lot of","Fullmetal Alchemist Vol. 12 (Fullmetal Alchemist #12). The hunters become the hunted when the Elric brothers and Prince Lin set a trap for the homunculus with the insatiable appetite - Gluttony! On another front, state politics are shaken up when a horrifying truth about Fuhrer President King Bradley is revealed - and Colonel Roy Mustang is right there to capitalize on the situation.",The Sweet Potato Queens' Big-Ass Cookbook (and Financial Planner).,"Jack Vance: Critical Appreciations and a Bibliography. Jack Vance's first science fiction story was published in 1945. Over 50 years later he has over 80 volumes of short stories and novels to his credit. Though his writing has appeared in a variety of genres, his work eludes easy categorization.",The Lord of the Rings Millennium Edition Boxed Set (The Lord of the Rings #1-3).,"The Innocent. You never meant to kill him....One night, Matt Hunter innocently tried to break up a fight--and ended up a killer. Now, nine years later, he's an ex-con who takes nothing for granted. His wife, Olivia, is pregnant, and the two of them are closing on their dream house. But all it will take is one shocking, inexplicable call from Olivia's phone to shatter Matt's life a second time.... An electrifying thrill ride of a novel that peeks behind the white picket fences of suburbia, The Innocent is at once a twisting, turning, emotionally charged story and a compelling tale of the choices we make and the repercussions that never leave.","Special Topics in Calamity Physics. A darkly hilarious coming-of-age novel and a richly plotted suspense tale told through the distinctive voice of its heroine, Blue van Meer. This mesmerizing debut, uncannily uniting the trials of a postmodern upbringing with a murder mystery, heralds the arrival of a vibrant new voice in literary fiction Special Topics in Calamity Physics is a darkly hilarious coming-of-age novel and a richly plotted suspense tale told through the distinctive voice of its heroine, Blue van Meer. After a childhood moving from one academic outpost to another with her father (a man prone to aphorisms and meteoric affairs), Blue is clever, deadpan, and possessed of a vast lexicon of literary, political, philosophical, and scientific knowledge--and is quite the cineaste to boot. In her final year of high school at the elite (and unusual) St. Gallway School in Stockton, North Carolina, Blue falls in with a charismatic group of friends and their captivating teacher, Hannah Schneider. But when the drowning of","Conan and the Demons of Khitai. Set many years in the future from the award-winning ongoing series, Conan and the Demons and Khitai marks Conan's first appearance as King in Dark Horse's best-selling comics revival of the legendary fantasy hero. When King Conan receives an invitation from the Eastern kingdom of Khitai to open trade in precious jewels and spices, he decides that he will travel into this long-mysterious land. Yet to do so is perilous, as those who have requested his company may have far more devious intentions, and beasts unseen by Western eyes lurk amidst the shadows.","Oblivion. In the stories that make up Oblivion, David Foster Wallace joins the rawest, most naked humanity with the infinite involutions of self-consciousness--a combination that is dazzlingly, uniquely his. These are worlds undreamt-of by any other mind. Only David Foster Wallace could convey a father's desperate loneliness by way of his son's daydreaming through a teacher's homicidal breakdown (""The Soul Is Not a Smithy""). Or could explore the deepest and most hilarious aspects of creativity by delineating the office politics surrounding a magazine profile of an artist who produces miniature sculptures in an anatomically inconceivable way (""The Suffering Channel""). Or capture the ache of love's breakdown in the painfully polite apologies of a man who believes his wife is hallucinating the sound of his snoring (""Oblivion""). Each of these stories is a complete world, as fully imagined as most entire novels, at once preposterously surreal and painfully immediate. Oblivion is an arresting and hila","The Totem. Slowly, bizarre events grip the tiny mountain community of Potter's Field, Wyoming. Cattle are mutilated. Animals become savage. Children go insane. Townspeople are found without faces. And one man must confront the evil behind the hideous events, an evil that is all too human and deadly. From the bestselling author of Desperate Measures.","The Annotated Gulliver's Travels. Gulliver's Travelsis Jonathan Swift's satiric masterpiece, the fantastic tale of the four voyages of Lemuel Gulliver, an English ship's surgeon. First, he is shipwrecked in the land of Lilliput, where the alarmed residents are only six inches tall. His second voyage takes him to the land of Brobdingnag, where the people are sixty feet tall. Further adventures bring Gulliver to an island that floats in the sky, and a land where horses are endowed with reason and beasts are shaped like men. Read by children as an adventure story and by adults as a devastating satire of society, Gulliver's Travelsremains a fascinating blend of travelogue, realism, symbolism, and fantastic voyage--all with a serious philosophical content.","Notebooks 1935-1951. The musings and sketches of Albert Camus offer insight into the molding and working of a creative mind. Covering ground form young adulthood to the height of Camus's career, these notebooks contain sketches for future works, excerpts from favorite books, and reflections on death, loneliness, and art.","Fiskadoro. Hailed by the New York Timesas ""wildly ambitious"" and ""the sort of book that a young Herman Melville might have written had he lived today and studied such disparate works as the Bible, 'The Wasteland,' Fahrenheit 451, and Dog Soldiers, screened Star Warsand Apocalypse Nowseveral times, dropped a lot of acid and listened to hours of Jimi Hendrix and the Rolling Stones,"" Fiskadorois a stunning novel of an all-too-possible tomorrow. Deeply moving and provacative, Fiskadorobrilliantly presents the sweeping and heartbreaking tale of the survivors of a devastating nuclear war and their attempts to salvage remnants of the old world and rebuild their culture.","A Friar's Bloodfeud (Knights Templar #20). The twentieth novel in Michael Jecks's medieval Knights Templar series. March 1323: in the rural idyll of Iddesleigh, a gang of men break into the home of Bailiff Simon Puttock's servant and attack his family. When word reaches Simon, he and Sir Baldwin de Funshill, Keeper of the King's Peace, hurry to the home, finding it burned to the ground and the bodies from within already buried. Could this be the result of a tragic accident, or is a darker force at work? As Baldwin and Simon attempt to uncover the truth, it quickly becomes clear that a terrible evil lurks in the land, and that the pain and bloodshed are far from over.","Wrinkles in Time. In April 1992, a discovery was made that changed the way we view the world. Dr. George Smoot, distinguished cosmologist and adventurer, whose quest for cosmic knowledge had taken him from the Brazilian rain forest to the South Pole unveiled his momentous discovery, bringing to light the very nature of the universe. For anyone who has ever looked up at the night sky and wondered, for anyone who has ever longed to pull aside the fabric of the universe for a glimpse of what lies behind it. Wrinkles in Timeis the story of Smoot's search to uncover the cosmic seeds of the universe. Wrinkles in Timeis the Double Helix of cosmology, an intimate look at the inner world of men and women who ask. ""Why are we here?"" It tells the story of George Smoot's dogged pursuit of the cosmic wrinkles in the frozen wastes of Antarctica, on mountaintops, in experiments borne aloft aboard high-altitude balloons, U-2 spy planes, and finally a space satellite. Wrinkles in Timepresents the hard science behind the","Blink. The future changes in the BLINK of an eye...or does it? Seth Borders isn't your average graduate student. For starters, he has one of the world's highest IQs. Now he's suddenly struck by an incredible power--the ability to see multiple potential futures. Still reeling from this inexplicable gift, Seth stumbles upon a beautiful woman named Miriam. Unknown to Seth, Miriam is a Saudi Arabian princess who has fled her veiled existence to escape a forced marriage of unimaginable consequences. Cultures collide as they're thrown together and forced to run from an unstoppable force determined to kidnap or kill Miriam. Seth's mysterious ability helps them avoid capture once, then twice. But with no sleep, a fugitive princess by his side, hit men a heartbeat away, and a massive manhunt steadily closing in, evasion becomes impossible. An intoxicating tale set amidst the shifting sands of the Middle East and the back roads of America, Blinkengages issues as ancient as the earth itself...and as cur",The Visual Arts: A History Volume 2.,"Things to Bring S#!t to Do: And Other Inventories of Anxiety: My Life in Lists. The emotional highs and lows, the romantic escapades and the financial setbacks, the moments of comedy, anxiety, and personal tragedy: they're all brought vividly to life in Things to Bring, S#!t to Do, the first memoir told entirely in lists. Annotated with Karen's insightful recollections, the book presents a compelling portrait -- sometimes touching, sometimes hilarious -- of a woman, her family, and her friends from 1970s America to the present day. Like many women (and some men, too), Karen Rizzo is a compulsive list-maker. She scribbles grocery lists on Post-It notes, pencils lists of resolutions on the backs of greeting cards, regularly jots down all the things she needs to bring, to do, to remember.... Unlike the rest of us, however, Karen has saved her lists -- dating from the list of favorite things she wrote as a kid (Favorite animal: horse; Color: purple; Food: olives from Dad's martini). Together, these scraps of paper form an intimate chronicle of her life's journey, from","9-11. In 9-11, Noam Chomsky comments on the September 11th attacks, the new war on terrorism, Osama bin Laden, U.S. involvement with Afghanistan, media control, and the long-term implications of America's military attacks abroad. Informed by his deep understanding of the gravity of these issues and the global stakes, 9-11 demonstrates Chomsky's impeccable knowledge of U.S. foreign policy in the Middle East and South Asia, and sheds light on the rapidly shifting balance of world power. Speaking out against escalating violence, Chomsky critically examines the United States' own foreign policy record and considers what international institutions might be employed against underground networks and national states accused of terrorism. 9-11's analysis still stands as a measure of how well the media is able to serve its role of informing the citizenry, so crucial to our democracy in times of war.",Eggs Beans and Crumpets.,"Poirot's Early Cases: 18 Hercule Poirot Mysteries (Hercule Poirot #41). The unabridged tales in this Mystery Mastersaudiobook include all the ones in the print book first published in 1974. With each case, Poirot further proves his reputation as the greatest mind in detective fiction. In ""The Plymouth Express,"" the body of the daughter of a wealthy American industrialist is found stuffed under a train seat. ""Problem at Sea"" finds a disliked rich woman murdered in a locked room on a ship. ""The King of Clubs"" involves a prince, his dancer fiancee, and a fiendish bit of blackmail. These gems are alternately read by David Suchet and Hugh Fraser, whose roles as, respectively, Poirot and his sidekick, Captain Hugh Hastings, in PBS's Mystery!series and the Arts and Entertainment's Poirotseries are considered definitive. This collection contains the following stories: ""The Adventure of Johnnie Waverly,"" ""The Adventure of the Clapham Cook,"" ""The Affair of the Victory Ball,"" ""The Chocolate Box,"" ""The Cornish Mystery,"" ""The Double Clue,"" ""Double Sin,"" ""How Does Your","Faith of Tarot (Tarot #3). On far Tarot dreams come true--and fanged nightmares stalk the land. Sent to pierce the dread curtain of the Animationthat turns fantasy into hideous reality, the wanderer-monk Paul finds himself on a trip to the ultimate and most terrifying fantasy of them all. Hell.","What the Corpse Revealed. The victim was shot through the heart--but no bullet was ever found. In a case full of baffling twists, a gunshot wound to the heart leads to a brilliant investigator to one conclusion: a bullet designed to disappear... The skin was peeled from the victim's hands A beautiful woman almost gets away with murder because her victim cannot be identified. Then a forensic scientist leads police to the peeled skin from two boiled hands--and the fingerprints that will crack the case. The murder weapon was smashed to smithereens A man was killed by a blow from a bottle. Now, determined investigator carefully puts the pieces of glass back together to catch a kiler--and to carry out a crime of his own... What the corpse revealed Once detectives solved crimes with shoe leather and a gun. Now they use DNA samples, blood splatters, microbes and psychological profilings. This extraordinary book, through details drawn from some of the most baffling cases of the last fifty years, shows how a new generat","How to Be Lost. Joseph and Isabelle Winters seem to have it all: a grand home in Holt, New York, a trio of radiant daughters, and a sense that they are safe in their affluent corner of America. But when five-year-old Ellie disappears, the fault lines within the family are exposed: Joseph, once a successful businessman, succumbs to his demons; Isabelle retreats into memories of her debutante days in Savannah; and Ellie's bereft sisters grow apart-Madeline reluctantly stays home, while Caroline runs away. Fifteen years later, Caroline, now a New Orleans cocktail waitress, sees a photograph of a woman in a magazine. Convinced that it is Ellie all grown up, Caroline embarks on a search for her missing sister. Armed with copies of the photo, an amateur detective guide, and a cooler of Dixie beer, Caroline travels through the New Mexico desert, the mountains of Colorado, and the smoky underworld of Montana, determined to salvage her broken family.","The Illustrated Longitude: The True Story of a Lone Genius Who Solved the Greatest Scientific Problem of His Time. The Illustrated Longituderecounts in words and images the epic quest to solve the greatest scientific problem of the eighteenth and three prior centuries: determining how a captain could pinpoint his ship's location at sea. All too often throughout the ages of exploration, voyages ended in disaster when crew and cargo were either lost at sea or destroyed upon the rocks of an unexpected landfall. Thousands of lives and the fortunes of nations hung on a resolution to the longitude problem. To encourage a solution, governments established prizes for anyone whose method or device proved successful. The largest reward of PS20,000 - truly a king's ransom - was offered by Britain's Parliament in 1714. The scientific establishment - from Galileo to Sir Isaac Newton - had been certain that a celestial answer would be found and invested untold effort in this pursuit. By contrast, John Harrison imagined and built the unimaginable: a clock that told perfect time at sea, known today as the chronome","Child of the Owl (Golden Mountain Chronicles #7). Twelve-year-old Casey is waiting for the day that Barney, her father, hits it big -- 'cause when that horse comes in, he tells her, it's the penthouse suite. But then hr ends up in the hospital, and Casey is sent to Chinatown to live with her grandmother, Paw-Paw. Now the waiting seems longer than ever.Casey feels lost in Chinatown. She's not prepared for the Chinese school, the noisy crowds, missing her father. But Paw-Paw tells her about the mother Casey never knew, and about her family's owl charm and her true Chinese name. And Casey at last begins to understand that this -- Paw-Paw's Chinatown home, her parents' home -- is her home,too.",American Genesis: Captain John Smith and the Founding of Virginia.,Verserade tankar.,"You Remind Me of You: A Poetry Memoir. A startling autobiographical account of a young woman's battle with eating disorders that put her in and out of hospitals over a span of four years and led to her own parents fighting for the right to commit her. When her last source of support, her boyfriend, attempts suicide and ends up in a coma, she is forced to find strength from within. A courageous story about the strange paths we take to recovery.","The Paradox of Choice: Why More Is Less. About the Book: The Paradox of Choice In the spirit of Alvin Tofflers Future Shock, a social critique of our obsession with choice, and how it contributes to anxiety, dissatisfaction and regret. Whether were buying a pair of jeans, ordering a cup of coffee, selecting a long-distance carrier, applying to college, choosing a doctor, or setting up a 401K, everyday decisions have become increasingly complex due to the overwhelming abundance of choice with which we are presented. In The Paradox of Choice, Barry Schwartz explains why too much of a good thing has proven detrimental to our psychological and emotional well-being. In accessible, engaging, and anecdotal prose, Schwartz explains how a culture that thrives on the availability of constantly evolving options can also foster profound dissatisfaction and self-blame in individuals, which can lead to a paralysis in decision making and, in some cases, depression. With the latest studies on how we make choices in our personal and professio","Thus Spake Zarathustra: A Book for All and None. Thus Spoke Zarathustra (subtitled as A Book for All and None) chronicles the fictitious travels and speeches of Zarathustra, the founder of Zoroastrianism. While Nietzsche injects myriad ideas into the book, a few recurring themes stand out. The overman (Ubermensch), a self-mastered individual who has achieved his full power, is an almost omnipresent idea in Thus Spoke Zarathustra. Man as a race is merely a bridge between animals and the overman. Nietzsche also makes a point that the overman is not an end result for a person, but more the journey toward self-mastery. Friedrich Nietzsche (1844-1900) was a German philosopher, poet, and Latin and Greek scholar whose work has exerted a profound influence on Western philosophy and modern intellectual history. Because of Nietzsche's evocative style and provocative ideas, his philosophy generates passionate reactions. His works remain controversial, due to varying interpretations and misinterpretations of his work. In the Western philosophy t",A People's History of the United States: The Civil War to the Present.,"Vixen 03 (Dirk Pitt #5). 1954. Vixen 03 is down. The plane, bound for the Pacific carrying thirty-six Doomsday bombs -- canisters armed with quick-death germs of unbelievable potency -- vanishes. Vixen has in fact crashed into an ice-covered lake in Colorado. 1988. Dirk Pitt, who heroically raised the Titanic, discovers the wreckage of Vixen 03. But two deadly canisters are missing. They're in the hands of a terrorist group. Their lethal mission: to sail a battleship seventy-five miles up the Potomac and blast Washington, D.C., to kingdom come. Only Dirk can stop them.","The Spirit Level: Poems. The Spirit Levelwas the first book of poems Heaney published after winning the Nobel Prize in Literature in 1995. Reviewing this book in The New York Times Book Review, Richard Tillinghast noted that Heaney ""has been and is here for good . . . [His poems] will last. Anyone who reads poetry has reason to rejoice at living in the age when Seamus Heaney is writing.""","The Science of the Hitchhiker's Guide to the Galaxy. Like all good science fiction, much of the cult classic Hitchhiker's Guide to the Galaxyseries drew on scientific fact. Douglas Adams was a science and technology enthusiast and his books were inspired by--and sometimes, prefigured--many of the great scientific debates of our time. The Science of The Hitchhiker's Guide to the Galaxy is a lighthearted, accessible and informative tour of the real cutting-edge research behind this much-loved classic, including space tourism, parallel universes, instant translation devices, sentient computers, and more.","Keats's Poetry and Prose. For this reason, this volume presents the writings in the order of publication rather than composition. Readers can trace the poems through letters, reviews, and related material chronologically interleaved with the texts themselves. This edition offers extensive apparatus to help readers fully appreciate Keats s poetry and legacy, including an introduction, headnotes, explanatory annotations, and a wealth of contextual documents. Criticism includes twelve important commentaries on Keats and his poetry, by Paul de Man, Marjorie Levinson, Grant F. Scott, Margaret Homans, Nicholas Roe, Stuart Sperry, Neil Fraistat, Jack Stillinger, James Chandler, Alan Bewell, and Jeffrey N. Cox.","Europe: A History. Here is a masterpiece of historical narrative that stretches from the Ice Age to the Atomic Age, as it tells the story of Europe, East and West. Norman Davies captures it all-the rise and fall of Rome, the sweeping invasions of Alaric and Atilla, the Norman Conquests, the Papal struggles for power, the Renaissance and the Reformation, the French Revolution and the Napoleonic Wars, Europe's rise to become the powerhouse of the world, and its eclipse in our own century, following two devastating World Wars. This is the first major history of Europe to give equal weight to both East and West, and it shines light on fascinating minority communities, from heretics and lepers to Gypsies, Jews, and Muslims. It also takes an innovative approach, combining traditional narrative with unique features that help bring history alive: 299 time capsules scattered through the narrative capture telling aspects of an era. 12 -snapshots offer a panoramic look at all of Europe at a particular moment in his",Scratch the Surface (A Cat Lover's Mystery #1).,"Crucible of War: The Seven Years' War and the Fate of Empire in British North America 1754 - 1766. In this vivid and compelling narrative, the Seven Years' War-long seen as a mere backdrop to the American Revolution-takes on a whole new significance. Relating the history of the war as it developed, Anderson shows how the complex array of forces brought into conflict helped both to create Britain's empire and to sow the seeds of its eventual dissolution. Beginning with a skirmish in the Pennsylvania backcountry involving an inexperienced George Washington, the Iroquois chief Tanaghrisson, and the ill-fated French emissary Jumonville, Anderson reveals a chain of events that would lead to world conflagration. Weaving together the military, economic, and political motives of the participants with unforgettable portraits of Washington, William Pitt, Montcalm, and many others, Anderson brings a fresh perspective to one of America's most important wars, demonstrating how the forces unleashed there would irrevocably change the politics of empire in North America.","Love in the Time of Cholera. In their youth, Florentino Ariza and Fermina Daza fall passionately in love. When Fermina eventually chooses to marry a wealthy, well-born doctor, Florentino is devastated, but he is a romantic. As he rises in his business career he whiles away the years in 622 affairs--yet he reserves his heart for Fermina. Her husband dies at last, and Florentino purposefully attends the funeral. Fifty years, nine months, and four days after he first declared his love for Fermina, he will do so again.","The Scarlet Pimpernel. ENDURING LITERATURE ILLUMINATEDBY PRACTICAL SCHOLARSHIP EACH ENRICHED CLASSIC EDITION INCLUDES: A concise introduction that gives readers important background information A chronology of the author's life and work A timeline of significant events that provides the book's historical context An outline of key themes and plot points to help readers form their own interpretations Detailed explanatory notes Critical analysis, including contemporary and modern perspectives on the work Discussion questions to promote lively classroom and book group interaction A list of recommended related books and films to broaden the reader's experience Enriched Classics offer readers affordable editions of great works of literature enhanced by helpful notes and insightful commentary. The scholarship provided in Enriched Classics enables readers to appreciate, understand, and enjoy the world's finest books to their full potential. SERIES EDITED BY CYNTHIA BRANTLEY JOHNSON","Round Ireland with a Fridge. Have you ever made a drunken bet? Worse still, have you ever tried to win one? In attempting to hitchhike round Ireland with a fridge, Tony Hawks did both, and his foolhardiness led him to one of the best experiences of his life. Joined by his trusty traveling companion-cum-domestic appliance, he made his way from Dublin to Donegal, from Sligo through Mayo, Galway, Clare, Kerry, Cork, Wexford, Wicklow--and back again to Dublin. In their month of madness, Tony and his fridge met a real prince, a bogus king, and the fridge got christened. They surfed together, entered a bachelor festival, and one of them had sex without the other knowing. And unexpectedly, the fridge itself became a momentary focus for the people of Ireland. An international bestseller, Round Ireland with a Fridgeis a classic travel adventure in the tradition of Bill Bryson with a dash of Dave Barry.",Aristophanes and Athens: An Introduction to the Plays.,"Bleach Volume 20. End of Hypnosis The shocking truth behind the collapse of the Soul Society is finally revealed! The magnitude of the conspiracy is far-reaching, and the perpetrators wield staggering power. Is this the end of the Soul Society? Having achieved Bankai, Ichigo rescues Rukia in the nick of time and defeats the fearsome Byakuya Kuchiki! Meanwhile, Soul Reaper Toshiro Hitsugaya discovers the corpses of the Council of 46 and hurries to get to Momo before the murderer does! And as Rukia and Renji race for safety, they find themselves facing a foe far worse than those they have fled ...","Dragon's Gate (Golden Mountain Chronicles #3). In 1867, Otter travels from Three Willows Village in China to California -- the Land of the Golden Mountain. There he will join his father and uncle. In spite of the presence of family, Otter is a stranger among the other Chinese in this new land. And where he expected to see a land of goldfields, he sees only vast, cold whiteness. But Otter's dream is to learn all he can, take the technology back to the Middle Kingdom, and free China from the Manchu invaders. Otter and the others board a machine that will change his life -- a train for which he would open the Dragon's Gate.","Beowulf & Grendel: The Truth Behind England's Oldest Legend. John Grigsby presents compelling evidence that the legend of Beowulf and Grendel can co longer be dismissed as a folktale - it is based on historical fact. He reveals the existence of a pagan fertility rite once practiced by the ancestors of the English people that involved the ritual taking of a sacred intoxicant combined with human sacrifice... J.R.R. Tolkien is often credited with writing The Lord of the Ringsin an attempt to create a ""mythology of England"". but as Tolkien was well aware, England did once have a mythology of its own, of which only a few precious fragments remain. One such fragment is a Dark-Age poem that tells of the deeds of the monster-slaying hero Beowulf, who frees the feasting hall of a Danish king from the twelve-year tyranny of a creature named Grendel and it hideous, lake-dwelling mother. Grigsby has discovered that it was the memory of the forceful suppression of a sacrificial cult in the 5th century AD that lies behind the seemingly fantastic deeds of Beow","The Miraculous Journey of Edward Tulane. A timeless tale by the incomparable Kate DiCamillo, complete with stunning full-color plates by Bagram Ibatoulline, honors the enduring power of love. ""Someone will come for you, but first you must open your heart. . . ."" Once, in a house on Egypt Street, there lived a china rabbit named Edward Tulane. The rabbit was very pleased with himself, and for good reason: he was owned by a girl named Abilene, who treated him with the utmost care and adored him completely. And then, one day, he was lost. Kate DiCamillo takes us on an extraordinary journey, from the depths of the ocean to the net of a fisherman, from the top of a garbage heap to the fireside of a hoboes' camp, from the bedside of an ailing child to the bustling streets of Memphis. And along the way, we are shown a true miracle -- that even a heart of the most breakable kind can learn to love, to lose, and to love again.","Paper Money. A politician wakes with a beautiful girl; a criminal briefs his team; a tycoon breakfasts with a Bank official. Then three stories break: an attempted suicide, a hijack, and a takeover bid. They seem unrelated - until Evening Post reporters ask questions. Why is a Jamaican bank in trouble? Who drove the Rolls-Royce seen near the raid? Who was the man with gunshot wounds? As the day wears on, new questions arise - about paper money.","The Secret Life of Houdini: The Making of America's First Superhero. Handcuff King. Escape Artist. International Superstar. Since his death eighty years ago, Harry Houdini's life has been chronicled in books, in film, and on television. Now, in this groundbreaking biography, renowned magic expert William Kalush and best-selling writer Larry Sloman team up to find the man behind the myth. Drawing from millions of pages of research, they describe in vivid detail the passions that drove Houdini to perform ever-more-dangerous feats, his secret life as a spy, and a pernicious plot to subvert his legacy.After years of struggling on the dime museum circuit, Harry Houdini got a break that put him on the front page of a Chicago newspaper. He never looked back. Soon Houdini was performing for royalty, commanding vast sums, and exploring the new power of Hollywood to expand on his legend. At a time when spy agencies frequently co-opted amateurs, Houdini went to London and developed a relationship with a man who would run MI-5. For the next several years, the world","Wide Sargasso Sea. Born into an oppressive, colonialist society, Creole heiress Antoinette Cosway meets a young Englishman who is drawn to her innocent sensuality and beauty. But soon after their marriage, rumors of madness in her family poison his mind against her. He forces Antoinette to conform to his rigid Victorian ideals.","Predator (Kay Scarpetta #14). Scarpetta, now freelancing with the National Forensic Academy in Florida, digs into a case more bizarre than any she has ever faced, one that has produced not only unusual physical evidence, but also tantalizing clues about the inner workings of an extremely cunning and criminal mind. She and her team --- Pete Marino, Benton Wesley, and her niece, Lucy --- track the odd connections between several horrific crimes and the people who are the likely suspects. As one psychopath, safely behind bars and the subject of a classified scientific study at a Harvard-affiliated psychiatric hospital, teases Scarpetta with tips that could be fact --- or fantasy --- the number of killers on the loose seems to multiply. Are these events related or merely random? And what can the study of one man's brain tell them about the methods of a psychopath still lurking in the shadows?","The Adventuress. The author of the New York Timesbestseller The Time Traveler's Wifereturns with another evocative ""novel in pictures,"" the much-anticipated follow-up to 2005's The Three Incestuous Sisters. The Adventuressfollows the dreamlike journey of an alchemist's daughter. After she is kidnapped by a lascivious baron, she turns herself into a moth and flees to the garden of a charming butterfly collector named Napoleon Bonaparte. The story of how the two become lovers, and how their affair ends in tragedy and transcendence, is told through Niffenegger's spare prose and haunting aquatint etchings. With a stunning and distinctive visual style reminiscent of the work of Edward Gorey, this gothic romance packs the emotional heft of the world's great fairy tales. It will delight fans of the author's previous works and enchant an entirely new legion of readers.","The Idiot. Just two years after completing Crime and Punishment,which explored the mind of a murderer, Dostoevskyproduced another masterpiece, The Idiot.This time the author portrays a truly beautiful soul--a character he found difficult to bring to life because, as he wrote, ""beauty is the ideal, and neither my country, nor civilized Europe, know what that ideal of beauty is."" The result was one of Dostoevsky's greatest characters--Prince Myshkin, a saintly, Christ-like, yet deeply human figure. The story begins when Myshkin arrives on Russian soil after a stay in a Swiss sanatorium. Scorned by St. Petersburg society as an idiot for his generosity and innocence, the prince finds himself at the center of a struggle between a rich, kept woman and a beautiful, virtuous girl, who both hope to win his affection. Unfortunately, Myshkin's very goodness seems to bring disaster to everyone he meets. The shocking denouement tragically reveals how, in a world obsessed with money, power, and sexual conquest","One Door Away from Heaven. Michelina Bellsong is on a mission. She is following a missing family to the edge of America...to a place she never knew existed--a place of terror, wonder, and shattering revelation. What awaits her there will change her life and the life of everyone she knows--if she can find the key to survival. At stake are a young girl of extraordinary goodness, a young boy with killers on his trail, and Micky's own wounded soul.","Catfish and Mandala: A Two-Wheeled Voyage Through the Landscape and Memory of Vietnam. Catfish and Mandalais the story of an American odyssey--a solo bicycle voyage around the Pacific Rim to Vietnam--made by a young Vietnamese-American man in pursuit of both his adopted homeland and his forsaken fatherland. Andrew X. Pham was born in Vietnam and raised in California. His father had been a POW of the Vietcong; his family came to America as ""boat people."" Following the suicide of his sister, Pham quit his job, sold all of his possessions, and embarked on a year-long bicycle journey that took him through the Mexican desert, around a thousand-mile loop from Narita to Kyoto in Japan; and, after five months and 2,357 miles, to Saigon, where he finds ""nothing familiar in the bombed-out darkness."" In Vietnam, he's taken for Japanese or Korean by his countrymen, except, of course, by his relatives, who doubt that as a Vietnamese he has the stamina to complete his journey (""Only Westerners can do it""); and in the United States he's considered anything but American. A vibrant, pica","Scavenger (Frank Balenger #2). David Morrell's Creeperswas a publishing event in 2005, a powerful, edgy, dark thriller by a master of the genre. A New York Timesbest-seller, it won the prestigious Bram Stoker Award and earned numerous critical raves. Scavenger, Morrell's latest novel, takes us in a harrowing new direction: a desperate high-tech scavenger hunt for a 100-year-old time capsule. Frank Balenger, the resolute but damaged hero of Creepers, now finds himself trapped in a nightmarish game of fear and death. To save himself and the woman he loves, he must play by the rules of a god-like Game Master with an obsession for unearthing the past. But sometimes the past is buried for a reason. Scavengeris a brilliant, frightening hunter-hunted tale that layers modern technology over the dusty artifacts of earlier times. The result is a surreal palimpsest, one that contains the secret of survival for Balenger and a handful of unwilling players who race against the game's clock to solve the puzzle of the time capsule,","4th of July (Women's Murder Club #4). The Bestselling New Detective Series of the Decade Just Got Hotter, Deadlier, and More Suspenseful. In a deadly late-night showdown, San Francisco police lieutenant Lindsay Boxer fires her weapon and sets off a dramatic chain of events that leaves a police force disgraced, a family destroyed, and Lindsay herself at the mercy of twelve jurors. During a break in the trial, she retreats to a picturesque town that is reeling from a string of grisly murders-crimes that bear a link to a haunting, unsolved case from her rookie years.Now, with her friends in the Women's Murder Club, Lindsay must battle for her life on two fronts: in a trial rushing to a climax, and against an unknown adversary willing to do anything to hide the truth about the homicides-including kill again?","The Prophet. Kahlil Gibran's masterpiece, The Prophet, is one of the most beloved classics of our time. Published in 1923, it has been translated into more than twenty languages, and the American editions alone have sold more than nine million copies. The Prophet is a collection of poetic essays that are philosophical, spiritual, and, above all, inspirational. Gibran's musings are divided into twenty-eight chapters covering such sprawling topics as love, marriage, children, giving, eating and drinking, work, joy and sorrow, housing, clothes, buying and selling, crime and punishment, laws, freedom, reason and passion, pain, self-knowledge, teaching, friendship, talking, time, good and evil, prayer, pleasure, beauty, religion, and death.","Suffering and the Sovereignty of God. In the last few years, 9/11, a tsunami, Hurricane Katrina, and many other tragedies have shown us that the vision of God in today's churches in relation to evil and suffering is often frivolous. Against the overwhelming weight and seriousness of the Bible, many Christians are choosing to become more shallow, more entertainment-oriented, and therefore irrelevant in the face of massive suffering. In Suffering and the Sovereignty of God, contributors John Piper, Joni Eareckson Tada, Steve Saint, Carl Ellis, David Powlison, Dustin Shramek, and Mark Talbot explore the many categories of God's sovereignty as evidenced in his Word. They urge readers to look to Christ, even in suffering, to find the greatest confidence, deepest comfort, and sweetest fellowship they have ever known.","A Short History of World War II. Despite the numerous books on World War II, until now there has been no one-volume survey that was both objective and comprehensive. Previous volumes have usually been written from an exclusively British or American point of view, or have ignored the important causes and consequences of the War. A Short History of World War IIis essentially a military history, but it reaches from the peace settlements of World War I to the drastically altered postwar world of the late 1940's. Lucidly written and eminently readable, it is factual and accurate enough to satisfy professional historians. A Short History of World War IIwill appeal equally to the general reader, the veteran who fought in the War, and the student interested in understanding the contemporary political world.",Comfort Me With Apples.,"Count Karlstein. No one in the village of Karlstein dares to leave their homes on All Souls' Eve--the night Zamiel the Demon Huntsman comes to claim his prey. But the evil Count Karlstein has struck a terrible bargain with Zamiel, and so the lives of his two young nieces, Lucy and Charlotte, are in danger. Their only hope lies with Hildi, a castle maidservant, and her fearless brother Peter. Can they save the girls from their dreadful fate? Only one thing is certain--the Demon Huntsman will not return to his dark wood unsatisfied!","The Kissing Hand. School is starting in the forest, but Chester Raccoon does not want to go. To help ease Chester's fears, Mrs. Raccoon shares a family secret called the Kissing Hand to give him the reassurance of her love any time his world feels a little scary. Since its first publication in 1993, this heartwarming book has become a children's classic that has touched the lives of millions of children and their parents, especially at times of separation, whether starting school, entering daycare, or going to camp. It is widely used by kindergarten teachers on the first day of school. Stickers at the back will help children and their parents keep their Kissing Hand alive.","Cybernation (Tom Clancy's Net Force #6). In the year 2010, computers are the new superpowers. Those who control them control the world. To enforce the Net Laws, Congress creates the ultimate computer security agency within the FBP the Net Force. When web service is disrupted across the world, a new nation makes its presence known. Terrorists from a virtual country called CyberNation have taken the web hostage. Their demands: worldwide recognition and rights for their ""citizens."" Though there are millions of CyberNation sympathizers, Net Force rallies its troops for an all-out war on three fronts -- politically, physically, and electronically -- because dealing with terrorists is never an option...","The Magical Worlds of Lord of the Rings: The Amazing Myths Legends and Facts Behind the Masterpiece. What nightmare was the key to Tolkien's mythology? Can Gandalf really die? What does Tolkien like best about Frodo? Which monster fromThe Lord of the Rings attacked Tolkien in real life? Why are Tolkien's Elves tall? J.R.R. Tolkien's epic fantasies The Lord of the Ringsand The Hobbithave enthralled reader for more than half a century. The realm of Middle-earth is one of the most fully realized worlds in literature, yet the remarkable mythology upon which Tolkien founded is still a mystery to most readers. The Magical Worlds of The Lord of the Ringsreveals the ancient folklore and legends that inspired Tolkien's masterpiece. From the Finnish saga Kalevalaand the events in Beowulfto Arthurian mythology, Shakespeare, and even World War II, this indispensable guide provides insights not only into literature's most beloved fantasy but also the man who brought it to life.","Of Mice and Men. The compelling story of two outsiders striving to find their place in an unforgiving world. Drifters in search of work, George and his simple-minded friend Lennie have nothing in the world except each other and a dream--a dream that one day they will have some land of their own. Eventually they find work on a ranch in California's Salinas Valley, but their hopes are doomed as Lennie, struggling against extreme cruelty, misunderstanding and feelings of jealousy, becomes a victim of his own strength. Tackling universal themes such as the friendship of a shared vision, and giving voice to America's lonely and dispossessed, Of Mice and Menhas proved one of Steinbeck's most popular works, achieving success as a novel, a Broadway play and three acclaimed films.","As You Like It (No Fear Shakespeare). As You Like Itis a pastoral comedy by William Shakespeare believed to have been written in 1599 or early 1600 and first published in the First Folio, 1623. The play's first performance is uncertain, though a performance at Wilton House in 1603 has been suggested as a possibility. As You Like Itfollows its heroine Rosalind as she flees persecution in her uncle's court, accompanied by her cousin Celia and Touchstone the court jester, to find safety and, eventually, love, in the Forest of Arden. Historically, critical response has varied, with some critics finding the work of lesser quality than other Shakespearean works and some finding the play a work of great merit. The play features one of Shakespeare's most famous and oft-quoted speeches, ""All the world's a stage"", and is the origin of the phrase ""too much of a good thing"". The play remains a favourite among audiences and has been adapted for radio, film, and musical theatre.","The Origin of Species/The Voyage of the Beagle. Easily the most influential book published in the nineteenth century, Darwin's The Origin of Speciesis also that most unusual phenomenon, an altogether readable discussion of a scientific subject. On its appearance in 1859 it was immediately recognized by enthusiasts and detractors alike as a work of the greatest importance: its revolutionary theory of evolution by means of natural selection provoked a furious reaction that continues to this day. The Origin of Speciesis here published together with Darwin's earlier Voyage of the 'Beagle.' This 1839 account of the journeys to South America and the Pacific islands that first put Darwin on the track of his remarkable theories derives an added charm from his vivid description of his travels in exotic places and his eye for the piquant detail. (Book Jacket Status: Jacketed)","Jimmy Stewart: Bomber Pilot. Of all the celebrities who served their country during World War II--and they were legion--Jimmy Stewart was unique. On December 7th, when the attack on Pearl Harbor woke so many others to the reality of war, Stewart was already in uniform: as a private on guard duty south of San Francisco at the Army Air Corps Moffet Field. Seeing war on the horizon, Jimmy Stewart, at the height of his fame after Mr. Smith Goes to Washingtonand his Oscar-winning turn in The Phadelphia Storyin 1940,had enlisted several months earlier. Jimmy Stewart, Bomber Pilotchronicles his long journey to become a bomber pilot in combat. Author Starr Smith, the intelligence officer assigned to the movie star, recounts how Stewart's first battles were with the Air Corps high command, who insisted on keeping the naturally talented pilot out of harm's way as an instructor pilot for B-17 Flying Fortresses and B-24 Liberators. By 1944, however, Stewart managed to get assigned to a Liberator squadron that was deploying to","The Natural Way to Draw. Great for the beginner and the expert, this book offers readers exercises to improve their work.","Chicken Trek. Oscar spends the summer with his inventor cousin traveling around th United States in a Picklemobile eating chicken in the bag to win a contest, while being pursued by an angry woman with mystical powers, who is also determined to win the contest.","About a Boy. Will is thirty-six but acts like a teenager. He reads the right magazines, goes to the right clubs and knows which trainers to wear. He's also discovered a great way to score with women - at single parents' groups, full of available mothers, all waiting for Mr Nice. That's where he meets Marcus, the oldest twelve-year-old in the world. Marcus is a bit strange: he listens to Mozart, looks after his mum and he's never even owned a pair of trainers. Perhaps if Will can teach Marcus how to be a kid, Marcus can help Will grow up...","The Pirate Chase (Pirates of the Caribbean: Jack Sparrow #3). Jack and company are hot on the trail of the notorious pirate Left Foot Louis, who they believe has the Sword of Cort es, but Arabella, the first mate, has a personal score to settle with Louis that could jeopardize the entire mission.","The House of the Dead. Accused of political subversion as a young man, Fyodor Dostoyevsky was sentenced to four years of hard labor at a Siberian prison camp -- a horrifying experience from which he developed this astounding semi-autobiographical memoir of a man condemned to ten years of servitude for murdering his wife. As with a number of the author's other works, this profoundly influential novel brilliantly explores his characters' thoughts while probing the depths of the human soul. Describing in relentless detail the physical and mental suffering of the convicts, Dostoyevsky's character never loses faith in human qualities and the goodness of man. A haunting and remarkable work filled with wonder and resignation, The House of the Deadranks among the Russian novelist's greatest masterpieces. Of this powerful autobiographical novel, Tolstoy wrote, ""I know no better book in all modern literature.""","Theater Shoes. Three orphans are forced to enter a theater school by their grandmother, a famous actress. Unable to pay the tuition, they are given scholarships from the now-grown orphans from Ballet Shoes. Will they be able to live up to their patron's legacies? The children are ready to run away -- until they discover their hidden talents. Originally published in 1945.","You: The Owner's Manual: An Insider's Guide to the Body That Will Make You Healthier and Younger. Between your full-length mirror and high-school biology class, you probably think you know a lot about the human body. While it's true that we live in an age when we're as obsessed with our bodies as we are with celebrity hairstyles, the reality is that most of us know very little about what chugs, churns, and thumps throughout this miraculous, scientific, and artistic system of anatomy. Yes, you've owned your skin-covered shell for decades, but you probably know more about your cell-phone plan than you do about your own body. When it comes to your longevity and quality of life, understanding your internal systems gives you the power, authority, and ability to live a healthier, younger, and better life. ""You: The Owner's Manual"" challenges your preconceived notions about how the human body works and ages, then takes you on a tour through all of the highways, back roads, and landmarks inside of you. After taking a quiz that tests your body of knowledge, you'll learn about all of your bl","Existentialists and Mystics: Writings on Philosophy and Literature. Best known as the author of twenty-six novels, Iris Murdochhas also made significant contributions to the fields of ethics and aesthetics. Collected here for the first time in one volume are her most influential literary and philosophical essays. Tracing Murdoch's journey to a modern Platonism, this volume includes incisive evaluations of the thought and writings of T. S. Eliot, Jean-Paul Sartre, Albert Camus, Simone de Beauvior, and Elias Canetti, as well as key texts on the continuing importance of the sublime, on the concept of love, and the role great literature can play in curing the ills of philosophy.Existentialists and Mysticsnot only illuminates the mysticism and intellectual underpinnings of Murdoch's novels, but confirms her major contributions to twentieth-century thought.","Myths of the Norsemen: Retold from the Old Norse Poems and Tales. PRE-ISBN From the page preceding the title page; ""The myths of the Northmen, from the ice and snow of the Scandinavian countries, tell how in the beginning there was only the Yawning Void, which they called Ginnungagap, but deep in the Void lay the Well of Life. In course of time ice piled over the Well, and out of it grew something they called Ymir, the father of the terrible Frost Giants. Ymir was fed on the milk of a magic cow who licked the ice, and with it salt from the Well of Life. As she licked with her tongue, she formed the first of the gods, the AEsir, who was called Buri. Buri had a son Borr, and Borr was the father of Odin. Odin and his brothers overcame the ice and frost giants. They thrust Ymir down into the Yawning Void, and of his body they made the world we live in. They set the sea in a ring about the world, and planted the World Tree, the Ash Yggdrasill, to hold it in place. From this making of the world, to Ragnarok, the last Great Battle, Roger Lancelyn Green tell","Last Words: The Final Journals. Last Words: The Final Journals of William S. Burroughs is the most intimate book ever written by William S. Burroughs, author of Naked Lunch and one of the most celebrated literary outlaws of our time. Laid out as diary entries of the last nine months of Burroughs's life, Last Words spans the realms of cultural criticism, personal memoir, and fiction. Classic Burroughs concerns -- literature, U.S. drug policy, the state of humanity, his love for his cats -- permeate the book. Most significantly, Last Words contains some of the most personal work Burroughs has ever written, a final reckoning with his life and regrets, and his reflections on the deaths of his friends Allen Ginsberg and Timothy Leary. It is a poignant portrait of the man, his life, and his creative process -- one that never quit, not even in the shadow of death.","1 000 Places to See Before You Die. Around the World, continent by continent, here is the best the world has to offer: 1,000 places guaranteed to give travelers the shivers. Sacred ruins, grand hotels, wildlife preserves, hilltop villages, snack shacks, castles, festivals, reefs, restaurants, cathedrals, hidden islands, opera houses, museums, and more. Each entry tells exactly why it's essential to visit. Then come the nuts and bolts: addresses, websites, phone and fax numbers, best times to visit. Stop dreaming and get going. This hefty volume reminds vacationers that hot tourist spots are small percentage of what's worth seeing out there. A quick sampling: Venice's Cipriani Hotel; California's Monterey Peninsula; the Lewis and Clark Trail in Oregon; the Great Wall of China; Robert Louis Stevenson's home in Western Samoa; and the Alhambra in Andalusia, Spain. Veteran travel guide writer Schultz divides the book geographically, presenting a little less than a page on each location. Each entry lists exactly where to find","Bleach Volume 17. Rosa Rubicundior, Lilio Candidior The rebellion within the Soul Society grows as doubts spread about the death sentence of ex-Soul Reaper Rukia Kuchiki. Determined to save her, Rukia's childhood friend Renji vows to cut down the captain of his own squad, unaware of the terrifying fate that awaits him.","Agapē Agape. William Gaddis published four novels during his lifetime, immense and complex books that helped inaugurate a new movement in American letters. Now comes his final work of fiction, a subtle, concentrated culmination of his art and ideas. For more than fifty years Gaddis collected notes for a book about the mechanization of the arts, told by way of a social history of the player piano in America. In the years before his death in 1998, he distilled the whole mass into a fiction, a dramatic monologue by an elderly man with a terminal illness. Continuing Gaddis's career-long reflection on those aspects of corporate technological culture that are uniquely destructive of the arts, Agape Agapeis a stunning achievement from one of the indisputable masters of postwar American fiction.","Young Goodman Brown and Other Short Stories. Throughout his richly varied literary career, Nathaniel Hawthorne (1804-1864) wrote compelling short stories of enduring appeal. His first important publication, long before The Scarlet Letter,was the 1837 collection Twice-Told Tales,which brought the New England writer immediate fame and high praise from no less an authority than Edgar Allan Poe. Another compilation, Mosses from an Old Manse,followed in 1846 and achieved further success. This volume contains six stories from those collections as well as another superb selection, ""My Kinsman, Major Molineux."" In addition to the latter tale and the title story, this edition includes ""Dr. Heidegger's Experiment,"" ""The Birthmark,"" ""Rappaccini's Daughter,"" ""Roger Malvin's Burial"" and ""The Artist of the Beautiful."" Here are tales rich in atmosphere and suspense, with plots centering on subjects as diverse as witchcraft, revenge, the power of guilt, and a passion for the beautiful, all recounted in the distinctive voice of one of America's g","Stardust. Life moves at a leisurely pace in the tiny town of Wall - named after the imposing stone barrier which separates the town from a grassy meadow. Here, young Tristran Thorn has lost his heart to the beautiful Victoria Forester and for the coveted prize of her hand, Tristran vows to retrieve a fallen star and deliver it to his beloved. It is an oath that sends him over the ancient wall and into a world that is dangerous and strange beyond imagining . .","Insurgency and Terrorism: From Revolution to Apocalypse. A systematic, comprehensive, and straightforward textbook for analyzing and comparing insurgencies and terrorist movements, Insurgency and Terrorismwas first published in 1990 to broad acclaim. Observers, scholars, students, military personnel, journalists, and government analysts worldwide found it worthy of study. Now Insurgency and Terrorismhas been thoroughly revised and updated to cover activity that has since occurred in Afghanistan, Iraq, the Philippines, Colombia, and elsewhere and to address the new tactics and weapons used--and threatened. Author Bard E. O'Neill, the director of studies of insurgency and revolution at the National War College, addresses insurgencies with respect to ultimate goals, strategies, forms of warfare, the role and means of acquiring popular support, organizational dynamics, causes and effects of disunity, types of external support, and government responses. Course syllabi included.",A Picture Book of Thomas Jefferson (Picture Book Biographies) (Picture Book Biography).,"The Stone Monkey (Lincoln Rhyme #4). Quadriplegic detective Lincoln Rhyme and his partner and lover Amelia Sachs face an ultimatum from the west, evil from the east and a brand new threat - from within.","Full Circle: A South American Journey. Full Circleinvites us to accompany Chilean writer Luis Sepulveda on a ""journey without a fixed itinerary"". Whatever his subject - brutalities suffered under Pinochet's dictatorship, sleepy tropical towns visited in exile, or the landscapes of legendary Patagonia - Sepulveda is an unflinchingly honest yet lyrical toryteller. extravagant characters and extraordinary situations are memorably evoked: gauchos organising a tournament of lies, a scheming heiress on the lookout for a husband, a pilot with a corpse on board his plane... Part autobiography, part travel memoir, Full Circlebrings us the distinctive voice of one of South America's most compelling writers","Zen and the Art of Motorcycle Maintenance: An Inquiry Into Values. At its heart, the story is all too simple: a man and his son take a lengthy motorcycle trip through America. But this is not a simple trip at all, for around every corner, through mountain and desert, wind and rain, and searing heat and biting cold, their pilgrimage leads them to new vistas of self-discovery and renewal. Zen and the Art of Motorcycle Mantenanceis an elemental work that has helped to shape and define the past twenty-five years of American culture. This special audio edition presents this adventure in a compelling way - for the millions who have already taken this journey and want to travel these roads again, and for the many more who will discover for the first time the wonders and challenges of a journey that will change the way they think and feel about their lives.",Above and Beyond. Trevor's love for Kyla--the widow of his best friend--is complicated by a secret that threatens to destroy their fragile relationship.,"The Art of War. Born over 2,400 years ago, warrior, thinker, and leader Sun Tzu lived during a time of great internecine conflict in China. A classic of Chinese literature, Art of War reveals the strategies, tactics, and insights that lead to success. Mastery of warfare and the maintenance of power are the most important values in Sun's philosophy--without which there can be no peace or life. According to Sun, studying your enemy, detecting his weakness, allowing him to expose himself and then acting accordingly is the key to success. But, it is perhaps even more important to master the skill of winning without fighting. Sun's battle-proven strategies have been put into practice by countless leaders--from Mao Tse-tung to Napoleon to the planners of Operation Desert Storm. Filled with practical wisdom and strategy Art of War is an indispensable guide for anyone who want an edge over the competition. With powerful narration by George Guidall and Joe Mantegna, listeners are sure to be destined for greatn","The Life and Games of Mikhail Tal. Mikhail Tal, the 'magician from Riga' was the greatest attacking World Champion of them all, and this enchanting autobiography chronicles his extraordinary career with charm and humor.",Aristotle's Ethics (SparkNotes Literature Guides).,"Jane Eyre. Mit der klugen, charakterstarken Jane Eyre schuf Charlotte Bronte eines der bewegendsten Frauenportrats der englischen Literatur. Die Heldin gewinnt ihre Grosse im existentiellen Widerstreit zwischen tiefem Liebesverlangen und dem, was der menschlichen Seele letztlich die Selbstachtung erhalt: dem Gefuhl personlicher Integritat. Die marchenhaft anmutende Geschichte der Waise von Lowood, von einer bis dahin ganzlich unbekannten Debutantin in einem weltfernen englischen Provinznest verfasst, eroberte im Nu einen bleibenden Platz in der Weltliteratur. Jane Eyre ist fur ihre Zeit eine unerhort eigenstandige und eigensinnige Heldin. Selbst als das zum Greifen nahe Gluck fur immer verloren scheint, bleibt sie sich treu. Die vom Schicksal benachteiligte, ausserlich unscheinbare junge Frau gewinnt kraft ihres aufrechten Charakters nicht nur das Herz des finsteren Mr. Rochester, sondern auch das unzahliger Leser. Der Roman ist eine moderne, weil bereits weitreichend desillusionierte Version des","Goddess of Love (Goddess Summoning #5). The story of the mythical Venus who comes to life to help a nerdy woman find her inner goddess. Pea Chamberlain needs a makeover-shoes, hair, clothes, make-up-if she wants to attract an ubersexy fireman. And who could better coax Pea out of her pod than the Goddess of Love, whom she invokes in a moment of desperation? Venus works her magic on Pea, but who will help her when she falls for that same sexy fireman? Could Venus need a love makeover for herself? Check out the five-alarm heat when the Goddess of Love unexpectedly loses her heart.","Le Pont sur la Drina. A Visegrad, c'est sur le pont reliant les deux rives de la Drina mais aussi la Serbie et la Bosnie, l'Orient et l'Occident que se concentre depuis le xvie siecle la vie des habitants, chretiens, juifs, musulmans de Turquie ou <>. C'est la que l'on palabre, s'affronte, joue aux cartes, ecoute les proclamations des maitres successifs du pays, Ottomans puis Austro-Hongrois.C'est la chronique de ces quatre siecles que le grand romancier yougoslave Ivo Andri 'c, prix Nobel de litterature en 1961, nous rapporte ici, melant la legende a l'histoire, la drolerie a l'horreur, faisant revivre mille et un personnages : de Radisav le Serbe empale par le gouverneur turc, a Fata qui se jette du pont pour eviter un mariage force, et au vieil Ali Hodja, le Turc traditionaliste, qui voit avec consternation surgir les troupes de lempereur Francois-Joseph.En 1914, le pont endommage dans une explosion demeure debout. Sinistre presage, cependant, grace auquel ce roman paru en 1945, oeuvre d'un ecrivain bosn","Death of a Darklord (Ravenloft #13). ""Death of a Darklord"" focuses on a young woman who finds that she has a talent for magic in a land and a family unforgiving of such abilities, and her tragic attempts to redeem herself in the eyes of her family by aiding them on their quest to end the dark magic that has destroyed a neighboring town.",The Theban Plays: Oedipus Rex Oedipus at Colonus & Antigone.,The Comparative Study of Political Elites.,"Kurt Vonnegut's Cat's Cradle (Modern Critical Interpretations). A critical overview of the work features the writings of Terry Southern, William S. Doxey, Jerome Klinkowitz, Richard Giannone, John L. Simons, James Lundquist, and other scholars. - After the bomb, Dad came up with ice / Terry Southern - Vonnegut's Cat's cradle / William S. Doxey - The private person as public figure / Jerome Klinkowitz - Cat's cradle / Richard Giannone - Tangled up in you : a playful reading of Cat's cradle / John L. Simons - From formula toward experiment : Cat's cradle and God bless you, Mr. Rosewater / Jerome Klinkowitz - Playful genesis and dark revelation in Cat's cradle / Leonard Mustazza - Bokononism as a structure of ironies / Zoltan Ab di-Nagy - Mother night, Cat's cradle, and The crimes of our time / Jerome Klinkowitz - Vonnegut's invented religions as sense-making systems / Peter Freese - Icy solitude : magic and violence in Macondo and San Lorenzo / Wendy B. Faris - Vonnegut's cosmos / David H. Goldsmith - Cosmic irony / James Lundquist - Cat's cradle : J",Vinyl Cafe Coast to Coast Story Service.,"Heaven's Price. Blair Simpson has embraced a life most people merely dreamed about. Devoting her nights as well as her days to dancing--in the chorus line of Broadway musicals and occasional TV commercials--she had never considered another career. Now an injury has sent her to a small town for six long months of recuperation. All around her are couples who are raising families and building dreams together. And there she meets a man who forces her to come to terms with a part of herself she has long denied. From her first encounter with her new landlord, Sean Garett, the powerful sexual attraction between them catches her off guard. For the first time she's unable to lose herself in her dancing, as Sean's passion and tenderness urge her to open her life to him. More than anything, Sean wants to build a future with fiery, raven-haired Blair. But Blair's own passion for dance has ruled her for so long, she may not be able to break its hold--even if it costs her the love she had thought she'd never find.","The Michael Crichton Collection: Airframe / The Lost World / Timeline. Airframe Three passengers are dead. Fifty-six are injured. The interior cabin is virtually destroyed but the pilot manages to land the plane... Airframe combines a realistic situation with heart-pounding suspense to keep the listener captivated until the very last word. The Lost World It is now six years since the secret disaster at Jurassic Park, six years since the extraordinary dream of science and imagination came to a crashing end-the dinosaurs destroyed, the park dismantled, the island indefinitely closed to the public. There are rumors that something has survived. . . . Timeline In a world of unforeseen technological advances, a group of historians finds its way to the medieval past. The journey, while ground-breaking, carries the listener also into a realm of unexpected suspense and terror, twisting our most basic ideas of reality.","Women and Writing. Known for her novels, and for the dubious fame of being a doyenne of the 'Bloomsbury Set', in her time Virginia Woolf was highly respected as a major essayist and critic with a special interest and commitment to contemporary literature, and women's writing in particular. This spectacular collection of essays and other writings does justice to those efforts, offering unique appraisals of Aphra Behn, Mary Wollstonecraft, the Duchess of Newcastle, Dorothy Richardson, Charlotte Bronte, and Katherine Mansfield, amongst many others. Gathered too, and using previously unpublished (sometimes even unsigned) journal extracts, are what will now become timeless commentaries on 'Women and Fiction', 'Professions for Women' and 'The Intellectual Status of Women'. More than half a century after the publication of A Room Of One's Own, distinguished scholar Michele Barrett cohesively brings together work which, throughout the years, has been scattered throughout many texts and many volumes. . . affordin","Thuvia Maid of Mars (Barsoom #4). Mars has become divided by love. Not one, but two princes and a Jeddak are vying for the love of Thuvia of Ptarth. When she is mysteriously kidnapped, treachery threatens to throw Barsoom into bloody war.","Every Night Italian: Every Night Italian. Reveals the secret to preparing quick, flavorful Italian cuisine in recipes for appetizers, antipasto, main entrees, salads, and desserts Title: Every Night Italian Author: Hazan, Giuliano Publisher: Simon & Schuster Publication Date: 2000/01/12 Number of Pages: 256 Binding Type: HARDCOVER Library of Congress: 99037394","Lord of the Flies. William Golding's classic novel of primitive savagery and survival is one of the most vividly realized and riveting works in modern fiction. The tale begins after a plane wreck deposits a group of English school boys, aged six to twelve on an isolated tropical island. Their struggle to survive and impose order quickly evolves from a battle against nature into a battle against their own primitive instincts. Golding's portrayal of the collapse of social order into chaos draws the fine line between innocence and savagery.","Kare First Love Vol. 10 (Kare First Love #10). Four-eyed high-schooler Karin has never thought of herself as the glamorous type, so why is this hot guy on the subway taking pictures of her? Does he actually like her or is he just some kind of subway perv? Things get complicated when the most popular girl in Karin's school, Yuka, starts showing an interest in Kiriya (yes, that picture-taking guy on the subway) and sees Karin as her rival! Can Karin build up her self-esteem (and ditch her glasses) enough to stand up to jealous Yuka--and experience first love?","Arthur & George. As boys, George, the son of a Midlands vicar, and Arthur, living in shabby genteel Edinburgh, find themselves in a vast and complex world at the heart of the British Empire. Years later--one struggling with his identity in a world hostile to his ancestry, the other creating the world's most famous detective while in love with a woman who is not his wife-their fates become inextricably connected. In Arthur & George, Julian Barnes explores the grand tapestry of late-Victorian Britain to create his most intriguing and engrossing novel yet.","Justine (The Alexandria Quartet #1). Alexandria - a thousand dust-tormented streets. Flies and beggars own it today, and those who enjoy an intermediate existence in between. Five races, five languages, a dozen creeds - but there are more than five sexes. The sexual provender which lies to hand is staggering in its variety and profusion. The Orient cannot rejoice in the sweet anarchy of the body - for it has far outstripped the body. Someone once said that Alexandria was the great wine press of love; those who emerged from it were the sick men, the solitaries, the prophets - I mean all who have been deeply wounded in their sex.","The Eyes of Heisenberg. A New World in Embryo Public Law 10927 was clear and direct. Parents were permitted to watch the genetic alterations of their gametes by skilled surgeons . . . only no one ever requested it. When Lizbeth and Harvey Durant decided to invoke the Law; when Dr. Potter did not rearrange the most unusual genetic structure of their future son, barely an embryo growing in the State's special vat-the consequences of these decisions threatened to be catastrophic. For never before had anyone dared defy the Rulers' decrees . . . and if They found out, it was well known that the price of disobedience was the extermination of the human race . . .","Summer of the Dragon. A good salary and an all-expenses-paid summer spent a sprawling Arizona ranch is too good a deal for fledgling anthropologist D.J. Abbott to turn down. What does it matter that her rich new employer/benefactor, Hank Hunnicutt, is a certified oddball who is presently funding all manner of off-beat projects, from alien conspiracy studies to a hunt for dragon bones? There's even talk of treasure buried in the nearby mountains, but D.J. isn't going to allow loose speculation -- or the considerable charms of handsome professional treasure hunter Jesse Franklin -- to sidetrack her. Until Hunnicutt suffers a mysterious accident and then vanishes, leaving the weirdos gathered at his spread to eye each other with frightened suspicion. But on a high desert search for the missing millionaire, D.J. is learning things that may not be healthy for her to know. For the game someone is playing here goes far beyond the rational universe -- and it could leave D.J. legitimately dead.","In the Pond. In the Pondis a 2000 novel by Ha Jin, who has also written Under the Red Flag, Ocean of Winds, and Waiting. He has been praised for his works relating to Chinese life and culture. The novel centers around the character Shao Bin, a Chinese man working at fertilizer plant, and his epic struggle to obtain a decent apartment for his young family. Continually passed over by the plant's corrupt leaders, Bin decides to fight back against his communist superiors. Conflict espouses when Bin's struggle is met with counterattacks and opposition he could never have imagined.","The Sixteen Pleasures. When book conservator Margo Harrington goes to Florence to aid in restoring the treasures damaged in the flooding of the Arno in 1966, she is entrusted with a rare book that its owner, the abbess of a convent, hopes to sell without the bishop's knowledge. (Nancy Pearl)","Strip Tease. Murder, politics, and G-strings collide in this caper from the bestselling author of Tourist Season. Hilarity and chaos break out in a strip joint when a bachelor party gets out of hand, making the drunken guest of honor a threat to ""big money"" and ""big government.""",Cosmos.,"The Wizard's Apprentice (The Keepers #2). CAN THEY ALL SURVIVE? Princess Arenelle has done what no other girl in the history of Eldearth has done! She has completed the Quest to become the next Imperial Wizard, Keeper of the Light that protects Eldearth from Evil. Soon she will be apprenticed to the current Keeper, and her training will begin. Or will it?When Arenelle's father, King Einar, discovers that he has a long lost son, the King has a change of heart, forbidding Nell to proceed. The boy mustbe the Chosen One, the King decrees. It is he who should become Apprentice. Nell is in turn outraged and bewildered by this turn of events, all the more so when she discovers that her long lost brother is Owen, the very same street urchin she discovered in the Lanes and sent off to Witch Academy to pose as herself. In this continuation of The Keeper's saga, Nell defies the King and decides to pursue the Wizardry anyway, but when her brother falls into the hands of the Dark Forces and her father sets off on a dangerous rescue missi","GraceLand. This novel is set in Maroko, a sprawling, swampy, crazy and colorful ghetto of Lagos, Nigeria, and unfolds against a backdrop of lush reggae and highlife music, American movies and a harsh urban existence. Elvis Oke, a teenage Elvis impersonator spurred on by the triumphs of heroes in the American movies and books he devours, pursues his chosen vocation with ardent single-mindedness. He suffers through hours of practice set to the tinny tunes emanating from the radio in the filthy shack he shares with his alcoholic father, his stepmother and his stepsiblings. He applies thick makeup that turns his black skin white, to make his performances more convincing for American tourists and hopefully net him dollars. But still he finds himself constantly broke. Beset by hopelessness and daunted by the squalor and violence of his daily life, he must finally abandon his dream. With job prospects few and far between. Elvis is tempted to a life of crime by the easy money his friend Redemption tells","I Like You: Hospitality Under the Influence. Are you lacking direction in how to whip up a swanky soiree for lumberjacks? A dinner party for white-collar workers? A festive gathering for the grieving? Don't despair. Take a cue from entertaining expert Amy Sedaris and host an unforgettable fete that will have your guests raving. No matter the style or size of the gathering-from the straightforward to the bizarre-I Like Youprovides jackpot recipes and solid advice laced with Amy's blisteringly funny take on entertaining, plus four-color photos and enlightening sidebars on everything it takes to pull off a party with extraordinary flair. You don't even need to be a host or hostess to benefit-Amy offers tips for guests, too! (Number one: don't be fifteen minutes early.) Readers will discover unique dishes to serve alcoholics (Broiled Frozen Chicken Wings with Applesauce), the secret to a successful children's party (a half-hour time limit, games included), plus a whole appendix chock-full of arts and crafts ideas (from a mini-pantyho",The Castle Keeps.,"It's Not about the Bike: My Journey Back to Life. It is such an all-American story. A lanky kid from Plano, Texas, is raised by a feisty, single parent who sacrifices for her son, who becomes one of our country's greatest athletes. Given that background, it is understandable why Armstrong was able to channel his boundless energy toward athletic endeavors. By his senior year in high school, he was already a professional triathlete and was training with the U.S. Olympic cycling developmental team. In 1993, Armstrong secured a position in the ranks of world-class cyclists by winning the World Championship and a Tour de France stage, but in 1996, he was diagnosed with testicular cancer. Armstrong entered an unknown battlefield and challenged it as if climbing through the Alps: aggressive yet tactical. He beat the cancer and proceeded to stun all the pundits by winning the 1999 Tour de France. In this memoir, Armstrong covers his early years swiftly with a blunt matter-of-factness, but the main focus is on his battle with cancer. Readers w","CliffsNotes on Joyce's Dubliners (Cliffs Notes). The original CliffsNotes study guides offer a look into critical elements and ideas within classic works of literature. The latest generation of titles in this series also features glossaries and visual elements that complement the classic, familiar format.""CliffsNotes on Dubliners"" looks into a collection of stories that author James Joyce unites by place, time, and meaning. Following a portrayal of scandalous and ugly human behavior in a series of straightforward stories, this study guide provides summaries and commentaries for each of 15 linked tales, narrative prose centered in Dublin, Ireland. Other features that help you figure out this important work includeFocus on the author's education, literary style, and awards and honorsA synopsis of the book's setting, characterization, dialogue, and point of viewCharacter analyses and critical essaysAn interactive quiz, plus suggested essay questions and practice projects Classic literature or modern-day treasure -- you'll understand it",The Complete Adventures and Memoirs of Sherlock Holmes. The celebrated cases of Sherlock Holmes,"Life Is a Dream. A product of the golden age of Spanish drama, Life Is a Dream(La vida es sueno) is the masterpiece of Pedro Calderon de la Barca (1600-1681), a contemporary of Lope de Vega and one of Spain's greatest literary figures. Acclaimed for his superb dramatic instincts and philosophical seriousness as well as his extraordinary imagination, Calderon exercised his best qualities in this allegorical play, an exploration of the mysteries of human destiny, the illusory nature of earthly existence, and the struggle between predestination and free will. The story revolves around the moral dilemmas of a Polish prince, unjustly imprisoned by his suspicious father. Against a background of revolution, Calderon builds a dramatic edifice of outstanding theatricality, rich in symbolism and metaphor, expressed in magnificent poetry. This excellent new English translation is absolutely complete, and as close and direct as possible. Ample footnotes and an informative introductory Publisher's Note enhance the",Lizabeth's Story (The Girls of Lighthouse Lane #3).,Serious Girls.,"Aphrodite's Flame (Superhero Central #4). Continuing Kenner's loosely linked Protector series that includes the ""USA Today"" bestselling ""Aphrodite's Kiss"" and ""Aphrodite's Passion,"" this long-awaited story features Mordi, the good-natured villain from previous stories, who finally finds love. Original.","The Music of Chance. Finalist for the PEN/Faulkner Award for Fiction, The Music of Chancefollows Jim Nashe who, after squandering an unexpected inheritance, picks up a young gambler named Jack Pozzi hoping to con two millionaires. But when their plans backfire, Jim and Jack are indentured by their elusive marks and are forced to build a meaningless wall with bricks gathered from ruins of an Irish castle. Time passes, their debts mount, and anger builds as the two struggle to dig themselves out of their Kafkaesque serfdom. New York Times-bestselling author Paul Auster (The New York Trilogy)brings us back into his strange, shape-shifting world of fiendish bargains and punitive whims, where chance is a powerful yet unpredictable force.","Easy Labor: Every Woman's Guide to Choosing Less Pain and More Joy During Childbirth. THE FIRST COMPLETE, COMPREHENSIVE GUIDE TO PAIN RELIEF DURING LABOR AND DELIVERY Far too many expectant mothers find themselves unprepared when labor begins and natural techniques don't effectively manage the pain. This indispensable guide provides reassuring, proven approaches to combining medical and natural techniques to ensure the most comfortable pain-free labor possible. In Easy Labor, you'll discover - what to expect during labor, and key factors that affect your comfort - the facts on epidurals, safety concerns, and how effectively they reduce pain - the pros and cons of pain-relief medications - complementary and alternative methods, including water immersion, acupuncture, hypnosis, massage, and birth balls - how your choice of hospital or birth center affects your pain-management options - techniques to calm and eliminate the specific fears and stresses associated with childbirth So relax and enjoy your pregnancy, with this important book by your side!","A Short History of Byzantium. ""Norwich is always on the lookout for the small but revealing details. . . . All of this he recounts in a style that consistently entertains."" --The New York Times Book Review In this magisterial adaptation of his epic three-volume history of Byzantium, John Julius Norwich chronicles the world's longest-lived Christian empire. Beginning with Constantine the Great, who in a.d. 330 made Christianity the religion of his realm and then transferred its capital to the city that would bear his name, Norwich follows the course of eleven centuries of Byzantine statecraft and warfare, politics and theology, manners and art. In the pages of A Short History of Byzantiumwe encounter mystics and philosophers, eunuchs and barbarians, and rulers of fantastic erudition, piety, and degeneracy. We enter the life of an empire that could create some of the world's most transcendent religious art and then destroy it in the convulsions of fanaticism. Stylishly written and overflowing with drama, pathos, and","Monkeewrench (Monkeewrench #1). People are dying for the new computer game by the software company Monkeewrench. Literally. With Serial Killer Detective out in limited release, the real-life murders of a jogger and a young woman have already mimicked the first two scenarios in the game. But Grace McBride and her eccentric Monkeewrench partners are caught in a vise. If they tell the Minneapolis police of the link between their game and the murders, they'll shine a spotlight on the past they thought they had erased-and the horror they thought they'd left behind. If they don't, eighteen more people will die...","Nightingale's Song. The setting is Whitby in the mid 1700s...Maggie Nightingale spends her evenings singing in her father's tavern, the Anchor Inn, on the rugged east Yorkshire coastline. The inn is a haunt for local ruffians, thieves and smugglers, and Maggie overhears many a dark plan hatched over ale at night. She never imagined that such plans could threaten her very existence, and see her wrongly accused of murder. Togther with notorious smuggling villain, Thomas Hague, Maggie's only escape from public hanging comes in the form of a ship bound for America. The New World. but will the shadow of death follow Maggie Nightingale across the ocean, and haunt her for the rest of her life?","The Illustrated A Brief History of Time. In the years since its publication in 1988, Stephen Hawking's A Brief History of Time has established itself as a landmark volume in scientific writing. It has become an international publishing phenomenon, translated into forty languages and selling over nine million copies. The book was on the cutting edge of what was then known about the nature of the universe, but since that time there have been extraordinary advances in the technology of observing both the micro- and the macrocosmic worlds. These observations have confirmed many of Professor Hawking's theoretical predictions in the first edition of his book, including the recent discoveries of the Cosmic Background Explorer satellite (COBE), which probed back in time to within 300,000 years of the universe's beginning and revealed wrinkles in the fabric of spacetime that he had projected. Eager to bring to his original text the new knowledge revealed by these many observations, as well as his most recent research, for this expande","Unauthorized Harry Potter Book Seven News: ""Half-Blood Prince"" Analysis and Speculation. Through the magic of print-on-demand technology, this ""nimble"" guide to the work of best-selling author J. K. Rowling provides the latest news about the author and her works, updated whenever there are significant developments. Unlike a conventional book, for which editions are printed in quantity every couple of years, this ""living book"" goes through frequent ""mini-editions"" and is printed fresh whenever customers place an order. Purchasers are entitled to free PDF updates! An entirely new section of analysis with more than 75 new pages will be added shortly after the release of ""Harry Potter and the Half-Blood Prince"" on July 16, 2005.","Get Out of Your Mind and Into Your Life: The New Acceptance and Commitment Therapy. Get ready to take a different perspective on your problems and your life--and the way you live it. Acceptance and commitment therapy (ACT) is a new, scientifically based psychotherapy that takes a fresh look at why we suffer and even what it means to be mentally healthy. What if pain were a normal, unavoidable part of the human condition, but avoiding or trying to control painful experience were the cause of suffering and long-term problems that can devastate your quality of life? The ACT process hinges on this distinction between pain and suffering. As you work through this book, you'll learn to let go of your struggle against pain, assess your values, and then commit to acting in ways that further those values. ACT is not about fighting your pain; it's about developing a willingness to embrace every experience life has to offer. It's not about resisting your emotions; it's about feeling them completely and yet not turning your choices over to them. ACT offers you a path out of suffe","Who Are You?: 101 Ways of Seeing Yourself. * What does the shape of your head and your hands tell about your personality? * Are you left-brain or right-brain dominant? Yin or yang? * What is your spiritual tendency? * Are you sanguine, melancholic, choleric, or phlegmatic? * Which is your most essential element--wood, fire, earth, metal, or water? * Are you a sensualist, romantic, or courtesan? Created by a renowned artist/illustrator, this beautiful and practical book contains one hundred and one intriguing, easy to follow, and often amusing devices that will help readers determine their abilities, personality type, psychological strategies, and deeper potential. As fun to use as it is profound in its revelations, Who Are You? is drawn from ancient teachings and contemporary findings. The ""tests"" it contains are divided into four sections--the body, the emotions, the intellect, and the spirit. The result is one hundred and one separate identity mirrors that work together to give readers a comprehensive self-portrait that is bo","The Rock That Is Higher: Story as Truth. We are all strangers in a strange land, longing for home, but not quite knowing what or where home is. We glimpse it sometimes in our dreams, or as we turn a corner, and suddenly there is a strange, sweet familiarity that vanishes almost as soon as it comes... -Madeleine L'Engle, from The Rock That Is Higher Story captures our hearts and feeds our imaginations. It reminds us who we are and where we came from. Story gives meaning and direction to our lives as we learn to see it as an affirmation of God's love and truth-an acknowledgment of our longing for a rock in the midst of life's wilderness. Drawing upon her own experiences, well-known tales in literature, and selected narratives from Scripture, Madeleine L'Engle gently leads the way into the glorious world of story in The Rock That Is Higher.Here she acknowledges universal human longings and considers how literature, Scripture, personal stories, and life experiences all point us toward our true home.","The Snake Pit (The Master of Hestviken #2). Set in medieval Norway, the books follow Olav and Ingunn, who, though raised as brother and sister, have become lovers in a world caught between the fading sphere of pagan worship and vendettas and the expansion of Christianity.",Utena: Revolutionary Girl 01.,"Eight Men Out: The Black Sox and the 1919 World Series. The headlines proclaimed the 1919 fix of the World Series and attempted cover-up as ""the most gigantic sporting swindle in the history of America!"" First published in 1963, Eight Men Out has become a timeless classic. Eliot Asinof has reconstructed the entire scene-by-scene story of the fantastic scandal in which eight Chicago White Sox players arranged with the nation's leading gamblers to throw the Series in Cincinnati. Mr. Asinof vividly describes the tense meetings, the hitches in the conniving, the actual plays in which the Series was thrown, the Grand Jury indictment, and the famous 1921 trial. Moving behind the scenes, he perceptively examines the motives and backgrounds of the players and the conditions that made the improbable fix all too possible. Here, too, is a graphic picture of the American underworld that managed the fix, the deeply shocked newspapermen who uncovered the story, and the war-exhausted nation that turned with relief and pride to the Series, only to be rocke","The Rules of Attraction. Set at a small affluent liberal-arts college in New England eighties, The Rules of Attractionis a startlingly funny, kaleidoscopic novel about three students with no plans for the future--or even the present--who become entangled in a curious romantic triangle. Bret Easton Ellis trains his incisive gaze on the kids at self-consciously bohemian Camden College and treats their sexual posturings and agonies with a mixture of acrid hilarity and compassion while exposing the moral vacuum at the center of their lives. The Rules of Attractionis a poignant, hilarious take on the death of romance.","The Selected Poems of Federico García Lorca. The work of Federico Garcia Lorca, Spain's greatest modern poet, has long been admired for its emotional intensity and metaphorical brilliance. Few poets take us more directly and memorably to what Lorca described as ""the dark root of the scream, "" the terrain of the duende, where inspiration delivers a new poetic reality and ""intelligence"" discovers its limitations. For many years, until the recent publication of FSG's Collected Poems, English readers' view of Lorca has been determined by a few well-known books - The Divan at Tamarit, Poet in New York, The Gypsy Ballads - and by a lamentably small number of poems. Now this Selected Verse, the most complete paperback anthology available in English, draws on FSG's two-volume Poetical Works, providing authoritative versions by outstanding poets and translators: Francisco Aragon, Catherine Brown, Cola Franzen, Will Kirkland, William Bryant Logan, Jerome Rothenberg, Greg Simon, Alan S. Trueblood, John K. Walsh, and Steven F. White. In this","The Plot: The Secret Story of the Protocols of the Elders of Zion. The Plot, which examines the astonishing conspiracy and the fabrication of The Protocols of the Elders of Zion, has become a worldwide phenomenon since its hardcover publication, taught in classrooms around the globe. Purported to be the actual blueprints by Jewish leaders to take over the world, the Protocols, first published in 1902, have become gospel truth to international millions. Presenting a pageant of historical figures from nineteenth-century Russia to today's ideologues, including Tsar Nicholas II, Henry Ford, and Adolf Hitler, Will Eisner unravels and dispels one of the most devastating hoaxes of the twentieth century.","Where or When. Charles Callahan is reading the Sunday paper when an alluring and oddly familiar photo catches his eye: it is Sian Richards, his first love, a face he has not seen for more than three decades. He is entranced by her image, flooded by memories of their teenage summer together, and utterly conpelled to make contact with her again. Charles sends Sian a letter, knowing all the while that ""from the very first sentence of the very first note there was nothing innocent about it."" Sian writes back - she is now a poet living with her husband and small child on an onion farm in Pennsylvania. She is intrigued that Charles has sought her out after so many years but wary of where their correspondence might lead. For Charles, troubled by financial woes, on the verge of losing his home, and concerned about the security of his family, the letters become a secret obsession and another source of instability in his already complicated life. Despite their reservations, the power of Charles and Sian's attr","Maigret in Holland. On his latest case, Maigret finds himself in the town of Delfzijl investigating the murder of a teacher. He is presented with two clues-a sailor's cap in the bathtub and a Manila cigar butt-and a gaggle of suspects, including a flirtatious farmer's daughter, an angry lawyer, a larcenous ship owner, an unaccountably frightened cadet, and a pompous criminologist with a revolver. The Inspector, in turn, is preoccupied with a suspicious pathway lit by a lighthouse beam, which leads him to wonder if this is the kind of spot where secret lovers might be discovered... Maigret is a registered trademark of the Estate of Georges Simenon.","Star Wars: The New Essential Guide to Vehicles & Vessels. Text by W. Haden Blackman All new full colorillustrations by Ian Fullwood From the beat-up landspeeders that whisk travelers between desert towns on Tatooine to Jabba the Hutt's luxurious sail barge and the elegant Naboo Royal Starship, the vehicles and vessels in the Star Warsuniverse have captivated millions of delighted fans. In light of the ever-expanding saga, the NewEssential Guide to Vehicles and Vesselsfeatures completely updated entries that cover more than 150 ships, along with brand new, full-colorillustrations by dazzling artist Ian Fullwood. This new volume encompasses craft from all five movies, the bestselling novels of the New Jedi Order, comics, TV specials, and games. Inside you will find: * Detailed profiles and vital statistics for each vessel, including data covering the vehicle's construction, size, maximum speed, and its role in Star Warshistory * A revealing Layman's Guide to Technology, covering common terms applied to each class of vehicle * An outline of engi","Power Sex Suicide: Mitochondria and the Meaning of Life. If it weren't for mitochondria, scientists argue, we'd all still be single-celled bacteria. Indeed, these tiny structures inside our cells are important beyond imagining. Without mitochondria, we would have no cell suicide, no sculpting of embryonic shape, no sexes, no menopause, no aging. In this fascinating and thought-provoking book, Nick Lane brings together the latest research in this exciting field to show how our growing insight into mitochondria has shed light on how complex life evolved, why sex arose (why don't we just bud?), and why we age and die. These findings are of fundamental importance, both in understanding life on Earth, but also in controlling our own illnesses, and delaying our degeneration and death. Readers learn that two billion years ago, mitochondria were probably bacteria living independent lives and that their capture within larger cells was a turning point in the evolution of life, enabling the development of complex organisms. Lane describes how mitochond","Excession (Culture #5). The international sensation Iain M. Banks offers readers a deeply imaginative, wittily satirical tale, proving once again that he is ""a talent to be reckoned with"" (""Locus""). In ""Excession"", the Culture's espionage and dirty tricks section orders Diplomat Byr Gen-Hofoen to steal the soul of a long-dead starship captain. By accepting the mission, Byr irrevocably plunges himself into a conspiracy: one that could either lead the universe into an age of peace or to the brink of annihilation.","Katz und Maus. Die streng komponierte Novelle 'Katz und Maus' uberraschte 1961 die Kritiker: Grass, als dessen Markenzeichen seit der 'Blechtrommel' die kaum zu bandigende Fulle galt, zeigte sich als Meister der kleinen Form, der literarischen Kammermusik. Aus der Ruckschau des Jahres 1959 erzahlt Pilenz vom bewunderten und verachteten Klassenkameraden Mahlke im Danzig der Kriegszeit, den sein ubergrosser Adamsapfel zum Aussenseiter macht. Mahlke fuhrt einen verzweifelten Kampf um seine Integration, um die Schliessung des existentiellen Risses zwischen 'Katz und Maus', und wird doch im Sieg endgultig scheitern. Auch das Ritterkreuz, von dem er sich, der Perversion der Zeit gemass, Erlosung durch Bedeckung seiner Blosse erhofft, verhilft ihm nicht zum Frieden mit der Welt.","The Last of the Mohicans (The Leatherstocking Tales #2). The wild rush of action in this classic frontier adventure story has madeThe Last of the Mohicansthe most popular of James Fenimore Cooper's Leatherstocking Tales. Deep in the forests of upper New York State, the brave woodsman Hawkeye (Natty Bumppo) and his loyal Mohican friends Chingachgook and Uncas become embroiled in the bloody battles of the French and Indian War. The abduction of the beautiful Munro sisters by hostile savages, the treachery of the renegade brave Magua, the ambush of innocent settlers, and the thrilling events that lead to the final tragic confrontation between rival war parties create an unforgettable, spine-tingling picture of life on the frontier. And as the idyllic wilderness gives way to the forces of civilization, the novel presents a moving portrayal of a vanishing race and the end of its way of life in the great American forests.","In the Footsteps of Mr. Kurtz: Living on the Brink of Disaster in Mobutu's Congo. He was known as ""the Leopard,"" and for the thirty-two years of his reign Mobutu Sese Seko, president of Zaire, showed all the cunning of his namesake, seducing Western powers, buying up the opposition, and dominating his people with a devastating combination of brutality and charm. While the population was pauperized, he plundered the country's copper and diamond resources, downing pink champagne in his jungle palace like some modern-day reincarnation of Joseph Conrad's crazed station manager. Michela Wrong, a correspondent who witnessed firsthand Mobutu's last days, traces the rise and fall of the idealistic young journalist who became the stereotype of an African despot. Engrossing, highly readable, and as funny as it is tragic, her book assesses how Belgium's King Leopold, the CIA, and the World Bank all helped to bring about the disaster that is now the Democratic Republic of Congo. If, in this poignant account, the villains are the ""Big Vegetables"" (les Grosses legumes) -- the fat","The Storm (The Lighthouse Family #1). Life with only the sea can be lonely. Just ask Pandora and Seabold. They've lived most of their lives with the sea -- Pandora in a lighthouse and Seabold on a boat -- and they're each quite used to being alone. Or they were. But one day, the sea did something extraordinary: It brought Pandora and Seabold together! And even better, the sea gave them the ingredients for an adventure that neither of them had considered before-an adventure called ""family.""","Perfect Match. ""What does it mean to be a good mother?"" For career-driven assistant district attorney Nina Frost, the question inspires pangs of guilt familiar to all parents torn by the demands of home and office. But whereas most parents lie awake at night vividly conjuring the worst scenarios that could befall their children in their absence, Nina lives the reality of such crises -- and it's her job to do something about them. Nina Frost prosecutes child molesters -- and in the course of her everyday work, she has endured the frustration of seeing too many criminals slip through the system and walk free. A man as methodical and careful as his wife is instinctive and mercurial, Caleb Frost is a stonemason who glories in his ability to construct with his own hands the physical barriers that will keep out the unwanted -- and protect all that is precious within. But even the strongest walls cannot guard Nina and Caleb from the shattering discovery that their own beloved son has been sexually abused. F","You Can Never Go Home Again. When Angel and her mother move into a cottage on a cliff on Long Island, they find a ghost named BJ, who died during the '50s, already lives there. Part one of two.","Changeling. In Changeling,the people had long suffered under Det Morson's power. When at last, the wizard Mor joined the fight, Det and his infamous Rondoval castle were destroyed. But the victory was not complete, for the conquerors found a baby amidst the rubble: Det's son, Pol. Unwilling to kill the child, Mor took him to a world where the ways of magic were considered mere legends--a world called Earth.","The Orwell Reader: Fiction Essays and Reportage. Here is Orwell's work in all its remarkable range and variety. The selections in this anthology show how Orwell developed as writer and as thinker; inevitably, too, they reflect and illuminate the history of the time of troubles in which he lived and worked. ""A magnificent tribute to the probity, consistency and insight of Orwell's topical writings"" (Alfred Kazin). Introduction by Richard H. Rovere.",The Birds (Methuen Drama).,"Spellbound (Once Upon #1). Leave it to number-one bestselling author Nora Roberts to spin a tale that blurs the boundaries between reality and fantasy, modern-day mishaps and ancient curses, obsession and undying passion. She'll have you cheering for love to win the day as a man and woman discover just how deep their bond lies--and how some dreams are meant to be... While on a much-needed vacation in Ireland, world-famous photographer Calin Farrell is bewitched by the ravishingly beautiful Bryna Torrence, even if he refuses to believe in the spell that has brought them together--and could destroy them both...","A Writer's Diary. An invaluable guide to the art and mind of Virginia Woolf, drawn by her husband from the personal record she kept over a period of twenty-seven years. Included are entries that refer to her own writing, others that are clearly writing exercises; accounts of people and scenes relevant to the raw material of her work; and comments on books she was reading. Edited and with a Preface by Leonard Woolf; Indices.","Glass Soup (Vincent Ettrich #2). For connoisseurs of imaginative fiction, the novels of Jonathan Carroll are a special treat that occupy a space all their own. His surreal fictions, which deftly mix the everyday with the extraordinary, have won him a devoted following. Now, in Glass Soup, Carroll continues to astound . . . . The realm of the dead is built from the dreams--and nightmares--of the living. Octopuses drive buses. God is a polar bear. And a crowded highway literally leads to hell. Once before, Vincent Ettrich and his lover, Isabelle Neukor, crossed over from life to death and back again. Now Isabelle bears a very special child, who may someday restore the ever-changing mosaic that is reality. Unless the agents of Chaos can lure her back to the land of the dead--and trap her there forever. Glass Soupis another exquisite and singular creation from the author Januarymagazine described as ""incapable of writing a bad book much less an uninteresting one.""","This Side of Paradise (Paradise #1). Something wicked this way comes--in this case, it's highschooler Jack Barrett's father, who forcibly relocates his family to Paradise, a village owned by Eden Corporation's CEO. Delving into the secrets of the community, Jack soon learns how high the price for perfection can be.","With Open Hands. Now updated, 'With Open Hands' offers gentle encouragement to readers seeking God & insight to the components of prayer: silence, acceptance, hope, compassion, & prophetic criticism.","The Invisibles Vol. 5: Counting to None. Collects Volume 2, Issues #5-13","Judy Moody Gets Famous! (Judy Moody #2). Everyone knows that Judy Moody has a mood for every occasion, and this time she's in a jealous mood. Jealous of classmate Jessica Finch, that is, who gets her picture on the front page of the newspaper, just for winning a spelling bee. But when Judy Moody sets off in pursuit of her own fame and happiness, watch out! She is so determined, she just might find it - or will she merely become more infamous than ever?","Brothers in Arms (Dragonlance: Raistlin Chronicles #2). In the months after the events of The Soulforge, Raistlin and Caramon join a mercenary army. The army's first assignment is to capture a city that holds a secret known only to Lord Ariakas, commander of the newly formed dragonarmies.",A Couple of April Fools (The Hamlet Chronicles #6).,"The John McPhee Reader (John McPhee Reader #1). The John McPhee Reader, first published in 1976, is comprised of selections from the author's first twelve books. In 1965, John McPhee published his first book, A Sense of Where You Are; a decade later, he had published eleven others. His fertility, his precision and grace as a stylist, his wit and uncanny brilliance in choosing subject matter, his crack storytelling skills have made him into one of our best writers: a journalist whom L.E. Sissman ranked with Liebling and Mencken, who Geoffrey Wolff said ""is bringing his work to levels that have no measurable limit,"" who has been called ""a master craftsman"" so many times that it is pointless to number them.","Purpose Driven Life - For Commuters: What on Earth Am I Here For?. The #1 New York Times Bestseller, with over 3 million copies sold. The Purpose-Driven Life is a blueprint for a lifestyle based on God's eternal purposes, not cultural values. Well-grounded in Scripture, it offers fresh insights on worship, fellowship, discipleship, ministry, and evangelism.","The Tombs of Atuan (Earthsea Cycle #2). Librarian's Note: For an alternate cover edition of the same ISBN, click . When young Tenar is chosen as high priestess to the ancient and nameless Powers of the Earth, everything is taken away - home, family, possessions, even her name. For she is now Arha, the Eaten One, guardian of the ominous Tombs of Atuan. While she is learning her way through the dark labyrinth, a young wizard, Ged, comes to steal the Tombs' greatest hidden treasure, the Ring of Erreth-Akbe. But Ged also brings with him the light of magic, and together, he and Tenar escape from the darkness that has become her domain.","The Sicilian. After Mario Puzo wrote his internationally acclaimed The Godfather, he has often been imitated but never equaled. Puzo's classic novel, The Sicilian, stands as a cornerstone of his work--a lushly romantic, unforgettable tale of bloodshed, justice, and treachery. . . . The year is 1950. Michael Corleone is nearing the end of his exile in Sicily. The Godfather has commanded Michael to bring a young Sicilian bandit named Salvatore Guiliano back with him to America. But Guiliano is a man entwined in a bloody web of violence and vendettas. In Sicily, Guiliano is a modern day Robin Hood who has defied corruption--and defied the Cosa Nostra. Now, in the land of mist-shrouded mountains and ancient ruins, Michael Corleone's fate is entwined with the dangerous legend of Salvatore Guiliano: warrior, lover, and the ultimate Siciliano.",Night Draws Near: Iraq's People in the Shadow of America's War.,ツバサ-RESERVoir CHRoNiCLE- 4.,"Das Hotel New Hampshire. ""The first of my father's illusions was that bears could survive the life lived by human beings, and the second was that human beings could survive a life led in hotels."" So says John Berry, son of a hapless dreamer, brother to a cadre of eccentric siblings, and chronicler of the lives lived, the loves experienced, the deaths met, and the myriad strange and wonderful times encountered by the family Berry. Hoteliers, pet-bear owners, friends of Freud (the animal trainer and vaudevillian, that is), and playthings of mad fate, they ""dream on"" in a funny, sad, outrageous, and moving novel.","A Time to Embrace (Timeless Love #2). ""Their whole life was a series of miracles. Can they really hope for one more? And as tragedy pulls their lives apart, can they somehow find that all-important time to embrace?"" After twenty-one years, John and Abby Reynolds are back together and feeling like newlyweds. Together they are convinced they can handle the issues of their past, the questions from their children, and even the high-school politics that drain the joy from John's coaching career. But then disaster strikes...the type of tragedy John and Abby never expected. The squeal of brakes and the crunch of metal changes everything. Suddenly devastation tears at the heart of their family, and the depth of their existence. In the process, their children falter in their faith and guilt colors everything about the future. Fumbling for forgiveness and hoping for a miracle, John and Abby must remember what is important and cling to that above all else. Together, they're determined to move on with their lives. but is ""together"" en","Fermat's Enigma: The Epic Quest to Solve the World's Greatest Mathematical Problem. xn + yn = zn, where n represents 3, 4, 5, ...no solution ""I have discovered a truly marvelous demonstration of this proposition which this margin is too narrow to contain."" With these words, the seventeenth-century French mathematician Pierre de Fermat threw down the gauntlet to future generations. What came to be known as Fermat's Last Theorem looked simple; proving it, however, became the Holy Grail of mathematics, baffling its finest minds for more than 350 years. In Fermat's Enigma--based on the author's award-winning documentary film, which aired on PBS's ""Nova""--Simon Singh tells the astonishingly entertaining story of the pursuit of that grail, and the lives that were devoted to, sacrificed for, and saved by it. Here is a mesmerizing tale of heartbreak and mastery that will forever change your feelings about mathematics.","The Age of Access: The New Culture of Hypercapitalism Where All of Life Is a Paid-For Experience. Visionary activist and author Jeremy Rifkinexposes the real stakes of the new economy, delivering ""the clearest summation yet of how the Internet is really changing our lives"" (The Seattle Times).Imagine waking up one day to find that virtually every activity you engage in outside your immediate family has become a ""paid-for"" experience. It's all part of a fundamental change taking place in the nature of business, contends Jeremy Rifkin. After several hundred years as the dominant organizing paradigm of civilization, the traditional market system is beginning to deconstruct. On the horizon looms the Age of Access, an era radically different from any we have known.",Cormac McCarthy's All the Pretty Horses.,The Blood of the Moon: Understanding the Historic Struggle Between Islam and Western Civilization.,"The Last Days of Pompeii. Classic Victorian tale of the last days of Pompeii, doomed city that lay at the feet of Mount Vesuvius. From poets to flower-girls, gladiators to Roman tribunes, here is a plausible story of their lives, their loves, and the tragic fate that awaited them.",Od Magic.,"Rules of Prey (Lucas Davenport #1). The ""maddog"" murderer who is terrorizing the Twin Cities is two things: insane and extremely intelligent. He kills for the pleasure of it and thoroughly enjoys placing elaborate obstacles to keep police befuddled. Each clever move he makes is another point of pride. But when the brilliant Lieutenant Lucas Davenport--a dedicated cop and a serial killer's worst nightmare--is brought in to take up the investigation, the maddog suddenly has an adversary worthy of his genius.","The Twelfth Card (Lincoln Rhyme #6). Unlocking a cold case with explosive implications for the future of civil rights, forensics expert Lincoln Rhyme and his protege, Amelia Sachs, must outguess a killer who has targeted a high school girl from Harlem who is digging into the past of one of her ancestors, a former slave. What buried secrets from 140 years ago could have an assassin out for innocent blood? And what chilling message is hidden in his calling card, the hanged man of the tarot deck? Rhyme must anticipate the next strike or become history -- in the bestseller that proves ""there is no thriller writer today like Jeffery Deaver"" (San Jose Mercury News).",Running with the Demon (Word & Void #1).,"Game of Shadows: Barry Bonds BALCO and the Steroids Scandal that Rocked Professional Sports. In the summer of 1998 two of baseball leading sluggers, Mark McGwire and Sammy Sosa, embarked on a race to break Babe Ruth's single season home run record. The nation was transfixed as Sosa went on to hit 66 home runs, and McGwire 70. Three years later, San Francisco Giants All-Star Barry Bonds surpassed McGwire by 3 home runs in the midst of what was perhaps the greatest offensive display in baseball history. Over the next three seasons, as Bonds regularly launched mammoth shots into the San Francisco Bay, baseball players across the country were hitting home runs at unprecedented rates. For years there had been rumors that perhaps some of these players owed their success to steroids. But crowd pleasing homers were big business, and sportswriters, fans, and officials alike simply turned a blind eye. Then, in December of 2004, after more than a year of investigation, San Francisco Chroniclereporters Mark Fainaru-Wada and Lance Williams broke the story that in a federal investigation of","Anastasia on Her Own (Anastasia Krupnik #5). Help! Anastasia Krupnik's mother must organize her chaotic life. So Anastasia, who is a very organized person, and her father invent the solution to Mrs. Krupnik's problem: the Krupnik Family Nonsexist Housekeeping Schedule. But when Mrs. Krupnik goes to California on a ten-day business trip, Anastasia finds that the problem isn't solved at all. It's hard to stick to a schedule that doesn't leave room for her little brother, Sam, who's come down with the chicken pox, and her father's former girlfriend, who's invited herself to dinner. How is Anastasia supposed to cope with these interruptions when she's planning her first dream-date dinner for Steve Harvey? It's a cinch. As long as she sticks to the Krupnik Romantic Dinner Week Schedule, what could possibly go wrong?",A Circle of Quiet (Crosswicks Journals #1). This journal shares fruitful reflections on life and career prompted by the author's visit to her personal place of retreat near her country home.,The Goon Show Volume 4: My Knees Have Fallen Off!.,"The Communist Manifesto. A rousing call to arms whose influence is still felt today, Karl Marx and Friedrich Engels' The Communist Manifestois edited with an introduction by Gareth Stedman-Jones in Penguin Classics. Marx and Engels's revolutionary summons to the working classes, The Communist Manifestois one of the most important political theories ever formulated. After four years of collaboration, they produced an incisive account of their idea of Communism, in which they envisage a society without classes, private property or a state, arguing that the exploitation of industrial workers will eventually lead to a revolution in which Capitalism is overthrown. This vision provided the theoretical basis of political systems in Russia, China, Cuba and Eastern Europe, affecting the lives of millions. The Communist Manifestostill remains a landmark text: a work that continues to influence and provoke debate on capitalism and class. Gareth Stedman Jones's extensive and scholarly introduction provides an unique asses","Four to Score (Stephanie Plum #4). Stephanie Plum, Trenton, New Jersey's favorite pistol-packing, condom-carrying bounty hunter, is back - and on the trail of a revenge-seeking waitress who's skipped bail. With the help of 73-year-old Grandma Mazur, ex-hooker Lula, a transvestite musician named Sally Sweet, and the all-too-hospitable, all-too-sexy Joe Morelli, Stephanie might just catch her woman. Then again, with more mishaps than there are exits on the Jersey Turnpike - including murders, firebombs, and Stephanie's arch-rival bounty hunter chasing after the same fugitive - Stephanie better watch her back big-time if she wants to live to crack this case.","The Lunatic Cafe (Anita Blake Vampire Hunter #4). In Laurell K. Hamilton's New York Timesbestselling novels, Vampire Hunter and zombie animator Anita Blake is an expert at sniffing out the bad from the good. But she's about to learn that nothing is ever as it seems-especially in matters of the not-so-human heart... Dating a werewolf with self-esteem issues is stressing Anita out. Especially when something-or someone-starts taking out the city's shapeshifters.","Angels Flight (Harry Bosch #6; Harry Bosch Universe #7). An activist attorney is killed in a cute little L.A. trolley called Angels Flight, far from Harry Bosch's Hollywood turf. But the case is so explosive--and the dead man's enemies inside the L.A.P.D. are so numerous--that it falls to Harry to solve it. Now the streets are superheating. Harry's year-old Vegas marriage is unraveling. And the hunt for a killer is leading Harry to another high-profile L.A. murder case, one where every cop had a motive. The question is, did any have the guts?","Snow. This classic Beginner Book edited by Dr. Seuss is a delightful ode to winter. Brrrrr!It snowed! From snowball fights and skiing to fort building and snowman making, P. D. Eastman and Roy McKie'sSnow will have young readers eager for the kind of fun only a wintry-white day can bring. Perfect for enjoying with a cup of hot cocoa! Originally created by Dr. Seuss, Beginner Books encourage children to read all by themselves, with simple words and illustrations that give clues to their meaning.","L'albero. Un albero si innamora di un bambino. Un bambino si innamora di un albero. L'albero gli regala i suoi frutti. Il bambino gioca con le sue fronde. L'albero lo ripara con la sua ombra. Il bambino cresce, diventa sempre piu esigente. L'albero invece e sempre li, immutabile e disponibile. Felicita, tristezza, amore avrebbero potuto essere sentimenti vissuti allo stesso modo da un uomo e da un albero, poiche entrambi sono parte della natura. Ma gli equilibri sono stati alterati e l'amore incondizionato, la capacita di donare e di accettare l'altro in qualsiasi fase della sua vita sono rimaste prerogative di pochi: dei veri eroi del nostro tempo.","The Princess Diaries (The Princess Diaries #1). She's just a New York City girl living with her artist mom... NEWS FLASH: Dad is prince of Genovia. (So that's why a limo meets her at the airport!) DOWNER: Dad can't have any more kids. (So there's no heir to the throne.) SHOCK OF THE CENTURY: Like it or not, Mia Thermopolis is prime princess material. THE WORST PART: Mia must take princess lessons from her dreaded grandmere, the dowager princess of Genovia, who thinks Mia has a thing or two to learn before she steps up to the throne. Well, her father can lecture her until he's royal-blue in the face about her princessly duty--no way is she moving to Genovia and leaving Manhattan behind. But what's a girl to do when her name is PRINCESS AMELIA MIGNONETTE GRIMALDI THERMOPOLIS RENALDO?",Hasta que te encuentre.,"Sensual Phrase Vol. 17. As a budding poet and lyricist, Aine is on her way to an audition one fateful afternoon. Absentmindedly stepping into the street, she barely avoids getting struck by an oncoming vehicle. Not only is the cute teenager lucky to be alive, but her brush with death turns out to be a date with destiny. The driver of the car just happens to be Sakuya, the charismatic and fabulously handsome lead singer for a band called Lucifer. In short order, Sakuya and his crew compose a song using Aine?fs lyrics. The tune proves popular with the band?fs fans and Sakuya decides he wants a relationship, both professional and personal, with Aine. There?fs only one small requirement: The lyrics Aine writes must be erotically charged. And guess what? Sakuya fully intends to introduce the young and inexperienced girl into the world of sensual delights. Does Sakuya actually care for Aine, or is she just another sexual conquest for him? Will Aine fulfill her dreams and become a professional lyricist, or has she s",The Silmarillion Volume 3.,"The Best Bug Parade. Which bug is the biggest? Which bug is the longest? It's time to find out as all the bugs in Ladybug's garden line up for the best bug parade! This fun book written by Stuart J. Murphy and illustrated by Holly Keller introduces size comparison in its simplest form. This is a Level 1 MathStart book, which is perfect for kids ages 5 and up. The MathStart series uses funny stories and colorful art to show kids that they use math every day, even outside of the classroom! Each book features an activity guide to have fun with the math concepts presented in the story. Supports the Common Core Learning Standards","Generation of Swine: Tales of Shame and Degradation in the '80's. A running tally of the folly of the 80's, the decade known for men of ""huge brains, small necks, weak muscles & fat wallets...""--NY Times Book Review Thompson may be correct in assuming that the greed & immorality pervading the American social landscape are obscene, but his surreal, half-demented style has hardened into a pose. These columns from the San Francisco Examiner prove only that journalism can become dated quickly. The author of Fear & Loathing in Las Vegas calls Colonel Khadafy smarter than Ronald Reagan & takes potshots at tv news, Gary Hart, Ed Meese, evangelists, Michael Dukakis, Pat Robertson & the Iran-contra hearings. He predicts that the Democrats will self-destruct in the 1988 presidential campaign. People he dislikes are described as ""money-sucking animals,"" ""brainless freaks,"" ""geeks,"" ""greed-crazed lunatics"" & so on. Thompson's flaccid diatribes seem designed to instill a sense of smug superiority in the reader.--Publishers Weekly Thompson's outrageous reporting s",William S. Burroughs Throbbing Gristle Brion Gysin.,Harrington on Hold 'em: Expert Strategy for No-Limit Tournaments Volume I: Strategic Play.,"Complications: A Surgeon's Notes on an Imperfect Science. In gripping accounts of true cases, surgeon Atul Gawande explores the power and the limits of medicine, offering an unflinching view from the scalpel's edge. Complications lays bare a science not in its idealized form but as it actually is--uncertain, perplexing, and profoundly human. Complications is a 2002 National Book Award Finalist for Nonfiction.","Underworld (Underworld #1). Based on the screenplay by Danny McBride. DEADLY RIVALS FOR CENTURIES, DESTINY WILL BRING THEM TOGETHER. Vampires and werewolves. Sworn enemies for over nine hundred years, they have fought a secret war in the darkest shadows of the mortal world, pitting undead strength and cunning against feral rage and savagery. Now, in the hip Gothic streets of modern-day Budapest, the ancient conflict takes an unexpected new twist. Selene is a Death Dealer, a vampire warrior dedicated to the destruction of the hated lycans. Michael is a werewolf, an innocent American newly infected with the lupine curse. Against all reason and history, they find themselves drawn together even as the grisly inhuman war rushes toward its nightmarish climax. They have no idea of the power their unlikely union can unleash -- and of the terrifying secrets that will be revealed in the unearthly realm of... UNDERWORLD","Mother of Pearl. Capturing all the rueful irony and racial ambivalence of small-town Mississippi in the late 1950s, Melinda Haynes' celebrated novel is a wholly unforgettable exploration of family, identity, and redemption. Mother of Pearlrevolves around twenty-eight-year-old Even Grade, a black man who grew up an orphan, and Valuable Korner, the fifteen-year-old white daughter of the town whore and an unknown father. Both are passionately determined to discover the precious things neither experienced as children: human connection, enduring commitment, and, above all, unconditional love. A startlingly accomplished mixture of beauty, mystery, and tragedy, Mother of Pearlmarks the debut of an extraordinary literary talent. (Oprah's Book Club)","Picture Perfect. From the #1 New York Timesbestselling author of Leaving Time, The Storyteller, and Nineteen Minutes... To the outside world, they seem to have it all. Cassie Barrett, a renowned anthropologist, and Alex Rivers, one of Hollywood's hottest actors, met on the set of a motion picture in Africa. They shared childhood tales, toasted the future, and declared their love in a fairy-tale wedding. But when they return to California, something alters the picture of their perfect marriage. A frightening pattern is taking shape--a cycle of hurt, denial, and promises, thinly veiled by glamour. Torn between fear and something that resembles love, Cassie wrestles with questions she never dreamed she would face: How can she leave? Then again, how can she stay?","The Firefly. According to the DC cops, the fiery destruction of an upscale plastic surgery clinic and its staff is just business as usual. With the whole city on high alert because of the upcoming presidential inauguration, the Secret Service can afford to let it go. Retired agent Swamp Morgan pulls what appears to be a ""firefly"" case-until he digs deeper. Facts don't add up. A German man, the clinic's last client, has vanished. The only surviving nurse is almost killed. And a mysterious tape indicating an imminent threat against the government puts Morgan on full alert, but his handlers refuse to listen to his warnings. Morgan's in a race against time as the deadly pieces fall into place. Fighting the odds, he's got to shut down the brilliant plan to assassinate the incoming and outgoing presidents before America falls into total chaos-or die trying!",Rest Rabbit Rest (Sweet Pickles #18).,"Gravity's Rainbow. Winner of the 1973 National Book Award, Gravity's Rainbow is a postmodern epic, a work as exhaustively significant to the second half of the 20th century as Joyce's Ulysses was to the first. Its sprawling, encyclopedic narrative and penetrating analysis of the impact of technology on society make it an intellectual tour de force.",Rick Steves' Europe Through the Back Door.,Could Do Better: Why Children Underachieve and What to Do About It.,"Underground! The Disinformation Guide to Ancient Civilizations Astonishing Archaeology and Hidden History. Where did ""modern"" civilization begin? What lies beneath the waves? Do myths describe interstellar impact? How'd they lift that stone? Was the Ark of the Covenant a mechanical device? Were there survivors of an Atlantean catastrophe? Who really discovered the ""New"" World? ""Hidden history"" continues to fascinate an ever wider audience. In this massive compendium, editor Preston Peet brings together an all-star cast of contributors to question established wisdom about the history of the world and its civilizations. Peet and anthology contributors guide us through exciting archeological adventures and treasure hunts, ancient mysteries, lost or rediscovered technologies, and assorted ""Forteana,"" using serious scientific studies and reports, scholarly research, and some plain old fringe material, as what is considered ""fringe"" today is often hard science tomorrow. Contributors include: Graham Hancock (Fingerprints of the Gods, Underworld), David Hatcher Childress (Lost Cities and Civilizati","The Origin of the Bible. Many books have been written about the Bible, but few explain its origins. This volume provides a fascinating overview of how the Bible was first inspired, canonized, read as sacred literature, copied in ancient Hebrew and Greek manuscripts, and eventually translated into the languages of the world. No other one-volume work can match this wealth of information about the historical development of the Bible.",The End of Days (The Earth Chronicles #7).,"The Rose and the Beast: Fairy Tales Retold. With language that is both lyrical and distinctly her own, Francesca Lia Block turns nine fairy tales inside out. Escaping the poisoned apple, Snow frees herself from possession to find the truth of love in an unexpected place. A club girl from L.A., awakening from a long sleep to the memories of her past, finally finds release from its curse. And Beauty learns that Beasts can understand more than men. Within these singular, timeless landscapes, the brutal and the magical collide, and the heroine triumphs because of the strength she finds in a pen, a paintbrush, a lover, a friend, a mother, and finally, in herself.","Black Widow: Homecoming. The deadliest agent in the Marvel Universe has finally gotten out of the spy game, and she's not asking for much, just a life of her own. When a sudden assassination attempt provides a harsh reality check, the former Soviet agent tracks a string of international killings that will lead her back to a Russia she can barely recognize. Collecting: Black Widow1-6","Size 12 Is Not Fat (Heather Wells #1). Heather Wells Rocks! Or, at least, she did. That was before she left the pop-idol life behind after she gained a dress size or two -- and lost a boyfriend, a recording contract, and her life savings (when Mom took the money and ran off to Argentina). Now that the glamour and glory days of endless mall appearances are in the past, Heather's perfectly happy with her new size 12 shape (the average for the American woman!) and her new job as an assistant dorm director at one of New York's top colleges. That is, until the dead body of a female student from Heather's residence hall is discovered at the bottom of an elevator shaft. The cops and the college president are ready to chalk the death off as an accident, the result of reckless youthful mischief. But Heather knowsteenage girls . . . and girls do notelevator surf. Yet no one wants to listen -- not the police, her colleagues, or the P.I. who owns the brownstone where she lives -- even when more students start turning up dead in equally",The Solace Of Leaving Early. A heart rending story of the lives of a few inhabitants of a small American town and the massive effect of one very violent death.,"A Whole New Light. Sandra Brown's classic love stories have long captivated readers with ""larger than life heroines [that] make you believe all the warm, wonderful, wild things in life.""* Now, for the first time in hardcover, comes her exquisite novel of two people whose newfound attraction compels them to see other in . . . A WHOLE NEW LIGHT Cyn McCall knew she could always count on her late husband's friend and business partner, Worth Lansing. He could make her laugh and forget her problems. She could tease him about his many romantic entanglements. The last thing Cyn expected was to find herself longing for a man who could never settle down. When Worth invites Cyn to a getaway weekend in Acapulco, he doesn't expect to be sharing a room--or to respond to her the way he does to any beautiful woman. While he thinks it's time Cyn stopped mourning and moved forward with her life, he can't escape the feeling he's betraying his friend's memory. But even guilt can't stop the desire that overwhelms him--and ul","The Alienist (Dr. Laszlo Kreizler #1). NEW YORK TIMES BESTSELLER * SOON TO BE A TNT ORIGINAL SERIES When The Alienistwas first published in 1994, it was a major phenomenon, spending six months on the New York Timesbestseller list, receiving critical acclaim, and selling millions of copies. This modern classic continues to be a touchstone of historical suspense fiction for readers everywhere. The year is 1896. The city is New York. Newspaper reporter John Schuyler Moore is summoned by his friend Dr. Laszlo Kreizler--a psychologist, or ""alienist""--to view the horribly mutilated body of an adolescent boy abandoned on the unfinished Williamsburg Bridge. From there the two embark on a revolutionary effort in criminology: creating a psychological profile of the perpetrator based on the details of his crimes. Their dangerous quest takes them into the tortured past and twisted mind of a murderer who will kill again before their hunt is over. Fast-paced and riveting, infused with historical detail, The Alienistconjures up Gilded Age",Shadow Puppets (Shadow Series #3).,"The Best American Essays 2006. ""The essays in this volume are powerful, plainspoken meditations on birthing, dying, and all the business in between,"" writes Lauren Slater in her introduction to the 2006 edition. ""They reflect the best of what we, as a singular species, have to offer, which is reflection in a context of kindness. The essays tell hard-won tales wrestled sometimes from great pain."" The twenty powerful essays in this volume are culled from periodicals ranging from The Sun to The New Yorker, from Crab Orchard Review to Vanity Fair. In ""Missing Bellow,"" Scott Turow reflects on the death of an author he never met, but one who ""overpowered me in a way no other writer had."" Adam Gopnik confronts a different kind of death, that of his five-year-old daughter's pet fish -- a demise that churns up nothing less than ""the problem of consciousness and the plotline of Hitchock's Vertigo."" A pet is center stage as well in Susan Orlean's witty and compassionate saga of a successful hunt for a stolen border collie. Poe","The Book of Five Rings. Setting down his thoughts on swordplay, on winning, and on spirituality, legendary swordsman Miyamoto Musashi intended this modest work as a guide for his immediate disciples and future generations of samurai. He had little idea he was penning a masterpiece that would be eagerly devoured by people in all walks of life centuries after his death. Along with The Art of Warby Sun Tzu, The Book of Five Ringshas long been regarded as an invaluable treatise on the strategy of winning. Musashi's timeless advice on defeating an adversary, throwing an opponent off-guard, creating confusion, and other techniques for overpowering an assailant was addressed to the readers of earlier times on the battlefield, and now serves the modern reader in the battle of life. In this new rendering by the translator of Hagakureand The Unfettered Mind, William Scott Wilson adheres rigorously to the seventeenth-century Japanese text and clarifies points of ambiguity in earlier translations. In addition, he offers","Wherever You Go There You Are: Mindfulness Meditation in Everyday Life. In this book, the author maps out a simple path for cultivating mindfulness in one's own life. It speaks both to those coming to meditation for the first time and to longtime practitioners, anyone who cares deeply about reclaiming the richness of his or her moments.","Expelled from Eden: A William T. Vollmann Reader. William T. Vollmann is one of our greatest living writers. Masterworks such as You Bright and Risen Angels, The Royal Family, and Rising Up and Rising Down--his latest work, a stunning 3,300-page tour-de-force--have launched him into the literary stratosphere. He stands today as one of America's leading contenders for a future Nobel Prize in literature. Here is his long-awaited ""best-of"" collection, intended both as an introduction for the curious reader, and as a necessary addition to the existing fan's collection. With excerpts from all of Vollmann's novels (including several not yet published), journalistic pieces, essays, correspondence, and poetry, Expelled from Eden creates a unique, kaleidoscopic portrait of one of America's most notorious, protean, devastating, and necessary writers.","Criptonomicón II: El código Pontifex. En 1942, Lawrence Prichard Waterhouse, genio matematico y capitan de la marina estadounidense, colabora con Alan Turing y los especialistas britanicos de Bletchley Park en el trabajo de descifrar los codigos secretos de las potencias del Eje. Sesenta anos mas tarde, la empresa de su nieto y tambien brillante cripto-hacker, Randy Waterhouse, proyecta crear un nuevo paraiso de datos y el mayor exponente de la libertad informatica: La Cripta. CRIPTONOMICON se traslada ahora al complejo escenario de la guerra del Pacifico con las aventuras del marine Bobby Shaftoe y su busqueda de McArthur, sin olvidar a Lawrence, con su imagintivo y sorprendente tratamiento matematico de la cualidad y efectos de las eyaculaciones, ni a su nieto Randy, persiguiendo tesoros y enfrentado a las modernas mafias de la politica, la tecnologia y las finanzas. Es una atrevida mezcla de generos -ciencia ficcion, ucronia, thriller- la trama de Criptonomicon se complica sin perder amenidad y ganando en ironia y morda","The Awakening (Vampire Huntress #2). A battle is brewing in the underworld, and at the center of it all is Damali Richards, spoken word artist and vampire huntress. But she is not just any huntress; she is the millennium Neteru, a woman so powerful that the vampire world is about to start a war-one that threatens to spread onto her streets-in order to possess her... Fallon Nuit, a rogue vampire who is one of the most powerful Damali has ever encountered, has allied himself with the deadly Amanthra demons in order to claim her. But the Vampire Council has plans for her as well. And now an unlikely variable has entered the equation: an ex-lover turned master vampire with an agenda of his own. Damali must risk trusting him once more if they are to survive.",A Reading Guide to Island of the Blue Dolphins.,Kid Eternity.,Built To Last: Building America's Amazing Bridges Dams Tunnels and Skyscrapers (Built to Last).,The Next Whole Earth Catalog: Access to Tools.,Aerie (Dragon Jousters #4).,"Basic Economics: A Citizen's Guide to the Economy. This is the revised and enlarged edition of a new kind of introduction to economics for the general public-without graphs, statistics, or jargon. In addition to being updated, Basic Economics has also become more internationalized by including economic problems from more countries around the world, because the basic principles of economics are not confined by national borders. While most chapter titles remain the same, their contents have changed considerably, reflecting the experiences of many different peoples and cultures.","Harry Potter Boxed Set Books 1-5 (Harry Potter #1-5). Box Set containing Harry Potter and the Sorcerer's Stone, Harry Potter and the Chamber Of Secrets, Harry Potter and the Prisoner of Azkaban, Harry Potter and the Goblet Of Fire, and Harry Potter and the Order of the Phoenix!",Assembly of Women (Literary Classics).,"Lives of Girls and Women. The only novel from Alice Munro -- award-winning author of The Love of a Good Woman-- is an insightful, honest book, ""autobiographical in form but not in fact,"" that chronicles a young girl's growing up in rural Ontario in the 1940s. Del Jordan lives out at the end of the Flats Road on her father's fox farm, where her most frequent companions are an eccentric bachelor family friend and her rough younger brother. When she begins spending more time in town, she is surrounded by women -- her mother, an agnostic, opinionated woman who sells encyclopedias to local farmers; her mother's boarder, the lusty Fern Dogherty; and her best friend, Naomi, with whom she shares the frustrations and unbridled glee of adolescence. Through these unwitting mentors and in her own encounters with sex, birth, and death, Del explores the dark and bright sides of womanhood. All along she remains a wise, witty observer and recorder of truths in small-town life. The result is a powerful, moving, and humorous dem",Just Another Pretty Face (Hollywood Dynasty #2).,"City of Glass (The New York Trilogy #1). Nominated for an Edgar award for best mystery of the year, City of Glassinaugurates an intriguing New York Trilogyof novels that The Washington Post Book Worldhas classified as ""post-existentialist private eye... It's as if Kafka has gotten hooked on the gumshoe game and penned his own ever-spiraling version."" As a result of a strange phone call in the middle of the night, Quinn, a writer of detective stories, becomes enmeshed in a case more puzzling than any he might have written. Written with hallucinatory clarity, City of Glasscombines dark humor with Hitchcock-like suspense. Ghostsand The Locked Roomare the next two brilliant installments in Paul Auster's The New York Trilogy.",Nimitz Class (Admiral Arnold Morgan #1).,"From Babylon to Timbuktu: A History of the Ancient Black Races Including the Black Hebrews. This carefully researched book is a significant addition to this vital field of knowledge. It sets forth, in fascinating detail, the history, from earliest recorded times, of the black races of the Middle East and Africa.","The Lost Continent: Travels in Small Town America. 'I come from Des Moines. Somebody had to' And, as soon as Bill Bryson was old enough, he left. Des Moines couldn't hold him, but it did lure him back. After ten years in England, he returned to the land of his youth, and drove almost 14,000 miles in search of a mythical small town called Amalgam, the kind of trim and sunny place where the films of his youth were set. Instead, his search led him to Anywhere, USA; a lookalike strip of gas stations, motels and hamburger outlets populated by lookalike people with a penchant for synthetic fibres. Travelling around thirty-eight of the lower states - united only in their mind-numbingly dreary uniformity - he discovered a continent that was doubly lost; lost to itself because blighted by greed, pollution, mobile homes and television; lost to him because he had become a stranger in his own land. The Lost Continent is a classic of travel literature - hilariously, stomach-achingly funny, yet tinged with heartache - and the book that first staked","El Superzorro. Boggis, Bunce, and Bean are just about the nastiest and meanest three farmers you could meet. And they hate Mr Fox. They are determined to get him. So they lie in wait outside his hole, ready to shoot, starve or dig him out. But clever Mr Fox has other plans! Find out what those plans are in this hilarious story, perfectly complemented with illustrations by Quentin Blake.","Pilgermann. He climbs a ladder to reach another man's wife and gives himself up to her beauty, but then Pilgermann descends into a mob of peasants inspired by the Pope to shed the blood of Jews. Alone on the cobblestones, he cries out to Israel, to the Lord his God, to Abraham and Isaac and Jacob. He is answered instead by Jesus Christ.",Conversations with Bernard Malamud (Literary Conversations).,A Mulligan for Bobby Jobe: A Novel.,"The Richness of Life: The Essential Stephen Jay Gould. ""Nature is so wondrously complex and varied that almost anything possible does happen....I rejoice in [its] multifariousness and leave the chimera of certainty to politicians and preachers.""--from Ever Since Darwin Upon his death in 2002, Stephen Jay Gould stood at the pinnacle among observers of the natural world, recognized by Congress as a ""living legend."" His prodigious legacy--sixteen best-selling and prize-winning books, dozens of scientific papers, an unbroken series of three hundred essays in Natural History--combined to make Gould the most widely read science writer of our time. This indispensable collection of forty-eight pieces from his brilliant oeuvre includes selections from classics such as Ever Since Darwinand The Mismeasure of Man, plus articles and speeches never before published in book form. This volume, the last that will bear his name, spotlights his elegance, depth, and sheer pleasure in our world--a true celebration of an extraordinary mind.","And to Think That I Saw It on Mulberry Street. A plain horse and wagon on Mulberry Street grows into a story that no one can beat! In this tale, Young Marco allows his imagination to run riot as he travels home from school one day, to the extent that a horse and cart is soon transformed into a chaotic carnival of colourful creatures in his own mind.",Three Novels & Five Short Stories.,"Challengers of the Unknown: Stolen Moments Borrowed Time. Five extraordinary people with seemingly nothing in common share the bond of surviving a cataclysmic event. In a world devoid of super-heroes, they will come together and discover that all they know has been a lie--that the world we live in is not the one we believe it to be. To survive they must unite and face the true masters of our universe. It's a world where literally anything can happen, and probably will--as if living on borrowed time wasn't enough",Let's Go Australia on a Budget.,In einer regnerischen Nacht..,"William Shakespeare’s: Twelfth Night (Shakespeare Retellings #6). Bruce Coville follows his earlier critically acclaimed retellings of Shakespeare's works with a lively interpretation of one of the Bard's most beloved comedies. In this boisterous tale of hidden identities and misplaced love, Coville once again weaves his own lyrical prose together with pivotal lines from Twelfth Night. Tim Raglin has captured all the hilarity of the play in his expressively comic illustrations. Shakespeare enthusiasts and newcomers alike will delight in this faithful, merry adaptation.","The Classical World: An Epic History from Homer to Hadrian. The classical civilizations of Greece & Rome once dominated the world. They continue to fascinate & inspire us. Classical art & architecture, drama & epic, philosophy & politics--these are the foundations of Western civilization. In The Classical World, eminent classicist Robin Lane Fox chronicles this vast sweep of history from Homer to the reign of Augustus. From the Peloponnesian War thru the creation of Athenian democracy, from the turbulent empire of Alexander the Great to the creation of the Roman Empire & the emergence of Christianity, he serves as a witty & trenchant guide. He introduces extraordinary heroes & horrific villains, great thinkers & bloodthirsty tyrants.","Sailor Song. Set in the near future in the fishing village of Kuinak, Alaska, a remnant outpost of the American frontier not yet completely overcome by environmental havoc and mad-dog development, Sailor Songis a wild, rollicking novel, a dark and cosmic romp. The town and its denizens --colorful refugees from the Lower Forty-Eight and Descendants of Early Aboriginal People- are seduced and besieged by a Hollywood crew, come to film the classic children's book The Sea Lion. The ensuing turf war escalates into a struggle for the soul of the town as the novel spins and swirls toward a harrowing climax. Kesey has given us a unique and powerful novel about America, and this epic tale of the north is a vibrant moral fable for our time.",Martin and Malcolm and America: A Dream or a Nightmare?. Reexamines the ideology of the two most prominent leaders of the civil rights movement of the 1960s.,"The Big Over Easy (Nursery Crime #1). It's Easter in Reading--a bad time for eggs. Ovoid D-class nursery celebrity, Humpty Stuyvesant Van Dumpty III, is found shattered to death. Detective Inspector Jack Spratt and his assistant Mary Mary are on the case and before long find themselves grappling with a sinister plot involving cross-border money laundering, beanstalks, titans seeking asylum, and the cut and thrust world of international chiropody. It's Easter in Reading--a bad time for eggs--and no one can remember the last sunny day. Ovoid D-class nursery celebrity Humpty Stuyvesant Van Dumpty III, minor baronet, ex-convict, and former millionaire philanthropist, is found shattered to death beneath a wall in a shabby area of town. All the evidence points to his ex-wife, who has conveniently shot herself. But Detective Inspector Jack Spratt and his assistant Mary Mary remain unconvinced, a sentiment not shared with their superiors at the Reading Police Department, who are still smarting over their failure to convict the Thr","Jurassic Park. Unless your species evolved sometime after 1993 when Jurassic Parkhit theaters, you're no doubt familiar with this dinosaur-bites-man disaster tale set on an island theme park gone terribly wrong. But if Speilberg's amped-up CGI creation left you longing for more scientific background and ... well, character development, check out the original Michael Crichton novel. Although not his best book (get ahold of sci-fi classic The Andromeda Strainfor that), Jurassic Parkfills out the film version's kinetic story line with additional scenes, dialogue, and explanations while still maintaining Crichton's trademark thrills-'n'-chills pacing. As ever, the book really is better than the movie.--Paul Hughes","The Gods Themselves. Protiv gluposti i bogovi sami bore se uzalud. U ne toliko dalekoj buducnosti, otkricem principa razmene materije i energije izmedu naseg i stranog univerzuma, svi energetski i ekoloski problemi na Zemlji nestali su. Ne postavljajuci suvise pitanja u vezi s tim kako se nepoznata civilizacija povezala s nasom i omogucila besplatnu proizvodnju neogranicene kolicine energije, zemaljska nauka i politika dozvoljavaju doktoru Halamu, opsteprihvacenom ocu nove energije, da slavodobitno gusi svaku kriticku misao koja bi dovela u pitanje bilo koji aspekt novonastalog raja na Zemlji. Medutim, jedan naucnik ne samo da ima dovoljno pameti da shvati ocigledno vec ima i hrabrosti da kaze kako razmena energije dovodi i do razmene razlicitih zakonitosti koje vladaju u razlicitim univerzumima, sto za posledicu moze imati eksploziju Sunca i trenutno unistenje Zemlje. No, da bi dokazao svoje tvrdnje, on se mora povezati s dalekom cilvilizacijom koja je i inicirala razmenu - sto ce dovesti citaoca do sredi","Tropic of Orange. This fiercely satirical, semifantastical novel ... features an Asian-American television news executive, Emi, and a Latino newspaper reporter, Gabriel, who are so focused on chasing stories they almost don't notice that the world is falling apart all around them. Karen Tei Yamashita's staccato prose works well to evoke the frenetic breeziness and monumental self-absorption that are central to their lives.-Janet Kaye, The New York Times Book Review","Colonialism and Neocolonialism. First published in French in 1964, this is a classic critique of France's policies in Algeria in the 1950s and 1960s and inspired much subsequent writing on colonialism, post-colonialism, politics, and literature.","How to Win Friends and Influence People for Teen Girls. Donna Dale Carnegie, daughter of the late motivational author and teacher Dale Carnegie, brings her father's time-tested, invaluable lessons to the newest generation of young women on their way to becoming savvy, self-assured friends and leaders. How to Win Friends and Influence People for Teen Girls offers concrete advice on teen topics such as peer pressure, gossip, and popularity. Teen girls will learn the most powerful ways to influence others, defuse arguments, admit mistakes, and make self-defining choices. The Carnegie techniques promote clear and constructive communication, praise rather than criticism, emotional sensitivity, tolerance, and a positive attitude--important skills for every girl to develop at an early age. Of course, no book for teen girls would be complete without taking a look at how to maintain friendships with boys and deal with commitment issues and break-ups with boyfriends. Carnegie also provides solid advice for older teens beginning to explore their influ",Act of Treason (Mitch Rapp #9).,"On Certainty. Written over the last 18 months of his life and inspired by his interest in G. E. Moore's defence of common sense, this much discussed volume collects Wittgenstein's reflections on knowledge and certainty, on what it is to know a proposition for sure.","Coronado: Stories. From Dennis Lehane, the award-winning author of Mystic River, Shutter Island,and the Kenzie-Gennaro series, comes a surprisingly different collection of five short stories: ""Running Out of Dog"" ""ICU"" ""Gone Down to Corpus"" ""Mushrooms"" ""Until Gwen"" At turns suspenseful, surreal, romantic, and tragically comic, these tales journey headlong into the heart of our national myths about class, gender, freedom, and regeneration through violence and reveal that the truth waiting for us there is not what we'd expect.","I'm the One That I Want. Comedian. Icon. TV star. Role model. Trash talker. Fag hag. Gypsy. Tramp. Thief. Margaret Cho displays her numerous sides in this funny, fierce, and honest memoir. As one of the country's most visible Asian Americans, she has a unique perspective on identity and acceptance. As one of the country's funniest and most quoted personalities, she takes no prisoners. And as a warm and wise woman who has seen the highs and lows of life, she has words of encouragement for anyone who has ever felt like an outsider. With I'm the One That I Want, Margaret Cho has written a book every bit as hilarious, shocking, and insightful as she is.","The Captive & The Fugitive (In Search of Lost Time #5-6). The Modern Library's fifth volume of In Search of Lost Timecontains both The Captive(1923) and The Fugitive (1925). In The Captive, Proust's narrator describes living in his mother's Paris apartment with his lover, Albertine, and subsequently falling out of love with her. In The Fugitive, the narrator loses Albertine forever. Rich with irony, The Captive and The Fugitive inspire meditations on desire, sexual love, music, and the art of introspection. For this authoritative English-language edition, D. J. Enright has revised the late Terence Kilmartin's acclaimed reworking of C. K. Scott Moncrieff's translation to take into account the new definitive French editions of A la recherche du temps perdu(the final volume of these new editions was published by the Bibliotheque de la Pleiade in 1989).","American Gods (American Gods #1). Days before his release from prison, Shadow's wife, Laura, dies in a mysterious car crash. Numbly, he makes his way back home. On the plane, he encounters the enigmatic Mr Wednesday, who claims to be a refugee from a distant war, a former god and the king of America. Together they embark on a profoundly strange journey across the heart of the USA, whilst all around them a storm of preternatural and epic proportions threatens to break. Scary, gripping and deeply unsettling, American Godstakes a long, hard look into the soul of America. You'll be surprised by what - and who - it finds there... This is the author's preferred text, never before published in the UK, and is about 12,000 words longer than the previous UK edition.","The Brothers Karamazov. Poslednii, samyi ob'emnyi i odin iz naibolee izvestnykh romanov F. M. Dostoevskogo obrashchaet chitatelia k vnevremennym nravstvenno-filosofskim voprosam o grekhe, vozdaianii, sostradanii i miloserdii. Kniga, kotoruiu sam pisatel' opredelil kak ""roman o bogokhul'stve i oproverzhenii ego"", iavilas' popytkoi ""reshit' vopros o cheloveke"", ""razgadat' tainu"" cheloveka, chto, po Dostoevskomu, oznachalo ""reshit' vopros o Boge"". Skvoz' prizmu istorii provintsial'noi sem'i Karamazovykh avtor povestvuet ob izvechnoi bor'be Bozhestvennogo i d'iavol'skogo v chelovecheskoi dushe. Odin iz samykh glubokikh v mirovoi literature opytov otrazheniia khristianskogo soznaniia, ""Brat'ia Karamazovy"" stali v KhKh veke ob'ektom paradoksal'nykh filosofskikh i psikhoanaliticheskikh interpretatsii.","Absolute Truths (Starbridge #6). It is 1965, and Charles Ashworth has attained the plum position of bishop of Starbridge, an honor that keeps him in a heady whirl of activity that would exhaust the most seasoned corporate executive. With the invaluable support of his minions and his attractive, unsinkable wife, Ashworth stands against the amorality and decadence of the age--""Anti-Sex Ashworth."" He slays his opponents by being a tough, efficient, confident churchman, the torments of his past long since dead and buried. And then the unexpected, the unthinkable, strikes. Suddenly Ashworth finds himself staring into the chasm of all the lies hes been telling himself for years: about his marriage, his children, even his views on the Church. And as he suspects his old nemesis and dean, Neville Aysgarth, of drinking too much, of financial chicanery, of--God forbid--having an affair, Ashworth discovers to his horror that he is tempted to commit the very acts that he has so publicly denounced....","Mars and Venus Book of Days: 365 Inspriations to Enrich Your Relationships. Nobody knows more about the differences between the sexes than John Gray, Ph.D. He is the man America turns to for help in deciphering the myriad complexities men and women face daily in their interactions with each other. The author of nine bestsellers--including the history-making Men Are from Mars, Women Are from Venus--John Gray expands on the expert advice touched upon in his previous books and distills each message into a powerful, inspiring daily meditation in this newest volume. There's no doubt about it: The relationship between men and women is extremely complex. We often forget just how different the sexes are, and become frustrated and confused by a loved one's behavior. Every day we need to be reminded of these differences and realize that it's okay to be different as long as we recognize and understand the behavior of the opposite sex. In Men Are from Mars, Women Are from Venus Book of Days,John Gray provides us with daily inspirations that lovingly and insightfully remin","The Serpent's Shadow (Elemental Masters #1). Mercedes Lackey returns to form in The Serpent's Shadow, the fourth in her sequence of reimagined fairy tales. This story takes place in the London of 1909, and is based on ""Snow White and the Seven Dwarfs."" Lackey creates echoes of Sir Arthur Conan Doyle, pays affectionate homage to Dorothy Sayers's Lord Peter Wimsey (who plays an important role under a thin disguise), and turns the dwarves into seven animal avatars who masquerade as pets of her Eurasian heroine, Maya.Some of Maya's challenges come from the fact that she is not""snow white,"" and she has fled India for her father's English homeland after the suspicious deaths of her parents. Establishing her household in London, she returns to her profession as a physician, working among the poor. Her ""pets"" and loyal servants stand guard, and Maya herself uses what bits of magic she managed to pick up in childhood to weave otherworldly defenses as well. But the implacable enemy who killed her parents has come to London to search for he",Gulliver's Travels.,"Philosophical Investigations. Philosophische Untersuchungen is, with the Tractatus Logico-Philosophicus, one of two major works by 20th-century philosopher Ludwig Wittgenstein. In it, he discusses numerous problems & puzzles in fields of semantics, logic, philosophy of mathematics & the philosophy of mind. He asserts that conceptual confusions surrounding language use are at the root of most philosophical problems, contradicting & discarding much the argument of the Tractatus Logico-Philosophicus. The book is often considered one of the most important works of the 20th century, continuing to influence contemporary philosophers studying mind & language. The book wasn't ready for publication when Wittgenstein died in 1951. G.E.M. Anscombe translated the ms & it was published in 1953. It's now in a 3rd edition incorporating Anscombe's final revisions & is repaginated. There are two popular editions of Philosophical Investigations: Prentice Hall, 1999 (ISBN 0024288101) Blackwell Publishers, 2001 (ISBN 0631231277)--bili",A Random Walk Down Wall Street.,Through Painted Deserts: Light God and Beauty on the Open Road.,"Scales of the Serpent (Diablo: The Sin War #2). Since the beginning of time, the angelic forces of the High Heavens and the demonic hordes of the Burning Hells have been locked in the Eternal Conflict for the fate of all Creation. That struggle has now spilled over into Sanctuary -- the world of men. Determined to win mankind over to their respective causes, the forces of good and evil wage a secret war for mortal souls. This is the tale of the Sin War -- the conflict that would forever change the destiny of man. Bent on destroying the evil cult of the Triune, Uldyssian does not yet suspect that Inarius -- secret Prophet of the Cathedral of Light -- has been subtly aiding his quest. Obsessed with restoring Sanctuary to its former glory, Inarius has been playing Uldyssian against the two great religions in a reckless attempt to topple them both. But another player has slipped back into the equation. The demon Lilith, once Inarius's lover, seeks to use Uldyssian as her own pawn in a scheme to turn humans into an army of naphalem -- go","Good Poems. Every day people tune in to The Writer's Almanacon public radio and hear Garrison Keillor read them a poem. And here, for the first time, is an anthology of poems from the show, chosen by Keillor for their wit, their frankness, their passion, their ""utter clarity in the face of everything else a person has to deal with at 7 a.m."" Good Poemsincludes verse about lovers, children, failure, everyday life, death, and transcendance. It features the work of classic poets, such as Emily Dickinson, Walt Whitman, and Robert Frost, as well as the work of contemporary greats such as Howard Nemerov, Charles Bukowski, Donald Hall, Billy Collins, Robert Bly, and Sharon Olds. It's a book of poems for anybody who loves poetry whether they know it or not.","The Flash: Dead Heat. Wally West is the Flash -- the fastest man alive. At least, that's what he thought until he met the mysterious Savitar, who commands an army of speedsters dedicated to the destruction of those who would oppose their master. To combat this menace, the Flash must enlist the help of DC Comics heroes Johnny and Jesse Quick, the Golden Age Flash, XS, Max Mercury and Impulse",Phantoms in the Brain: Probing the Mysteries of the Human Mind.,"The Butterfly Tattoo. The agony and ecstasy of a teenage love affair inspires this tense, romantic thriller. Sixth-former Chris falls in love with Jenny the moment he sets eyes on her as he works at an Oxford ball. But as their relationship blossoms, tragedy and violence wait in the wings. For Chris's boss has a shady past that won't stay hidden. And his ruthless enemies will use two innocent teenagers to exact their revenge on him...",Doctor Tandy's First Guide to Life Extension and Transhumanity.,"Life After God. This collection of stories cuts through the hype of modern living, travelling inward to the elusive terrain of dreams and nightmares.","Maggie: A Girl of the Streets and Other Tales of New York. ""A powerful, severe, and harshly comic portrayal of Irish immigrant life in lower New York exactly a century ago.""--Alfred Kazin. Although fellow novelists William Dean Howells and Hamlin Garland immediately recognized genius in the twenty-one-year-old author of Maggie: A Girl of the Streets, in 1893 most readers were unwilling to accept its unconventional theme and were uneasy with a style that was at once darkly naturalistic and vividly impressionistic. Today Maggieis esteemed as an American classic, the first of an impressive group of works in which Crane explored the underside of urban life, portraying the rise of the metropolis as it alters not just the human environment but human nature itself. This volume includes ""George's Mother"" and eleven other tales and sketches of New York written between 1892 and 1896. Together in their dignified realism these tales confirm Crane's place as the first modern American writer.","Murder on the Yellow Brick Road (Toby Peters #2). Someone had murdered a Munchkin. The little man was lying on his back in the middle of the yellow brick road with his startled eyes looking into the overhead lights of an M.G.M. sound stage. He might have looked kind of cute in a tinsel-town way if it hadn't been for the knife sticking out of his chest. The year is 1940, and Los Angeles-based private eye Toby Peters has been called before the real-life Wizard of Oz himselfLouis B. Mayer, legendary studio head of Metro-Goldwyn Mayer. His job: to track down a murderer stalking the back lots of one of Hollywood's most powerful movie companies. Peters sets to work, plumbing the depths of a world of dreamers, child stars, and half-sized philosophers, helped by none other than Clark Gable, Raymond Chandler, and Judy Garland. It's a treacherous trail of clues that Peters must follow; one as winding as the Yellow Brick Road, and deadlier than a field of poppies. But does Toby Peters possess enough brains, heart, and courage to solve this bizar","Kids Are Worth It!: Giving Your Child the Gift of Inner Discipline. The parenting classic, now revised with new chapters, checklists, and information about today's most pressing issues regarding our children This bestselling guide rejects ""quick-fix"" solutions and focuses on helping kids develop their own self-discipline by owning up to their mistakes, thinking through solutions, and correcting their misdeeds while leaving their dignity intact. Barbara Coloroso shows these principles in action through dozens of examples -- from sibling rivalry to teenage rebellion; from common misbehaviors to substance abuse and antisocial behavior. She also explains how to parent strong-willed children, effective alternatives to time-outs, bribes, and threats, and how to help kids resolve disputes and serious injustices such as bullying. Filled with practical suggestions for handling the ordinary and extraordinary tribulations of growing up, kids are worth it!helps you help your children grow into responsible, resilient, resourceful adults -- not because you tell them","Betrayal (Chasing Yesterday #2). Some things are too painful to remember--and too deadly to forget. Found: One girl, age 13. Unconscious. Unharmed. Unclaimed. Unidentified. Lost: Everything. J.D. and Daniel are on the run, searching for answers about her past...and about the dangerous powers she can't seem to control. She knows she can't trust the memories implanted in her mind by the mysterious Dr. Styron, but they still feel real--and they won't stop haunting her. J.D. must race to uncover the truth and unlock the dark secrets in her brain...before it's too late.","Thin Air (Spenser #22). Her name is Lisa St. Claire. Her husband's a cop. Her whereabouts are unknown. Spenser thought he could help a friend find his missing wife. Until he learned the nasty truth about Lisa St. Claire. For starters, it's not her real name...",Blade of Fortriu (The Bridei Chronicles #2).,"The Chase (Deed #3). It wasn't her first choice, for Seonaid Dunbar had, like her brother, been trained as a Scottish warrior at her father's knee; but fleeing to an abbey was clearly preferable to whacking on Blake Sherwell with her sword -- which she'd happily do before wedding the man. No, she'd not walk weakly to the slaughter, dutifully pledge troth to anyone the English court called ""Angel."" Fair hair and eyes as blue as the heavens hardly proved a man's worth. There was no such thing as an English angel; only English devils. And there were many ways to elude a devilish suitor, even one that King Henry ordered her to wed. No, the next Countess of Sherwell was not sitting at home in her castle as Blake thought: embroidering, peacefully waiting for him to arrive. She was fleeing to a new stronghold and readying her defenses. Swords and sleeping drafts, Claymores and kisses. This battle would require all weapons--if he ever caught her. And the Chase was about to begin.",Masters of Small Worlds: Yeoman Households Gender Relations and the Political Culture of the Antebellum South Carolina Low Country.,The Portable John Adams.,犬夜叉 28.,"Complete Novels: The Robber Bridegroom Delta Wedding The Ponder Heart Losing Battles The Optimist's Daughter. This two-volume collection reveals the singular imaginative power of one of America's most admired Southern writers. ""Complete Novels"" gathers all of Welty's longer fiction, from ""The Robber Bridegroom"" (1942) to her Pulitzer Prize-winning ""The Optimist's Daughter"" (1972).","Blood on the Moon (Lloyd Hopkins #1). Detective Sergeant Lloyd Hopkins can't stand music, or any loud sounds. He's got a beautiful wife, but he can't get enough of other women. And instead of bedtime stories, he regales his daughters with bloody crime stories. He's a thinking man's cop with a dark past and an obsessive drive to hunt down monsters who prey on the innocent. Now, there's something haunting him. He sees a connection in a series of increasingly gruesome murders of women committed over a period of twenty years. To solve the case, Hopkins will dump all the rules and risk his career to make the final link and get the killer.",On the Lines of Morris' Romances: Two Books That Inspired J. R. R. Tolkien-The Wood Beyond the World and the Well at the World's End.,Night Beat: A Shadow History of Rock & Roll.,Ilse Witch (Voyage of the Jerle Shannara #1).,"McSweeney's #14. Joshuah Bearman leads a daring investigation into the enigmatic Great Gerbil of central Asia, uncovering signs of an impending disaster. The issue also includes strange and wonderful stories from T.C. Boyle, Susan Straight, Jim Shepard, Wells Tower, and others.","The Used World. It was mid-December in Jonah, Indiana, a place where Fate can be decided by the weather, and a storm was gathering overhead. So Haven Kimmel, bestselling author of A Girl Named Zippy, prepares us to enter The Used World-- a world where big hearts are frequently broken and sometimes repaired; where the newfangled and the old-fashioned battle it out in daily encounters both large and small; where wondrous things unfold just beneath the surface of everyday life; and where the weather is certainly biblical and might just be prophetic. Hazel Hunnicutt's Used World Emporium is a sprawling antique store that is ""the station at the end of the line for objects that sometimes appeared tricked into visiting there."" Hazel, the proprietor, is in her sixties, and it's a toss-up as to whether she's more attached to her mother or her cats. She's also increasingly attached to her two employees: Claudia Modjeski -- freakishly tall, forty-odd years old -- who might finally be undone by the extreme loneli","Notes from a Small Island. ""Suddenly, in the space of a moment, I realized what it was that I loved about Britain-which is to say, all of it."" After nearly two decades spent on British soil, Bill Bryson - bestselling author of The Mother Tongueand Made in America-decided to return to the United States. (""I had recently read,"" Bryson writes, ""that 3.7 million Americans believed that they had been abducted by aliens at one time or another, so it was clear that my people needed me."") But before departing, he set out on a grand farewell tour of the green and kindly island that had so long been his home. Veering from the ludicrous to the endearing and back again, Notes from a Small Islandis a delightfully irreverent jaunt around the unparalleled floating nation that has produced zebra crossings, Shakespeare, Twiggie Winkie's Farm, and places with names like Farleigh Wallop and Titsey. The result is an uproarious social commentary that conveys the true glory of Britain, from the satiric pen of an unapologetic Anglophi","This Lullaby. There is an alternate cover edition for this ISBN13 . When it comes to relationships, Remy doesn't mess around. After all, she's learned all there is to know from her mother, who's currently working on husband number five. But there's something about Dexter that seems to defy all of Remy's rules. He certainly doesn't seem like Mr. Right. For some reason, however, Remy just can't seem to shake him. Could it be that Remy's starting to understand what those love songs are all about?","The Moon And Sixpence. Charles Strickland, a conventional stockbroker, abandons his wife and children for Paris and Tahiti, to live his life as a painter. Whilst his betrayal of family, duty and honour gives him the freedom to achieve greatness, his decision leads to an obsession which carries severe implications. Inspired by the life of Paul Gauguin, The Moon and Sixpenceis at once a satiric caricature of Edwardian conventions and a vivid portrayal of the mentality of a genius.",The Zen Gardening Kit/Book and Japanese Rock Garden.,Ancient Rome and Pompeii (Magic Tree House Research Guide #14).,"Hawaii. Pulitzer Prize-winning author James A. Michener brings Hawaii's epic history vividly to life in a classic saga that has captivated readers since its initial publication in 1959. As the volcanic Hawaiian Islands sprout from the ocean floor, the land remains untouched for centuries--until, little more than a thousand years ago, Polynesian seafarers make the perilous journey across the Pacific, flourishing in this tropical paradise according to their ancient traditions. Then, in the early nineteenth century, American missionaries arrive, bringing with them a new creed and a new way of life. Based on exhaustive research and told in Michener's immersive prose, Hawaii is the story of disparate peoples struggling to keep their identity, live in harmony, and, ultimately, join together.","Candide: or Optimism. With its vibrant new translation, perceptive introduction, and witty packaging, this new edition of Voltaire's masterpiece belongs in the hands of every reader pondering our assumptions about human behavior and our place in the world. Candide tells of the hilarious adventures of the naive Candide, who doggedly believes that ""all is for the best"" even when faced with injustice, suffering, and despair. Controversial and entertaining, Candide is a book that is vitally relevant today in our world pervaded by--as Candide would say--""the mania for insisting that all is well when all is by no means well.""","The Angel Experiment (Maximum Ride #1). Six unforgettable kids -- with no families, no homes -- are running for their lives. Max Ride and her best friends have the ability to fly. And that's just the beginning of their amazing powers. But they don't know where they come from, who's hunting them, why they are different from all other humans... and if they're meant to save mankind -- or destroy it.","Murder on the Orient Express (Hercule Poirot #10). Just after midnight, the famous Orient Express is stopped in its tracks by a snowdrift. By morning, the millionaire Samuel Edward Ratchett lies dead in his compartment, stabbed a dozen times, his door locked from the inside. Without a shred of doubt, one of his fellow passengers is the murderer. Isolated by the storm, detective Hercule Poirot must find the killer among a dozen of the dead man's enemies, before the murderer decides to strike again.","The War. One of France's greatest novelists offers a remarkable diary of the Nazi occupation of Paris during World War II and of its eventual liberation by the Allies. Celebrating the 50th anniversary of the liberation, this extraordinary diary by the author of The Lover is ""a haunting portrait of a time and place"" (New York Times). Written in 1944 and first published in 1985, Duras's riveting account of life in Paris during the Nazi occupation and the first months of liberation depicts the harrowing realities of World War II-era France ""with a rich conviction enhanced by [a] spare, almost arid, technique"" (Julian Barnes, The Washington Post Book World). Duras, by then married and part of a French resistance network headed by Francois Mitterand, tells of nursing her starving husband back to health after his return from Bergen-Belsen, interrogating a suspected collaborator, and playing a game of cat and mouse with a Gestapo officer who was attracted to her. The result is ""more than one woman's d","Hit Parade (John Keller #3). The New York Timesbestselling author and master of the modern mystery returns with a fierce and poignant new novel featuring his acclaimed killer-for-hire, Keller John Keller is everyone's favorite hit man: a new kind of hero for a new, uncertain age. He's cool. Reliable. A real pro: the hit man's hit man. The inconvenient wife, the aging sports star, the business partner, the retiree with a substantial legacy. He's taken care of them all, quietly and efficiently. Keller's got a code of honor, though he'd never call it that. And he keeps the job strictly business. ""What happens is you wind up thinking of each subject not as a person to be killed but as a problem to be solved. Now there are guys doing this who cope with it by making it personal. They find a reason to hate the guy they have to kill. I don't know what's a sin and what isn't, or if one person deserves to go on living and another deserves to have his life ended. Sometimes I think about stuff like that, but as far as working","Paris: After the Liberation 1944-1949. ""A rich and intriguing story whcih the authors disentangle with great skill.""--Sunday Telegraph Beevor's Ardennes 1944: The Battle of the Bulgeis now available from Viking Books In this brilliant synthesis of social, political, and cultural history, Antony Beevor and Artemis Cooper present a vivid and compelling portrayal of the City of Lights after its liberation. Paris became the diplomatic battleground in the opening stages of the Cold War. Against this volatile political backdrop, every aspect of life is portrayed: scores were settled in a rough and uneven justice, black marketers grew rich on the misery of the population, and a growing number of intellectual luminaries and artists including Hemingway, Beckett, Camus, Sartre, de Beauvoir, Cocteau, and Picassocontributed new ideas and a renewed vitality to this extraordinary moment in time.","War of the Rats. For six months in 1942, Stalingrad is the center of a titanic struggle between the Russian and German armies--the bloodiest campaign in mankind's long history of warfare. The outcome is pivotal. If Hitler's forces are not stopped, Russia will fall. And with it, the world.... German soldiers call the battle Rattenkrieg,War of the Rats. The combat is horrific, as soldiers die in the smoking cellars and trenches of a ruined city. Through this twisted carnage stalk two men--one Russian, one German--each the top sniper in his respective army. These two marksmen are equally matched in both skill and tenacity. Each man has his own mission: to find his counterpart--and kill him. But an American woman trapped in Russia complicates this extraordinary duel. Joining the Russian sniper's cadre, she soon becomes one of his most talented assassins--and perhaps his greatest weakness. Based on a true story, this is the harrowing tale of two adversaries enmeshed in their own private war--and whose fortu","Sometimes a Great Notion. The magnificent second novel from the legendary author of One Flew Over the Cuckoo's Nest Following the astonishing success of his first novel, One Flew Over the Cuckoo's Nest, Ken Kesey wrote what Charles Bowden calls ""one of the few essential books written by an American in the last half century."" This wild-spirited tale tells of a bitter strike that rages through a small lumber town along the Oregon coast. Bucking that strike out of sheer cussedness are the Stampers. Out of the Stamper family's rivalries and betrayals Ken Kesey has crafted a novel with the mythic impact of Greek tragedy. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Readers trust the series to provide authoritative texts enhanced by introductions and notes by distinguished scholars and contemporar",It's Called a Breakup Because It's Broken: The Smart Girl's Break-Up Buddy.,"Ghost in the Shell. This all-new edition contains previously censored pages never before seen outside Japan and is presented in traditional Japanese style, reading right to left.","You: On a Diet: The Owner's Manual for Waist Management. For the first time in our history, scientists are uncovering astounding medical evidence about dieting -- and why so many of us struggle with our weight and the size of our waists. Now researchers are unraveling biological secrets about such things as why you crave chocolate or gorge at buffets or store so much fat.Michael Roizen and Mehmet Oz, America's most trusted doctor team and authors of the bestselling ""YOU"" series, are now translating this cutting-edge information to help you shave inches off your waist. They're going to do it by giving you the best weapon against fat: knowledge. By understanding how your body's fat-storing and fat-burning systems work, you're going to learn how to crack the code on true and lifelong waist management. Roizen and Oz will invigorate you with equal parts information, motivation, and change-your-life action to show you how your brain, stomach, hormones, muscles, heart, genetics, and stress levels all interact biologically to determine if your body","Oprah Winfrey. Chronicles the life of the entertainer and businesswoman from her difficult childhood through the success of her television talk show and book club. Lerner Publications and the A&E Television Networks have teamed up to create Biography for young readers. With highly accessible text and engaging photographs, this engrossing collection offers in-depth profiles of some of the world's most interesting figures.","Time of the Twins (Dragonlance: Legends #1). The first title in the second Dragonlance novel trilogy is now being released for the first time ever in a trade hardcover edition. Featuring the stunning art and design that graced the cover of the paperback edition, this new version is a follow-up to the release of the Dragonlance novels Chronicles trilogy in hardcover in 2003. It also continues the planned release of all of the core Weis & Hickman titles in trade hardcover, allowing fans and collectors alike the chance to obtain the entire set in hardcover.","The Woman In White. Wilkie Collins' novel took the fashionable world by storm on its appearance in 1860 when everything from dances to dresses was named after the 'woman in white'. Its continuing power to fascinate stems in part from a distinctive blend of melodrama, comedy and realism; and in part from the power of its story. Yet The Woman in White is more than just a classic thriller, and contemporary critics have found in it a feminist parable for our times.","Metamorphoses. Metamorphoses (from Greek meta meta and morphe morphe, meaning ""changes of shape""), is a Latin narrative poem in fifteen books describing the history of the world from its creation to the deification of Julius Caesar within a loose mythico-historical framework. Completed in AD 8, it is recognized as a masterpiece of Golden Age Latin literature. This cohesive collection of stories from Greek and Roman mythology recounts tales of recorded transformations. Comprised of over fifty stories, it chronicles the legends of King Midas, Daedalus, Icarus, Hercules, and the Trojan War.","Blame! #1. Peut-etre sur Terre... Peut-etre dans le futur... Killy est un cyborg taciturne qui erre dans une gigantesque cite labyrinthique, s'etendant sur des milliers de niveaux. Arme d'un revolver amplificateur de radiations et accompagne de Shibo, un scientifique, il part en quete du ""net-gene"", un programme qui aurait echappe a la contamination globale d'un virus informatique, et qui serait capable de gerer le monde. Blame se deroule dans un univers high-tech et organique, ou la chair fusionne avec le metal, a la croisee de Gunnm et d'Akira. La narration, tres visuelle, mise essentiellement sur l'action et la creation d'une ambiance moite et crepusculaire. Le contraste entre le decor minutieux et soigne et le cote ""ebauche"" des personnages, renforce l'atmosphere etrange et particuliere qui emane de cette oeuvre. Un ""donjons et dragons"" moderne en plein univers cyber.","The Prydain Companion: A Reference Guide to Lloyd Alexander's Prydain Chronicles. An informative resource for formal studies of thePrydain Chronicles,as well as an excellent opportunity to delve into the fantastic workings of Prydain ""The Prydain Companionis more than a quick reference or handy glossary, though it is all of that as well. Instructive, certainly. But, like any good companion, a pleasure to be with over a long period of time."" --Lloyd Alexander, from the Foreword This intriguing volume is at once a wonderful reference resource and a vehicle for exploration and discovery in itself. Complete with a biographical sketch of Lloyd Alexander, a personal Foreword by Mr. Alexander himself, a ""How to Use the Companion"" section from the author, pronunciation keys, and excerpts throughout, and ""most substantially"" an alphabetical guide to the peoples, places, and objects of the Prydain Chronicles, The Prydain Companion is a one-stop reference book for a beloved world of fantasy and magic. So for those who love the works of Lloyd Alexander ""young readers, teachers,","The Empty Envelope (A to Z Mysteries #5). E is for Envelope...Dink keeps getting envelopes in the mail addressed to ""D. Duncan."" But the letters inside all start with ""Dear Doris"" and don't make any sense! Josh and Ruth Rose think someone's playing a trick on Dink. But Dink is sure there's more to it than that, especially after Doris herself shows up and demands her letters! From the Trade Paperback edition.",Turtle Diary. The turtles in London Zoo become the mutual obsession of two lonely strangers who dream of setting free the turtles and themselves. Detail by detail their diaries record a world in which thought leads to action and action brings William G. and Neaera H. to their own open sea.,Development Geography and Economic Theory.,"A Midsummer Night's Dream (SparkNotes Literature Guide). ""Get your ""A"" in gear! They're today's most popular study guides-with everything you need to succeed in school. Written by Harvard students for students, since its inception ""SparkNotes(TM) has developed a loyal community of dedicated users and become a major education brand. Consumer demand has been so strong that the guides have expanded to over 150 titles. ""SparkNotes'(TM) motto is ""Smarter, Better, Faster because: - They feature the most current ideas and themes, written by experts. - They're easier to understand, because the same people who use them have also written them. - The clear writing style and edited content enables students to read through the material quickly, saving valuable time. And with everything covered--context; plot overview; character lists; themes, motifs, and symbols; summary and analysis, key facts; study questions and essay topics; and reviews and resources--you don't have to go anywhere else!","No Dominion (Joe Pitt #2). Joe Pitt's life sucks. He hasn't had a case or a job in God knows how long and his stashes are running on empty. What stashes? The only ones that count to a guy like Joe: blood and money. The money he uses to buy blood; the blood he drinks. Hey, buddy, it's that or your neck-you want to choose? The only way to lay his hands on both is to take a gig with the local Vampyre Clan. See, something new is on the streets, a new high, a high so strong it can send a Vampyre spazzing through Joe's local watering hole. Till Joe sends him through a plate-glass window, that is. So it's time for Joe to gut up and swallow that pride and follow the leads wherever they go. It won't be long before he's slapping stoolies, getting sapped, and being taken for a ride above 110th Street. Someone's pulling Joe's strings, and now he's riding the A train, looking to find who it is. He's gonna cut them when he finds them-the strings and the hands that hold them.","The Riverside Milton. The first one-volume anthology of John Milton's complete poetry and selected prose to be published in over 30 years, The Riverside Milton reflects the highest quality and most current scholarship. As editor of The Milton Quarterly for 30 years, Roy Flannagan is uniquely qualified to survey Milton's work. Pedagogy includes a comprehensive index designed to help students from undergraduate to graduate levels conceive paper topics; factual introductions; extensive annotations with references; margin definitions; and a chronology.","The Band Played Dixie: Race and the Liberal Conscience at Ole Miss. Mississippi, with its rich and dramatic history, holds a special place in the civil rights movement. Perhaps no other institution in that state, or in the South as a whole, has been more of a battleground for race relations or a barometer for progress than the University of Mississippi. Even the school's affectionate nickname - Ole Miss - bespeaks its place in the legacy of the South: now used as short for Old Mississippi, ""Ole Miss"" was once a term of respect used by slaves for the wife of a plantation owner. Throughout the first part of this century, the state's ""Boll Weevil"" legislators presented the most implacable hostility to black enrollment. The campus itself - with its stately white columns and field of Confederate flags at sporting events - seemed almost frozen in time. With the civil rights movement and the arrival of the first black student in 1962, the quietly determined James Meredith, violence and hatred erupted with regularity on the verdant campus. Even following years","Casino Royale (James Bond #1). 'Surround yourself with human beings, my dear James. They are easier to fight for than principles' In Casino Royale, the first of Fleming's 007 adventures, a game of cards is James Bond's only chance to bring down the desperate SMERSH agent Le Chiffre. But Bond soon discovers that there is far more at stake than money.","Winter Season: A Dancer's Journal. An irresistible inside look at one of the world's great dance companies, Winter Season is also a sensitive, intimate, and almost painfully honest account of the emotional and intellectual development of a young woman dedicated to one of the most demanding of all the arts. Bentley's association with the New York City Ballet began when she was accepted by the affiliated School of American Ballet at the age of eleven. Seven years later, she became a member of the company. In the fall of 1980, as the winter season opened, she found herself facing an emotional crisis: her dancing was not going well. At 22 she felt that her life had lost direction. To try to make something of her experience, on paper if not on stage, she began to keep a journal, describing her day-to-day activities and looking back on her past. The result is perhaps the closest that most of us will ever come to knowing what it feels like to be a dancer, on stage and off. It also offers memorable glimpses of some notable memb","A Portrait of the Artist as a Young Man. Si el Ulises de James Joyce (1882-1941) se considera no solo como su obra maestra, sino tambien como una de las cumbres de la literatura contemporanea, el Retrato del artista adolescente tambien suele ser considerada como una obra merecedora por si misma para situar a su autor entre los grandes escritores del siglo XX. Si en algo difiere de las otras autobiografias es una mayor ingenuidad. Se distingue de ellas en el enfasis que pone en las aventuras emotivas e intelectuales del protagonista.","Destiny's Daughters. In this powerful collection, three acclaimed writers put their talents together to tell the unforgettable story of three sisters separated as infants--and how their paths finally cross in adulthood. Leticia, Jamilla, and Clarissa Holmes each know that they're one in a set of triplets--but that's about all they know. Now they're adults, thirty-three-year old women who are as different as can be. But they have one thing in common: they have never given up on the idea of one day finding each other. . . In ""More Than This,"" by Donna Hill, we meet Leticia, whose time in group homes sharpened her street smarts and taught her to use her good looks to her advantage. Now she's on top of the world, ensconced in a lush apartment in the heart of New Orleans. Leticia knows what men want--she runs the most elite call girl operation in the Parrish. But when she learns that the new sheriff in town is planning a raid, she decides to close up shop, have some adventures, and find her family. She soon dis","Boys of Summer. Baseball. The crack of the bat, the roar of the crowd...and the view of mouthwatering men in tight uniforms! A sport in which the men are men...and the women like them that way. Join three of Harlequin Blaze's bestselling authors in celebrating the men who indulge in this All-American pastime -- and the women who help them indulge in other things... Fever Pitch by Julie Elizabeth Leto Callie Andrews, a woman who's dying to have one last chance at bat...with her ex-husband! The Sweet Spot by Kimberly Raye Babe Bannister discovers that striking out with a sexy shortstop isn't so bad -- especially when it leads to hitting a home run with a delicious coach.... Sliding Home by Leslie Kelly Meet plain Janie Nolan. She's been sitting on the bench so long, she doesn't even realize she's still in the game. That is, until a sexy pitcher tempts her to come up to the plate and take a swing...",犬夜叉 7.,Stephen Biesty's Incredible Explosions.,"The River Runs Black: The Environmental Challenge to China's Future. China's spectacular economic growth over the past two decades has dramatically depleted the country s natural resources and produced skyrocketing rates of pollution. Environmental degradation in China has also contributed to significant public health problems, mass migration, economic loss, and social unrest. In The River Runs Black, Elizabeth C. Economy examines China s growing environmental crisis and its implications for the country s future development. Drawing on historical research, case studies, and interviews with officials, scholars, and activists in China, Economy traces the economic and political roots of China s environmental challenge and the evolution of the leadership's response. She argues that China s current approach to environmental protection mirrors the one embraced for economic development: devolving authority to local officials, opening the door to private actors, and inviting participation from the international community, while retaining only weak central contr",Mumbo Jumbo.,"Seawolf Class (Silent Service #3). In the ocean depths, America's warriors ceaselessly patrol the dark territory on freedom's outer edge. These are the battles fought in silence...and in secret. The newest fight begins when the People's Republic of China buys a fleet of highly stealthy and deadly attack subs from a cash-hungry Russia and takes advantage of international unrest to lay claim to territories they have long considered their own. US Commander Tom Garrett is asked to serve as Executive Officer on board the USS Seawolf to monitor the PRC's activities as they use all the firepower necessary to close the Straits of Taiwan in preparation for invading their ""renegade province."" As the Chinese fleet moves in for attack, it's left to Commander Garrett to sink the Chinese boats, break the PRC siege of Taiwan, and avenge those who were lost in the struggle.","Prodigal Blues. From award-winning author Gary A. Braunbeck comes Prodigal Blues, his first foray into non-supernatural horror. After he finds himself stranded at a truck stop in Missouri, Mark Sieber gets one of the biggest shocks of his life when he recognizes the face of a little girl on a Missing poster as belonging to the same little girl he saw only a few minutes before. Looking around for some sign of her, he comes back to his table in the restaurant to find the little girl sitting there, waiting for him. ""I'm sorry, mister,"" is all she seems capable of saying. As the police and media begin to converge on the truck stop, Mark retreats back to his hotel room to call his wife and let her know what's going on, only to be taken hostage by the same people who released the little girl. But his abductors are little more than children themselves. Ranging in ages from 12 to 19, Mark's abductors are in the process of escaping from a sadistic pedophile known to them only as ""Grendel"" a man whose practices","English Passengers. In 1857 when Captain Illiam Quillian Kewley and his band of rum smugglers from the Isle of Man have most of their contraband confiscated by British Customs, they are forced to put their ship up for charter. The only takers are two eccentric Englishmen who want to embark for the other side of the globe. The Reverend Geoffrey Wilson believes the Garden of Eden was on the island of Tasmania. His traveling partner, Dr. Thomas Potter, unbeknownst to Wilson, is developing a sinister thesis about the races of men. Meanwhile, an aboriginal in Tasmania named Peevay recounts his people's struggles against the invading British, a story that begins in 1824, moves into the present with approach of the English passengers in 1857, and extends into the future in 1870. These characters and many others come together in a storm of voices that vividly bring a past age to life.","McSweeney's #24. McSweeney'sbegan as a literary journal which published only works rejected from other magazines. But after the first issue, the journal began to publish pieces written with McSweeney'sin mind, attracting works from some of the finest writers in the country and many new talents. The journal is committed to finding new voices, publishing work of gifted but underappreciated writers, and pushing the literary form forward at all times. Contents: Trouble: How to make millions in the oil market - Christopher R. Howard Stockholm, 1973 - Joe Meno Bored to death - Jonathan Ames Look at me - Aaron Gwyn Death of Nick Carter - Philippe Soupault (trans. Robin Walz) Come back, Donald Barthelme: Introduction - Justin Taylor Come back Donald Barthelme: A symposium - curated & edited by Justin Taylor The bed - Donald Barthelme Pages - Donald Barthelme (writing as David Reiner)","1968: War and Democracy. Sen. Eugene J. McCarthy's own account of the year 1968, a year in which he challenged and unseated a sitting US President & made a fundamental contribution to the ending of a disastrous & undeclared, war conducted by a president who was assuming near-dictatorial powers in the pursuit of that illegal war.","The Divine Comedy I: Hell. Guided by the poet Virgil, Dante plunges to the very depths of Hell and embarks on his arduous journey towards God. Together they descend through the twenty-four circles of the underworld and encounter the tormented souls of the damned - from heretics and pagans to gluttons, criminals and seducers - who tell of their sad fates and predict events still to come in Dante's life. In this first part of his Divine Comedy, Dante fused satire and humour with intellect and soaring passion to create an immortal Christian allegory of mankind's search for self-knowledge and spiritual enlightenment.","Stationary Bike. New on audio from Stephen King...an unabridged novella""as artful as anything he has ever written."" (Booklist)Climb aboard Stationary Bike -- a streamlined fever dream of a tale, in which an ordinary household object assumes otherworldly powers and a familiar journey takes a terrifying twist. When commercial artist Richard Sifkitz finally gets around to having that physical he'd been putting off for years, and his cholesterol comes back dangerously high, he does what so many thirty-something, junk food-eating couch potatoes have done before him: he buys a stationary bike, and vows to ride it regularly. Unlike many a mid-life exercise convert, however, Richard actually starts to ride his new stationary bike. A lot. Soon he's spending so much time on his bike that he decides to put his artistic talents to use and paint a mural on the wall opposite his stationary bike. But it turns out that Richard's mural is no ordinary picture -- and soon his stationary bike is taking him places he doe","Foundation (Foundation #1). For twelve thousand years the Galactic Empire has ruled supreme. Now it is dying. But only Hari Seldon, creator of the revolutionary science of psychohistory, can see into the future -- to a dark age of ignorance, barbarism, and warfare that will last thirty thousand years. To preserve knowledge and save mankind, Seldon gathers the best minds in the Empire -- both scientists and scholars -- and brings them to a bleak planet at the edge of the Galaxy to serve as a beacon of hope for a future generations. He calls his sanctuary the Foundation. But soon the fledgling Foundation finds itself at the mercy of corrupt warlords rising in the wake of the receding Empire. Mankind's last best hope is faced with an agonizing choice: submit to the barbarians and be overrun -- or fight them and be destroyed.","The Confusion (The Baroque Cycle #2). In the year 1689, a cabal of Barbary galley slaves -- including one Jack Shaftoe, aka King of the Vagabonds, aka Half-Cocked Jack -- devises a daring plan to win freedom and fortune. A great adventure ensues -- a perilous race for an enormous prize of silver ... nay, gold ... nay, legendary gold. In Europe, the exquisite and resourceful Eliza, Countess de la Zeur, is stripped of her immense personal fortune by France's most dashing privateer. Penniless and at risk from those who desire either her or her head (or both), she is caught up in a web of international intrigue, even as she desperately seeks the return of her most precious possession. Meanwhile, Newton and Leibniz continue to propound their grand theories as their infamous rivalry intensifies, stubborn alchemy does battle with the natural sciences, dastardly plots are set in motion ... and Daniel Waterhouse seeks passage to the Massachusetts colony in hopes of escaping the madness into which his world has descended. This P.S.","Mosquito Bite. ""READY-OR-NOT-HERE-I-COME."" The boy listens. The girl is getting closer. Suddenly, there's another sound. A droning buzz. Something else is looking for the boy. The seeker is a mosquito, Culex pipiens, and her search is a matter of life and death. She must find food--blood--to nourish the hundreds of tiny eggs inside her body. Black-and-white photographs show the children's game of hide-and-seek, while astonishing micrographs show Culex and her world as seen through an electron microscope. Zoom in for a close-up view: A blade of grass looks like a menacing field of spines. A mosquito's eye becomes a bundle of tightly packed tubes. Discover the life story of a mosquito from a truly larger-than-life point of view.","Summer for the Gods: The Scopes Trial and America's Continuing Debate Over Science and Religion. The 1925 Scopes Trial marked a watershed in our national relationship between science and religion and has had tremendous impact on our culture ever since, even inspiring the play and movie, both titled ""Inherit the Wind."" In addition to symbolizing the evolutionist versus creationist debate, the trial helped shape the development of both popular religion and religious freedom in America. Yet despite its influence on the 20th century, there are no modern histories of the trial and its aftermath. This book fills that void not only by skillfully narrating the trial's events, but also by framing it in a broader social context, showing how its influence has cut across religious, cultural, educational and political lines. With new material from both the prosecution and the defense, along with the author's astute historical and legal analysis, ""Summer for the Gods"" is destined to become a new classic about a pivotal milestone in American history.","Flight of the Nighthawks (The Darkwar Saga #1). Sorcerer Pug wakes from a nightmare that portends destruction for all of Midkemia, and his son Magnus learns the reason: a beacon draws an army of alien invaders, and nemesis Sidi, now Leso Varen. In Stardock town, two boys come of age and go deep into the Empire of Great Kesh. A dark plot implicates the highest-ranking nobles, and the Nighthawks clan of Assassins.","2nd Chance (Women's Murder Club #2). 2nd Chancereconvenes the Women's Murder Club, four friends (a detective, a reporter, an assistant district attorney, and a medical examiner) who used their networking skills, feminine intuition, and professional wiles to solve a baffling series of murders in 1st to Die. This time, the murders of two African Americans, a little girl and an old woman, bear all the signs of a serial killer for Lindsay Boxer, newly promoted to lieutenant of San Francisco's homicide squad. But there's an odd detail she finds even more disturbing: both victims were related to city cops. A symbol glimpsed at both murder scenes leads to a racist hate group, but the taunting killer strikes again and again, leaving deliberate clues and eluding the police ever more cleverly. In the meantime, each of the women has a personal stake at risk--and the killer knows who they are.","Bleach―ブリーチ― 1 [Burīchi 1] (Bleach #1). Hei Qi Yi Hu 15Sui yuureinoJian eruNan . sonoTe Yi naTi Zhi nowariniAn Wen toshitaRi ""woSong tsuteitaYi Hu daga, Tu Ru , Zi rawoSi Shen toMing Cheng ruShao Nu toZao Yu , [Xu ] toHu bareruE Ling niXi wareru. Ci ""toDao reruJia Zu woQian niYi Hu ha!?",Richard Matheson's Hell House Book 1.,Into the Void (Spelljammer: The Cloakmaster Cycle #2).,"The Blind Side: Evolution of a Game. The young man at the center of this extraordinary and moving story will one day be among the most highly paid athletes in the National Football League. When we first meet him, he is one of thirteen children by a mother addicted to crack; he does not know his real name, his father, his birthday, or any of the things a child might learn in school such as, say, how to read or write. Nor has he ever touched a football. What changes? He takes up football, and school, after a rich, Evangelical, Republican family plucks him from the mean streets. Their love is the first great force that alters the world's perception of the boy, whom they adopt. The second force is the evolution of professional football itself into a game where the quarterback must be protected at any cost. Our protagonist turns out to be the priceless combination of size, speed, and agility necessary to guard the quarterback's greatest vulnerability: his blind side.","A Green Desire. Two brothers, as different as night and day: one, charming and ruthless, buys his way into Harvard, Wall Street, and high society; the other brother remains by his mother's side and makes his way to the top without the influence of money or prestige. Raised in separate worlds, these brothers are bound by a bitter rivalry for riches and power, but mostly, for the exciting, wildly captivating woman they fight all their lives to possess, a woman whose passion for one destroys her love for the other. Their story consumes an American century, spanning decades of splendor, struggle, upheaval, and war. It's an absorbing saga of innocent dreams and green desire corrupted by gilded temptation.","The Quiet Little Woman: A Christmas Story. Introducing a newly discovered original Christmas story from Louisa May Alcott -- the beloved author who has entertained generations of readers with Little Women, Little Men,and other enchanting tales. The Quiet Little Womanis about a lonely orphan girl named Patty, whose only desire is for a family to love her. Her tender story will warm the hearts of readers young and old alike. Two bonus stories -- Tilly's Christmasand Rosa's Tale-- are included in this exquisite edition. The message of hope and love makes this book an ideal Christmas gift, sure to become a family tradition and treasured keepsake.",The Art of Nonfiction: A Guide for Writers and Readers.,"My War Gone By I Miss It So. Nothing can prepare you for Anthony Loyd's portrait of war. It is the story of the unspeakable terror and the visceral, ecstatic thrill of combat, and the lives and dreams laid to waste by the bloodiest conflict that Europe has witnessed since the Second World War. Born into a distinguished military family, Loyd was raised on the stories of his ancestors' exploits and grew up fascinated with war. Unsatisfied by a brief career in the British Army, he set out for the killing fields in Bosnia. It was there--in the midst of the roar of battle and the life-and-death struggle among the Serbs, Croatians, and Bosnian Muslims--that he would discover humanity at its worst and best. Profoundly shocking, poetic, and ultimately redemptive, this is an uncompromising look at the brutality of war and its terrifyingly seductive power.","The Voyage of the Jerle Shannara Trilogy (Voyage of the Jerle Shannara #1-3). When the body of a half-drowned elf is found floating in the seas of the Blue Divide, an old mystery resurfaces. Thirty years ago, an expedition in search of a legendary, ancient magic set out. But none who went ever returned. Until now. For the rescued elf carries a map covered with mysterious symbols only one man can decipher. That man is Walker Boh, the last of the Druids. But one other person understands the map's significance - the Ilse Witch, a beautiful but twisted young woman, who wields a magic as potent as Walker's own. She will stop at nothing to possess the map - and the magic it leads to. To stop her, Walker must find the magic first. And thus begins the voyage of the sleek, swift airship Jerle Shannara. The company chosen by Walker must fly into the face of unknown terrors while the Ilse Witch and her dark allies follow, waiting to strike...",叫んでやるぜ! (2) (ASUKA COMICS CL-DX).,"Deception Point. Rachel Sexton works for the National Reconnaissance Office as an intelligence officer. She is also the daughter of a Senator currently running for President. Her father's main offensive, and a very popular one, against the incumbent President is to attack the huge amount of NASA funding. Rachel is barely on speaking terms with her father, believing him to be totally corrupt, but is still worried she is being used by the President when he asks her to verify an amazing find by NASA, a find which will settle the arguments about NASA funding for ever. Reluctantly agreeing to view the find Rachel is whisked off to the North Pole. What she finds once she gets there takes her breath away. However, she quickly learns that nothing is what it seems, and, with two civilian scientists, is soon fleeing for her life. Stranded on an ice berg they are rescued in the nick of time by a nuclear submarine, but once back in the US their attempts to expose the plot show them that they can trust absolutely n","The No. 1 Ladies' Detective Agency (No. 1 Ladies' Detective Agency #1). Precious Ramotswe has only just set up shop as Botswana's No.1 (and only) lady detective when she is hired to track down a missing husband, uncover a con man, and follow a wayward daughter. However, the case that tugs at her heart, and lands her in danger, is a missing eleven-year-old boy, who may have been snatched by witchdoctors. First published in the UK in 1998, and in the USA in 2001 by Polygon. Republished in 2002 and 2003 by Anchor. This first novel in Alexander McCall Smith's widely acclaimed The No. 1 Ladies Detective Agency series tells the story of the delightfully cunning and enormously engaging Precious Ramotswe, who is drawn to her profession to ""help people with problems in their lives."" Immediately upon setting up shop in a small storefront in Gaborone, she is hired to track down a missing husband, uncover a con man, and follow a wayward daughter. But the case that tugs at her heart, and lands her in danger, is a missing eleven-year-old boy, who may have been snatched",When Food Is Love: Exploring the Relationship Between Eating and Intimacy.,"Wartime Lies. As the world slips into the throes of war in 1939, young Maciek's once closeted existence outside Warsaw is no more. When Warsaw falls, Maciek escapes with his aunt Tania. Together they endure the war, running, hiding, changing their names, forging documents to secure their temporary lives -- as the insistent drum of the Nazi march moves ever closer to them and to their secret wartime lies.","Self-Help. The publication of ""Self-Help"" introduced readers to Lorrie Moore's refined blend of humor and insight, and made her one of the best-loved writers of her generation. These stories, told in a voice that is at once witty, melancholy, and bravely honest, paint a tableau of lovers and family, of loss and pleasure, desire and memory. From the young secretary who by day hopes someone will notice her Phi Beta Kappa key and by night makes love to a married man she met at a Florsheim shoe store, to the shattering of a marriage by the shores of a tranquil lake, ""Self-Help"" is a unique, enduring work of short fiction.",The Church on the Other Side: Doing Ministry in the Postmodern Matrix.,"The Oil Jar and Other Stories. While best known for his plays, Pirandello also distinguished himself as a writer of short stories. This collection includes the celebrated title tales plus ""Little Hut,"" ""Mrs. Frola and Mr. Ponza, Her Son-in-Law,"" ""Citrons from Sicily,"" ""With Other Eyes,"" ""A Voice,"" and five others by the winner of the 1934 Nobel Prize for literature. Little hut -- Citrons from Sicily -- With other eyes -- A voice -- The fly -- The oil jar -- It's not to be taken seriously -- Think it over, Giacomino! -- A character's tragedy -- A prancing horse -- Mrs. Frola and Mr. Ponza, her son-in-law","Star Wars: Empire Volume 1: Betrayal. In the weeks before the events in Star Wars: A New Hope, as the Death Star is readied for its fateful first mission, a power-hungry cabal of Grand Mofs and Imperial Officers embark on a dangerous plan to kill Emperor Palpatine and Darth Vader and seize control of the Empire! When word that a ""Jedi"" has made an appearance on a backwater world lures Vader away from his master, the cabal makes its move. But even the galaxy isn't enough of a prize to sate the ambitions of some of the conspirators, and before long the would-be assassins are turning on one another. Their plans are further complicated by the actions of bounty hunter Boba Fett. And, of course, they may have fatally underestimated the cunning of their primary target: Emperor Palpatine! Available worldwide from Dark Horse Comics (available in the UK from Titan)","The Italians: A Full-Length Portrait Featuring Their Manners and Morals. In this consummate portrait of the Italian people, bestselling author, publisher, journalist, and politician Luigi Barzini delves deeply into the Italian national character, discovering both its great qualities and its imperfections. Barzini is startlingly frank as he examines ""the two Italies"": the one that created and nurtured such luminaries as Dante Alighieri, St. Thomas of Aquino, and Leonardo da Vinci; the other, feeble and prone to catastrophe, backward in political action if not in thought, ""invaded, ravaged, sacked, and humiliated in every century."" Deeply ambivalent, Barzini approaches his task with a combination of love, hate, disillusion, and affectionate paternalism, resulting in a completely original, thoughtful, and probing picture of his countrymen.",Quito 1599: City and Colony in Transition.,"James Dean: The Mutant King: A Biography. This is the book that restarted the James Dean cult by celebrating him as the cool, defiant visionary of pop culture who made adolescence seem heroic instead of awkward and who defined the style of rock 'n' roll's politics of delinquency. The only book to fully show how deliberately and carefully Dean crafted his own image and performances, and the product of still unequalled research, vivid writing, intimate photographs, and profound meditation, James Dean: The Mutant Kinghas become almost as legendary as its subject.","Lolita. Awe and exhiliration--along with heartbreak and mordant wit--abound in Lolita, Nabokov's most famous and controversial novel, which tells the story of the aging Humbert Humbert's obsessive, devouring, and doomed passion for the nymphet Dolores Haze. Lolita is also the story of a hypercivilized European colliding with the cheerful barbarism of postwar America. Most of all, it is a meditation on love--love as outrage and hallucination, madness and transformation.","Don Quixote. Edith Grossman's definitive English translation of the Spanish masterpiece. Widely regarded as the world's first modern novel, and one of the funniest and most tragic books ever written, Don Quixotechronicles the famous picaresque adventures of the noble knight-errant Don Quixote of La Mancha and his faithful squire, Sancho Panza, as they travel through sixteenth-century Spain. Unless you read Spanish, you've never read Don Quixote.","Manhunting. A timeless tale from the first name in romantic comedy - Jennifer Crusie! OBJECTIVE: Find Man Must be Rich, Handsome, and Successful Kate Svenson is attractive, successful, a brilliant businesswoman - and miserable. After three failed engagements, she realises it's time for a PLAN...and organised, detailed agenda with a clear goal: finding Mr. Right. The Cabins resort is ripe with eligible bachelors, all rich, distinguished and ambitious - just her type. And they're dropping like flies around her...at least, that's how Jake Templeton views the situation. After he's stuck pulling her latest reject out of the swimming pool, Jake's convinced this femme fatale is trouble. Especially for him. But can a man who's sworn off ambition for good and a woman hanging from the top of the corporate ladder find common ground in the unpredictable territory called the heart, where the word proposaltakes on a very different meaning...?","Dazzling Brightness (Greek Myths #1). Emerging from the world of ancient Greece, Hades, Lord of the Underworld, and the mystical Persephone defy the gods of Olympus to defend an eternal love that they share between the sun and the shadows. Original. From the mists of timeless legend... an enchanting, unforgettable tale of passion, intrigue and adventure that brings two mythical lovers magnificently to life... HE was Lord of the Underworld, cast down by the gods into a kingdom of everlasting darkness. SHE was born with mystical powers in a place of eternal light. And somewhere between the shadows and the sun was a world of treachery, danger, and unending desire... Against the savage splendor of Ancient Greece... from the exalted mountaintops of Olympus to a glittering midnight realm... they would defy the gods themselves to make their heaven right here on earth with a love that would blaze forever in... DAZZLING BRIGHTNESS",Cliffs Notes on Wiesel's Night.,"The London Blitz Murders (Disaster Series #5). London, 1942. The German Blitz has devastated the city, but its citizens have something worse to fear: a modern-day Jack the Ripper. Investigating the case is renowned pathologist Sir Bernard Spilsbury with assistance from England's First Lady of Crime, Agatha Christie.",Un rôle qui me convient.,"Invitation to a Beheading. The state has been recently taken over and is being run by the tyrannical and philistine 'Average Man' party. Under the slogans of equality and happiness for all, it has done away with individualism and freedom of thought. Only John Krug, a brilliant philosopher, stands up to the regime. His antagonist, the leader of the new party, is his old school enemy, Paduk - known as the 'Toad'. Grieving over his wife's recent death, Krug is at first dismissive of Paduk's activities and sees no threat in them. But the sinister machine which Paduk has set in motion may prove stronger than the individual, stronger even than the grotesque 'Toad' himself.","The Frequencies. Poetry. ""Noah Eli Gordon can spin, scratch, sample, and dub to mix a sound all his own. THE FREQUENCIES tunes in desire, poetry, static, and laughter - all the while broadcasting with the intensity and joy of first things""--Peter Gizzi. ""This is the new music - listen to it""--Lisa Jarnot.","Tripwire (Jack Reacher #3). 1 MP3-CD / 14 hours On the publication of Lee Child's debut novel, the multiple award-winning Killing Floor, critics nationwide marked its success. His last book, Die Trying, inspired the Chicago Tribune to call him ""a suspense writer to be reckoned with."" In Tripwire, Reacher is settling into lazy Key West when his life is interrupted by a stranger who comes looking for him. When the stranger turns up beaten to death in the Old Town cemetery - fingertips removed - Reacher knows whomever the man was working for is not a friend. Reacher follows the trail to New York, where he confronts the people who dispatched the dead man: an elderly couple still mourning an all-American son lost in Vietnam; an alluring and intelligent woman from Reacher's own haunted past; and at the center of the web, an opponent more vicious than any he's ever faced. Lee Child confirms his early acclaim with this new tale, as swift and stylish as any suspense novel being written today.",Inner Circle (Carol Ashton Mysteries #8).,Australia.,"Plan B: Further Thoughts on Faith. From the New York Timesbestselling author of Hallelujah Anywayand Help, Thanks, Wow, a spiritual antidote to anxiety and despair in increasingly fraught times. As Anne Lamott knows, the world is a dangerous place. Terrorism and war have become the new normal. Environmental devastation looms even closer. And there are personal demands on her faith as well: getting older; her mother's Alzheimer's; her son's adolescence; and the passing of friends and time. Fortunately for those of us who are anxious about the state of the world, whose parents are also aging and dying, whose children are growing harder to recognize as they become teenagers, Plan Boffers hope that we're not alone in the midst of despair. It shares with us Lamott's ability to comfort and to make us laugh despite the grim realities. Anne Lamott is one of our most beloved writers, and Plan Bis a book more necessary now than ever. It is further evidence that, as The New Yorkerhas written, ""Anne Lamott is a cause for celebratio","The Second World War: A Complete History. Historian Martin Gilbert here offers a global history of World War II, weaving together all of its aspectsthe political, the military, the diplomatic, and the civiliancharting an almost day-by-day account of the war's destruction.","The God of Small Things. ""They all crossed into forbidden territory. They all tampered with the laws that lay down who should be loved and how. And how much."" The year is 1969. In the state of Kerala, on the southernmost tip of India, fraternal twins Esthappen and Rahel fashion a childhood for themselves in the shade of the wreck that is their family. Their lonely, lovely mother, Ammu, (who loves by night the man her children love by day), fled an abusive marriage to live with their blind grandmother, Mammachi (who plays Handel on her violin), their beloved uncle Chacko (Rhodes scholar, pickle baron, radical Marxist, bottom-pincher), and their enemy, Baby Kochamma (ex-nun and incumbent grandaunt). When Chacko's English ex-wife brings their daughter for a Christmas visit, the twins learn that things can change in a day, that lives can twist into new, ugly shapes, even cease forever, beside their river...","Palimpsest. This explosively entertaining memoir abounds in gossip, satire, historical apercus, and trenchant observations. Vidal's compelling narrative weaves back and forth in time, providing a whole view of the author's celebrated life, from his birth in 1925 to today, and features a cast of memorable characters--including the Kennedy family, Marlon Brando, Anais Nin, and Eleanor Roosevelt.","Nightmare House (Harrow House #1). Once you cross its threshold, Harrow will never let you go.Claiming his inheritance, a young man unlocks long-buried secrets of an occultist's dark mansion, awakening a nest of hungry ghosts in this spine-tingling supernatural horror novel of the house of infinite hauntings. For fans of haunted houses and ghost stories. ""Clegg's stories can chill the spine so effectively that the reader should keep paramedics on standby!"" - Dean Koontz, NY Times bestselling author. ""Douglas Clegg has become the new star in horror fiction."" - Peter Straub, NY Times bestselling author of The Talisman (with Stephen King) and Ghost Story. Note:The Harrow series consists of several books set in or around the haunted estate in the Hudson Valley. Each Harrow story can be read out-of-order because the main continuing character is the dark mansion itself or those people who have or will touch it.","Making Globalization Work. Four years after he outlined the challenges our increasingly interdependent world was facing in Globalization and Its Discontents, Joseph E. Stiglitz offered his agenda for reform. Now in paperback, Making Globalization Workoffers inventive solutions to a host of problems, including the indebtedness of developing countries, international fiscal instability, and worldwide pollution. Stiglitz also argues for the reform of global financial institutions, trade agreements, and intellectual property laws, to make them better able to respond to the growing disparity between the richest and poorest countries. Now more than ever before, globalization has gathered the peoples of the world into one community, bringing with it a need to think and act globally. This trenchant, intellectually powerful book is an invaluable step in that process. This paperback edition contains a brand-new preface.","The Wanting Seed. Tristram Foxe and his wife, Beatrice-Joanna, live in their skyscraper world where official family limitation glorifies homosexuality. Eventually, their world is transformed into a chaos of cannibalistic dining-clubs, fantastic fertility rituals, and wars without anger. It is a novel both extravagantly funny and grimly serious.",Como agua para chocolate.,"Carnet de Voyage. Craig Thompson spent three months traveling through Barcelona, the Alps, and France, as well as Morocco, researching his next graphic novel, Habibi. Spontaneous sketches and a travelogue diary document his adventures and quiet moments, creating a raw and intimate portrait of countries, culture and the wandering artist.",Snapshots From Hell: The Making Of An MBA.,Monday Night Class.,"The Hour Before Dark. As children, they played the Dark Game. When Nemo Raglan's father is murdered in one of the most vicious killings of recent years, Nemo must return to the New England island he thought he had escaped for good, Burnley Island...and the shadowy farmhouse called Hawthorn. But this murder was no crime of human ferocity. What butchered Nemo's father may in fact be something far more terrifying...Something Nemo and his younger brother, Bruno, and sister, Brooke, have known since childhood. There are secrets buried on Burnley Island. Within the rooms of Hawthorn, beautiful Brooke Raglan has begun to go mad. She sees faces at the windows and wanders the night, trying to find what she believes is a monster. Bruno Raglan has wiped the memory of a terrible event from his mind. Now he compulsively picks apart Hawthorn and discovers that within its walls lies a forbidden secret. As he unravels the mysteries of his past and a terrible night of his childhood, Nemo witnesses something unimaginable, an","The Gift of the Magi and Other Short Stories. Here are sixteen of the best stories by one of America's most popular storytellers. For nearly a century, the work of O. Henry has delighted readers with its humor, irony and colorful, real-life settings. The writer's own life had more than a touch of color and irony. Born William Sidney Porter in Greensboro, North Carolina in 1862, he worked on a Texas ranch, then as a bank teller in Austin, then as a reporter for the Houston ""Post."" Adversity struck, however, when he was indicted for embezzlement of bank funds. Porter fled to New Orleans, then to Honduras before he was tried, convicted and imprisoned for the crime in 1898. In prison he began writing stories of Central America and the American Southwest that soon became popular with magazine readers. After his release Porter moved to New York City, where he continued writing stories under the pen name O. HenryThough his work earned him an avid readership, O. Henry died in poverty and oblivion scarcely eight years after his arrival in","The Divine Comedy. ""Dante and Shakespeare divide the world between them, there is no third."" T. S. Eliot ""Ciardi has given us a credible, passionate persona of the poet, stripped of the customary gauds of rhetoric and false decoration, strong and noble in utterance."" Dudley Fitts ""A sensitive and perceptive translation;a spectacular achievement."" Archibald MacLeish Belonging in the immortal company of the great works of literature, Dante Alighieri's poetic masterpiece, The Divine Comedy, is a moving human drama, an unforgettable visionary journey through the infinite torment of Hell, up the arduous slopes of Purgatory, and on to the glorious realm of Paradise; the sphere of universal harmony and eternal salvation. Now, for the first time, John Ciardi's brilliant and authoritative translations of Dante's three soaring canticles The Inferno, The Purgatorio, and The Paradisohave been gathered together in a single volume. Crystallizing the power and beauty inherent in the great poet's immortal conception of","Sexus (The Rosy Crucifixion #1). Praise for Henry Miller: 'American literature begins and ends with the meaning of what Miller has done.' Lawrence Durrell 'I regard Henry Miller as a master.' Colin MacInne Praise for 'Sexus': 'A huge, sprawling narrative of Miller's life in New York, ""Sexus'""culminates in a description of an orgy as remarkable for its account of the author's powers of sexual endurance as for its versatility. Interspersed are descriptions of his friends, some of them extremely funny and all of them lively. The lack of inhibition and genteel or moral restraint with which Miller describes these various characters gives ""Sexus"" a unique vitality. Miller cannot be pompous, a rare virtue, and his honesty is absolute.' Spectator",The Bookshop The Gate of Angels The Blue Flower.,"Civilization and Its Discontents. Civilization and Its Discontentsmay be Sigmund Freud's best-known work. Originally published in 1930, it seeks to answer ultimate questions: What influences led to the creation of civilization? How did it come to be? What determines its course? In this seminal volume of twentieth-century thought, Freud elucidates the contest between aggression, indeed the death drive, and its adversary eros. He speaks to issues of human creativity and fulfillment, the place of beauty in culture, and the effects of repression. Louis Menand, author of the Pulitzer Prize-winning The Metaphysical Club, contributor to The New Yorker,and professor of English at Harvard University, reflects on the importance of this work in intellectual thought and why it has become such a landmark book for the history of ideas. Not available in hardcover for decades, this beautifully rendered anniversary edition will be a welcome addition to readers' shelves.",Mortal Fear.,Venac sonetnih venaca; Puževa srma.,"The Enemy (Jack Reacher #8). 1 MP3-CD / 14 hours You're in the Army now, son... New Year's Day, 1990. The Berlin Wall is coming down. The Cold War is ending. Soon America won't have any enemies left. The Army won't have anybody to fight. Things are going to change. Jack Reacher is the Military Police duty officer on a base in North Carolina when he takes a call reporting a dead soldier in a hot-sheets motel. Reacher tells the local cops to handle it--heart attacks happen all the time. But why is Reacher in North Carolina, instead of Panama, where the action is? Then the dead man turns out to have been a two-star general who should have been in Europe. And when Reacher goes to the general's house to break the news, he finds another corpse: the general's wife. What is he dealing with here? The last echoes of the old world... or the first shocks of the new? Winner of 2005 Nero, Barry and (yes, this is not a typo) Jack Reacher awards. The Nero Award, for literary excellence in the mystery genre, is awarded by The Wolf",The Complete Dream Dictionary.,"See How She Dies. London Danvers was kidnapped as a child from her wealthy family. Over the years, many women have claimed to be the long-lost heiress. Now Adria Nash has arrived in Oregon, claiming to be London - but she's different. She knows personal details only London could have known. And there is someone who does believe her . . . who is watching her every move, waiting to see how she runs, how she screams, and how she dies.",La Tía Julia y el Escribidor.,"Shadows At Sunset. Despite her best intentions, Jilly finds herself drawn to Coltrane, her father's new right-hand aide, a handsome liar with his own vengeful agenda against a man whom he blames for a crime committed many years before. Original.",Phantoms.,"Walking the World in Wonder: A Children's Herbal. Introduce children to the magic of using herbs for healing, cooking, and nature crafts and inspire a lifelong interest in the natural world. Designed especially for children ages five to ten. A hands-on book for children, filled with fun, easy-to-follow activities. Covers the medicinal and magical uses of sixty-seven common herbs. Each herb playfully introduces itself and talks about its habitat and many uses. With fun, easy-to-follow activities, herbalist Ellen Evert Hopman teaches children basic herbal skills and invites them to make a sunflower seed mosaic, sew a catnip-filled mouse, and dig for Jerusalem artichoke roots. The book also includes simple recipes that children can use, with adult supervision, to treat minor ailments--peppermint tea to soothe a troubled tummy or horse chestnut salve to heal a scraped knee. Children gain a sense of self-sufficiency and awe for the earth's treasures by eating wild nettle greens, sprinkling a sandwich with nasturtium flowers, making strawbe","Under the Duvet. Marian Keyes, bestselling author of Lucy Sullivan is Getting Married, loves shoes and her LTFs (Long Term Friends), hates estate agents and lost luggage, and she once had a Christmas office party that involved roasting two sheep on a spit. 'When people ask me what I do for a crust and I tell them that I'm a novelist, they immediately assume that my life is a non-stop carousel of limos, television appearances, hair-dos, devoted fans, stalkers and all the glitzy paraphernalia of being a public figure. It's time to set the record straight. I write alone, in a darkened bedroom, wearing my PJs, eating bananas, my laptop on a pillow in front of me ...' Her novels are read and adored by millions around the world - now read Marian Keyes' collected pieces: regular bulletins from the woman under the duvet.","The Oresteia. In the last year of his life, Ted Hughes completed translations of three major dramatic works: Racine's Phedre, Euripedes' Alcestis, and the trilogy of plays known as at TheOresteia, a family story of astonishing power and the background or inspiration for much subsequent drama, fiction, and poetry. The Oresteia--Agamemnon, Choephori, and the Eumenides--tell the story of the house of Atreus: After King Agamemnon is murdered by his wife, Clytemnestra, their son, Orestes, is commanded by Apollo to avenge the crime by killing his mother, and he returns from exile to do so, bringing on himself the wrath of the Furies and the judgment of the court of Athens. Hughes's ""acting version"" of the trilogy is faithful to its nature as a dramatic work, and his translation is itself a great performance; while artfully inflected with the contemporary, it has a classical beauty and authority. Hughes's Oresteiais quickly becoming the standard edition for English-language readers and for the stage, too.","In the Shadow of Young Girls in Flower (In Search of Lost Time #2). In the Shadow of Young Girls in Floweris a spectacular dissection of male and female adolescence, and an unequalled meditation on different forms of love, charged with the narrator's memories of Paris and the Normandy seaside, and his relationships with his grandmother and the Swann family. Here Proust introduces some of his greatest comic inventions, from the magnificently dull M. de Norpois to the enchanting Robert de Saint-Loup, and introduces two figures who come to dominate the narrator's life - the Baron de Charlus and the mysterious Albertine.","Pompeii. With his trademark elegance and intelligence Robert Harris recreates a world on the brink of disaster. All along the Mediterranean coast, the Roman empire's richest citizens are relaxing in their luxurious villas, enjoying the last days of summer. The world's largest navy lies peacefully at anchor in Misenum. The tourists are spending their money in the seaside resorts of Baiae, Herculaneum, and Pompeii. But the carefree lifestyle and gorgeous weather belie an impending cataclysm, and only one man is worried. The young engineer Marcus Attilius Primus has just taken charge of the Aqua Augusta, the enormous aqueduct that brings fresh water to a quarter of a million people in nine towns around the Bay of Naples. His predecessor has disappeared. Springs are failing for the first time in generations. And now there is a crisis on the Augusta's sixty-mile main line--somewhere to the north of Pompeii, on the slopes of Mount Vesuvius. Attilius--decent, practical, and incorruptible--promises Pli",John Grisham Value Collection: A Time to Kill The Firm The Client.,"The Fate of Reason: German Philosophy from Kant to Fichte. The Fate of Reasonis the first general history devoted to the period between Kant and Fichte, one of the most revolutionary and fertile in modern philosophy. The philosophers of this time broke with the two central tenets of the modem Cartesian tradition: the authority of reason and the primacy of epistemology. They also witnessed the decline of the Aufkldrung, the completion of Kant's philosophy, and the beginnings of post-Kantian idealism. Thanks to Beiser we can newly appreciate the influence of Kant's critics on the development of his philosophy. Beiser brings the controversies, and the personalities who engaged in them, to life and tells a story that has uncanny parallels with the debates of the present.","Baby Proof. From the author of the smash hits Something Borrowedand Something Bluecomes a novel that explores the question: is there ever a deal-breaker when it comes to true love? First comes love. Then comes marriage. Then comes . . . a baby carriage? Isn't that what all women want? Not so for Claudia Parr. And just as she gives up on finding a man who feels the same way, she meets warm, wonderful Ben. Things seem too good to be true when they fall in love and agree to buck tradition with a satisfying, child-free marriage. Then the unexpected occurs: one of them has a change of heart. One of them wants children after all. This is the witty, heartfelt story about what happens to the perfect couple when they suddenly want different things. It's about feeling that your life is set and then realizing that nothing is as you thought it was--and that there is no possible compromise. It's about deciding what is most important in life, and taking chances to get it. But most of all, it's about the things","World's End. This multi-generational novel ranges over the history of the Hudson River Valley from the late seventeenth century to the late 1960s with low humor, high seriousness, and magical, almost hallucinatory prose. It follows the interwoven destinies of families of Indians, lordly Dutch patrons, and yeomen.",Nietzche and Philosophy.,Adventures of the Scarlet Pimpernel.,"Art and Lies. Handel is a failed priest but abiding Catholic with elitist tendencies whose work as a doctor forces him to consider social questions that he would probably rather avoid. Picasso, as she calls herself, is a young artist who has been sexually abused by her brother but whose family thinks she is at fault for her dark moods. Sappho is, indeed, Sappho, the lesbian poet of ancient Greece, who here proclaims herself a sensualist and then proceeds to dissect ""the union of language and lust."" The three converge in a place that may be England in a not-too-distant future made ugly by pollution and even uglier by greed. This is not a novel but an extended rift on art, sex, religion, social repression, the dangers of patriarchy, and everything that is wrong with the contemporary drift to the right. As such, it will be hard going for most readers, but those with some patience will discover exceptionally evocative writing and a vivifying review of some much-discussed contemporary issues.","The Visible Hand: The Managerial Revolution in American Business. The role of large-scale business enterprise--big business and its managers--during the formative years of modern capitalism (from the 1850s until the 1920s) is delineated in this pathmarking book. Alfred Chandler, Jr., the distinguished business historian, sets forth the reasons for the dominance of big business in American transportation, communications, and the central sectors of production and distribution. The managerial revolution, presented here with force and conviction, is the story of how the visible hand of management replaced what Adam Smith called the 'invisible hand' of market forces. Chandler shows that the fundamental shift toward managers running large enterprises exerted a far greater influence in determining size and concentration in American industry than other factors so often cited as critical: the quality of entrepreneurship, the availability of capital, or public policy.","In the Beginning. David Lurie learns that all beginnings are hard. He must fight for his place against the bullies in his Depression-shadowed Bronx neighborhood and his own frail health. As a young man, he must start anew and define his own path of personal belief that diverges sharply with his devout father and everything he has been taught...",American Government: Continuity and Change Texas Edition.,"The Good Fairies of New York. Dinnie, an overweight enemy of humanity, was the worst violinist in New York, but was practicing gamely when two cute little fairies stumbled through his fourth-floor window and vomited on the carpet... When a pair of fugitive Scottish thistle fairies end up transplanted to Manhattan by mistake, both the Big Apple and the Little People have a lot of adjusting to do. Heather and Morag just want to start the first radical fairy punk rock band, but first they'll have make a match between two highly unlikely sweethearts, start a street brawl between rival gangs of Italian, Chinese, and African fairies, help the ghost of a dead rocker track down his lost guitar, reclaim a rare triple-bloomed Welsh poppy from a bag lady with delusions of grandeur, disrupt a local community performance of A Midsummer Night's Dream,and somehow manage to stay sober enough to save all of New York from an invasion of evil Cornish fairies. If they can stop feuding with each other, that is.","Falling for You. Love is always just around the corner in a Jill Mansell novel - with a few surprises and a lot of humour on the way to happiness Maddy Harvey was a bit of an ugly duckling as a teenager, what with her NHS specs, unfortunate hair and wonky teeth. Thankfully she's blossomed since then. But when she meets Kerr McKinnon one starry summer's night and discovers, days later, who he actually is... well, that's when the problems really start. Because everyone in Ashcombe knows what happened eleven years ago, and as far as her mother's concerned, Marcella would rather tear that family to pieces with her bare hands than see Maddy associate with a McKinnon. It's Romeo and Juliet all over again. Quick, hide those sharp knives and that little bottle of poison...","Sputnik Sweetheart. Combining the early, straightforward seductions of Norwegian Wood and the complex mysteries of The Wind-Up Bird Chronicle, this new novel -- his seventh translated into English -- is Haruki Murakami at his most satisfying and representative best. The scenario is as simple as it is uncomfortable: A male college student falls, and for years remains, in love with a woman whose devotion to Kerouac and an untidy writerly life precludes any personal commitments -- until she meets a considerably older and far more sophisticated businesswoman. It is through this wormhole that she enters Murakami's surreal yet humane universe, to which she serves as guide both for us and the man (now a teacher) who loves her. In the course of her travels from parochial Japan through Europe and ultimately to an island off the coast of Greece, she disappears without trace, leaving only lineaments of her fate: computer accounts of bizarre events and of stories within stories. The teacher, now summoned to assist in","In the Dark of the Night. The rambling lakeside house called Pinecrest has lain empty since its last owner went missing seven years ago. But for the Brewster family it will be this year's holiday retreat, and for the kids Eric and Marci it's the perfect place to spend a lazy summer exploring. Which is how Eric and his teenage friends discover a curious collection of discarded objects stowed in a hidden room in the carriage house. The bladeless hacksaws, shade-less lamps, tables with missing legs, a headless axe handle - these unremarkable items add up to a pile of junk. Yet someone once took the trouble to list each worthless relic in a cryptic ledger, thus provoking a great mystery that is now whispering, coaxing, demanding to be solved. The more the boys devote themselves to piecing together the puzzle, the more their fascination deepens into obsession. Soon their days are consumed with this weird collection, while their nights become plagued by ever more ghastly nightmares. And finally when a horrifying disc",Triple Zero (Star Wars: Republic Commando #2).,"Letter to a Man in the Fire: Does God Exist and Does He Care?. Does God Exist and Does He Care? In April 1997 Reynolds Price received an eloquent letter from a reader of his cancer memoir, A Whole New Life. The correspondent, a young medical student diagnosed with cancer himself and facing his own mortality, asked these difficultQuestions. The two began a long-distance correspondence, culminating in Price's thoughtful response, originally delivered as the Jack and Lewis Rudin Lecture at Auburn Theological Seminary, and now expanded onto the printed page as Letter to a Man in the Fire. Harvesting a variety of sources -- diverse religious traditions, classical and modern texts, and a lifetime of personal experiences, interactions, and spiritual encounters -- Price meditates on God's participation in our fate. With candor and sympathy, he offers the reader such a rich variety of tools to explore these questions as to place this work in the company of other great tetsaments of faith from St. Augustine to C. S. Lewis. Letter to a Man in the Firemoves a","Patriot Games (Jack Ryan #1). Tom Clancy's Patriot Games is filled with the exceptional realism and authenticity that distinguished the author's two previous bestsellers, Hunt for Red October and Red Storm Rising. Patriot Games puts us on the cutting edge of another type of war -- the international battle of terrorism.Years before the defection of a Soviet submarine will send him hurtling into confrontation with the Soviets in Red October, Jack Ryan, historian, ex-marine, and CIA analyst, is vacationing in London when the Ulster Liberation Army makes a terrorist attack on the Prince and Princess of Wales. By instinctively diving forward to break up the attack, he gains both the gratitude of a nation and the hatred of its most dangerous men. Jack Ryan must summon all of the skills and knowledge at his command to battle back against his nemesis.",The Iliad (SparkNotes Literature Guides).,"Wifey / Smart Women. Offers two novels featuring women, men, marriage, divorce, sex, love, identity, and romance.",Short Stories.,"Happy Hour at Casa Dracula (Casa Dracula #1). Latina Ivy League grad Milagro de Los Santos can't find her place in the world or a man to go with it. Then one night, at a book party for her pretentious ex-boyfriend, she meets an oddly attractive man. After she is bitten while kissing him, she falls ill and is squirreled away to his family's estate to recover. Vampires don't exist in this day and age -- or do they? As Milagro falls for a fabulously inappropriate man, she finds herself caught between a family who has accepted her as one of their own and a shady organization that refuses to let the undead live and love in peace.","Art Objects: Essays on Ecstasy and Effrontery. In these ten intertwined essays, one of our most provocative young novelists proves that she is just as stylish and outrageous an art critic. For when Jeanette Winterson looks at works as diverse as the ""Mona Lisa"" and Virginia Woolf's ""The Waves,"" she frees them from layers of preconception and restores their power to exalt and unnerve, shock and transform us. ""Art Objects is a book to be admired for its effort to speak exorbitantly, urgently and sometimes beautifully about art and about our individual and collective need for serious art.""-- ""Los Angeles Times""","The Mystery of the Whispering Mummy (Alfred Hitchcock and The Three Investigators #3). The Three Investigators undertake a case involving an Egyptian mummy which whispers, but only to one man.","Middle Age: A Romance. In Salthill-on-Hudson, a half-hour train ride from Manhattan, everyone is rich, beautiful, and -- though they look much younger -- middle-aged.But when Adam Berendt, a charismatic, mysterious sculptor, dies suddenly in a brash act of heroism, shock waves rock the town. But who was Adam Berendt? Was he in fact a hero, or someone more flawed and human?","Toujours Provence. Taking up where his beloved A Year in Provence leaves off, Peter Mayle offers us another funny, beautifully (and deliciously) evocative book about life in Provence. With tales only one who lives there could know--of finding gold coins while digging in the garden, of indulging in sumptuous feasts at truck stops--and with characters introduced with great affection and wit--the gendarme fallen from grace, the summer visitors ever trying the patience of even the most genial Provencaux, the straightforward dog ""Boy""--Toujours Provence is a heart-warming portrait of a place where, if you can't quite ""get away from it all,"" you can surely have a very good time trying.","The Other Woman. Tall, athletic Joanna Kingston has a roguish way about her that draws women like a magnet. Yet, as too many lovers have discovered too late, though Joanna's bedroom door is always open, she keeps her wounded heart under lock and key.Knowing too well Joanna's ""love 'em and leave 'em"" reputation, beautiful Fiona Maddison is determined to keep their friendship platonic -- unless she can break through Joanna's impenetrable public persona. But as the sexual tension between them starts to smolder, Fiona's resolve starts to melt. Editor: Christine Cassidy Genre: Romance",The Poppy Seed Cakes. Tales of Andrewshek and Auntie Katushka and Erminka.,Open House.,"The Odyssey. Librarian's Note: an alternate cover edition for this ISBN can be found . The Odyssey"" is a classical epic poem about the events following the fall of Troy and the end of the Trojan War which is generally thought to have been written at the end of the 8th century BC. The story centers on Odysseus and his ten year journey to reach his home of Ithaca, following the Trojan War. Odysseus's death is assumed during this long absence, and his wife Penelope and son Telemachus must deal with a group of suitors, the Proci, who compete for Penelope's hand in marriage. Generally attributed to the ancient Greek poet Homer, ""The Odyssey"" is a sequel to ""The Iliad"" and is considered one of the most important works of classical antiquity. Presented here in this edition is the prose translation of Samuel Butler. Robert Fitzgerald's is the best and best-loved modern translation of The Odyssey, and the only one admired in its own right as a great poem in English. Fitzgerald's supple verse is ideally sui",Lessons from Turtle Island: Native Curriculum in Early Childhood Classrooms.,"The Last Boleyn. She Survived Her Own Innocence, and the Treachery of Europe's Royal Courts Greed, lust for power, sex, lies, secret marriages, religious posturing, adultery, beheadings, international intrigue, jealousy, treachery, love, loyalty, and betrayal. The Last Boleyntells the story of the rise and fall of the Boleyns, one of England's most powerful families, through the eyes of the eldest daughter, Mary. Although her sister, Anne, the queen; her brother, George, executed alongside Anne; and her father, Thomas, are most remembered by history, Mary was the Boleyn who set into motion the chain of events that brought about the family's meteoric rise to power, as well as the one who managed to escape their equally remarkable fall. Sent away to France at an extraordinarily young age, Mary is quickly plunged into the dangerous world of court politics, where everything is beautiful but deceptive, and everyone she meets is watching and quietly manipulating the events and people around them. As she grow","Kevin Trudeau's Mega Memory: How to Release Your Superpower Memory in 30 Minutes Or Less a Day. Do you think you have a ""bad memory""? Impossible, says Kevin Trudeau, the world's foremost authority on memory improvement training. There are no bad memories, only untrained memories. In order to release our natural memory, Trudeau says, we just need to learn to retrieve what we already know. As founder of the American Memory Institute, Kevin Trudeau has already helped more than one million people do just that. Each Mega Memorylesson in this book takes no more than thirty minutes per day and uses pictures, rather than the laborious word-association techniques of other memory systems, to activate our inborn memory. With this easy-to-follow system, you'll be able to instantly remember names, phone numbers, addresses, financial data, speeches, and schoolwork. Even better, Trudeau's system ensures instant recall and long-term Mega Memory. All you need is the desire to unleash your Mega Memory, and you can reap all these incredible rewards! Labeled with a learning disability at an early ag","Matthew Flinders' Cat. Billy O'Shannessy, once a prominent barrister, is now on the street where he sleeps on a bench outside the State Library. Above him on the window sill rests a bronze statue of Matthew Flinders' cat, Trim. Ryan is a ten-year-old, a near street kid heading for all the usual trouble. The two meet and form an unlikely friendship. Appealing to the boy's imagination by telling him the story of the circumnavigation of Australia as seen through Trim's eyes, Billy is drawn deeply into Ryan's life and into the Sydney underworld. Over several months the two begin the mutual process of rehabilitation. Matthew Flinders' Cat is a modern-day story of a city, its crime, the plight of the homeless and the politics of greed and perversion. It is also a story of the human heart, with an enchanting glimpse into our past from the viewpoint of a famous cat.","Swan Song. In a wasteland born of rage and fear, populated by monstrous creatures and marauding armies, earth's last survivors have been drawn into the final battle between good and evil, that will decide the fate of humanity: Sister, who discovers a strange and transformative glass artifact in the destroyed Manhattan streets; Joshua Hutchins, the pro wrestler who takes refuge from the nuclear fallout at a Nebraska gas station; and Swan, a young girl possessing special powers, who travels alongside Josh to a Missouri town where healing and recovery can begin with Swan's gifts. But the ancient force behind earth's devastation is scouring the walking wounded for recruits for its relentless army, beginning with Swan herself.",Insects & Spiders.,"The Lord of the Rings: Weapons and Warfare. Lavishly illustrated with 1,000 photos, paintings, maps, sculptures and sketches, most appearing here for the first time, Weapons and Warfare is an indispensable chronicle of The Lord of the Rings' many creatures, warriors, armies and battlegrounds. From the graceful and proficient Elves to the horrendous war machines of the Dark Lord, each culture's approach to warfare is explained - how they fought, why they were fighting, what armor they wore and what weapons they used against their enemies. Now you can get as close to a marauding Orc as you could ever wish, without suffering the consequences! Treating the filmmakers' notes, designs and props as a true archive, Weapons and Warfare describes in detail every major conflict depicted in the film trilogy - from The Last Alliance of Elves and Men to the climactic Battle of the Pelennor Fields - each accompanied by a battle diagram from the films' chief designers. Armed with a wealth of fascinating facts and unique imagery, and with an exc","E=mc²: A Biography of the World's Most Famous Equation. E=mc2. Just about everyone has at least heard of Albert Einstein's formulation of 1905, which came into the world as something of an afterthought. But far fewer can explain his insightful linkage of energy to mass. David Bodanis offers an easily grasped gloss on the equation. Mass, he writes, ""is simply the ultimate type of condensed or concentrated energy,"" whereas energy ""is what billows out as an alternate form of mass under the right circumstances.""Just what those circumstances are occupies much of Bodanis's book, which pays homage to Einstein and, just as important, to predecessors such as Maxwell, Faraday, and Lavoisier, who are not as well known as Einstein today. Balancing writerly energy and scholarly weight, Bodanis offers a primer in modern physics and cosmology, explaining that the universe today is an expression of mass that will, in some vastly distant future, one day slide back to the energy side of the equation, replacing the ""dominion of matter"" with ""a great stillness","Nausicaä of the Valley of the Wind Vol. 6 (Nausicaä of the Valley of the Wind #6). In a long-ago war, humankind set off a devastating ecological disaster. Now the Earth is slowly submerging beneath the expanding Sea of Corruption, an enormous toxic forest filled with mutant fungi that release a miasma of poisonous spores into the air. Nausicaa, a compassionate young princess, and her allies fight to create peace between kingdoms fighting over the world's remaining precious natural resources. Nausicaa embarks on an inner, spiritual journey to the heart of the Sea of Corruption, where she discovers its surprising secret. She returns to the land of the living, compelled to share her discovery, but Nausicaa accidentally awakens a God Warrior - a biotechnological abomination of the war known as the Seven Days of Fire - from its stasis. And now the monstrous yet childlike God Warrior thinks Nausicaa is its mother!","The St. Paul Stories of F. Scott Fitzgerald. F Scott Fitzgerald's St Paul is a city of winter dreams and ice palaces, lakeside parties and neighbourhood hijinks. These are stories of ambition and young love, insecurity and awkwardness, where a poor boy with energy and intelligence can break into the upper classes and become a glittering success. This selection brings together the best of Fitzgerald's St Paul stories -- some virtually unknown, others classics of short fiction. Patricia Hampl's incisive introduction traces the trajectory of Fitzgerald's blazing celebrity and its connections to his life in the city that gave him his best material. Headnotes by Dave Page provide specific ties between the stories and Fitzgerald's life in St Paul.","The Assault. In this, the final volume in the series of five novels that constitute his ""secret history of Cuba"", Reinaldo Arenaspaints a harrowing, and at times boldly entertaining, Kafka-esque picture of a dehumanized people living in a world where homosexuality is a crime punishable by death and a cockroach hunt makes for a national holiday. Narrated by a hate-filled government torturer who has become an agent for the ""Bureau of Counterwhispering"","" The Assaultfollows his travels through a blackly humorous shadowland as he winnow out whisperers, sexual deviants, and dissidents of every sort--until memory has been banished and spoken language has been nearly forgotten.","Jimmy Stewart: A Biography. Jimmy Stewart's all-American good looks, boyish charm, and deceptively easygoing style of acting made him one of Hollywood's greatest and most enduring stars. Despite the indelible image he projected of innocence and quiet self-assurance, Stewart's life was more complex and sophisticated than most of the characters he played. With fresh insight and unprecedented access, bestselling biographer Marc Eliot finally tells the previously untold story of one of our greatest screen and real-life heroes. Born into a family of high military honor and economic success dominated by a powerful father, Stewart developed an interest in theater while attending Princeton University. Upon graduation, he roomed with the then-unknown Henry Fonda, and the two began a friendship that lasted a lifetime. While he harbored a secret unrequited love for Margaret Sullavan, Stewart was paired with many of Hollywood's most famous, most beautiful, and most alluring leading ladies during his extended bachelorhood, am",The Sorrows of Young Werther.,"La increíble y triste historia de la cándida Eréndira y de su abuela desalmada. Noveller om en verden der alt er mulig,en verden av kjemper,gjoglere og trollmenn,og enkle fattige mennesker.","The Hunt for Zero Point: Inside the Classified World of Antigravity Technology. The atomic bomb was not the only project to occupy government scientists during the 1940s. Antigravity technology, originally spearheaded by scientists in Nazi Germany, was another high priority, one that still may be in effect today. Now, for the first time, an acclaimed journalist with unprecedented access to key sources in the intelligence and military communities reveals suppressed evidence that tells the story of a quest for a discovery that could prove as powerful as the atomic bomb. The Hunt for Zero Pointexplores the scientific speculation that ""zero point"" energy--a limitless source of potential power that may hold the key to defying and thereby controlling gravity--exists in the universe and can be replicated. The pressure to be the first nation to harness gravity is immense, as it means having the ability to build military planes of unlimited speed and range, along with the most deadly weaponry the world has ever seen. The ideal shape for a gravity-defying vehicle happens to","Frankenstein. Mary Shelley's Frankenstein is the world's most famous Gothic novel about eccentric scientist Victor Frankenstein, who creates a grotesque creature in an unorthodox scientific experiment. Shelley's work is considered to be the world's first science fiction, with Frankenstein's monster being a symbol of science gone awry. Shelley's masterpiece has inspired numerous films, plays and other books. This, the 1831 edition, contains the author's final revisions.","False Colours. The young Earl of Denville was missing. Handsome and eligible as the titled elder of the renowned Fancot twins was, no one would forgive him if he failed to appear before his fiancee's family. For even though they did not love each other, he could hardly embarrass the charming Cressida Stavely at her own engagement party. And if the match were wrecked, it would dash the last hope of getting his lovely, improvident mother out of debt. With an uncanny hunch about his twin's predicament, the younger brother, Kit, appeared at the party just in time to double for the missing Earl. With his intelligence he succeeded in deceiving all present. And with his superb manners he not only charmed Cressy's formidable grandmother, but made Cressy herself wonder if she didn't love the Earl after all . . .","Christian Theology: An Introduction. Alister McGrath's internationally-acclaimed Christian Theology: An Introductionis one of the most widely used textbooks in Christian theology. Fully revised and featuring lots of new material, this fourth edition provides an unparalleled introduction to 2,000 years of Christian thought. A fully revised new edition of the bestselling introductory textbook in Christian theology Features new sections on monastic schools of theology, the English Reformation, and Radical Orthodoxy Includes increased discussion of women in the early Church, feminist theology, Eastern Orthodox theology and history, and Catholic teachings on the Doctrine of the Church Incorporates user-friendly key terms sections, and study questions Supported by a website at www.blackwellpublishing.com/mcgrath, containing additional lecturer resources.","All Families Are Psychotic. On the eve of the next Space Shuttle mission, a divided family comes together... Warm, witty and wise, All Families Are Psychotic is Coupland at the very top of his form: 'Irresistibly hilarious, unique and wonderful' Independent on Sunday In a cheap motel an hour from Cape Canaveral, Janet Drummond takes her medication, and does a rapid tally of the whereabouts of her children. Wade has spent the night in jail; suicidal Bryan is due to arrive at any moment with his vowel-free girlfriend, Shw; and then there is Sarah, 'a bolt of lightning frozen in midflash' -- here in Orlando to be the star of Friday's shuttle mission. With Janet's ex-husband and his trophy wife also in town, Janet spends a moment contemplating her family, and where it all went wrong. Or did it?","Christmas in Noisy Village. Let the beloved author of Pippi Longstocking take you on an adventure to Noisy Village! The noisy children of three neighboring families are celebrating the season by baking cookies, cutting and decorating trees, eating fruitcake and tarts, and opening Christmas gifts. With illustrations by Ilon Wikland, the master storyteller Astrid Lindgren takes us through Christmas in the Noisy Village!","Angels & Demons (Robert Langdon #1). An ancient secret brotherhood. A devastating new weapon of destruction.When world-renowned Harvard symbologist Robert Langdon is summoned to a Swiss research facility to analyze a mysterious symbol--seared into the chest of a murdered physicist--he discovers evidence of the unimaginable: the resurgence of an ancient secret brotherhood known as the Illuminati...the most powerful underground organization ever to walk the earth. The Illuminati has now surfaced to carry out the final phase of its legendary vendetta against its most hated enemy--the Catholic Church. Langdon's worst fears are confirmed on the eve of the Vatican's holy conclave, when a messenger of the Illuminati announces they have hidden an unstoppable time bomb at the very heart of Vatican City. With the countdown under way, Langdon jets to Rome to join forces with Vittoria Vetra, a beautiful and mysterious Italian scientist, to assist the Vatican in a desperate bid for survival. Embarking on a frantic hunt through sealed","Henry IV Parts I & II. The ""Longman Cultural Editions"" series presents the only paperback edition of both parts of ""Henry IV"" published in one volume, together with relevant literary and historical contextual materials that illluminate without overwhelming the primary texts. This edition presents both parts of Shakespeare s ""Henry IV"" plays in the authoritative Bevington edition, tracing the full course of Prince Hal s ambiguous journey from prodigal youth to his role as King Henry V, as well as the controversial career of the tavern king, Sir John Falstaff. Contextual materials emphasize the plays historical background, Shakespeare s transformation of his sources, and the intellectual controversies that are embodied in the dramatic action. One Longman Cultural Edition can be packaged at no additional cost with any volume of ""The Longman Anthology of British Literature"" by Damrosch et al., or at a discount with any other Longman textbook.""","A Dance to the Music of Time: 1st Movement (A Dance to the Music of Time #1-3). Anthony Powell's universally acclaimed epic encompasses a four-volume panorama of twentieth century London. Hailed by Timeas ""brilliant literary comedy as well as a brilliant sketch of the times,"" A Dance to the Music of Timeopens just after World War I. Amid the fever of the 1920s and the first chill of the 1930s, Nick Jenkins and his friends confront sex, society, business, and art. In the second volume they move to London in a whirl of marriage and adulteries, fashions and frivolities, personal triumphs and failures. These books ""provide an unsurpassed picture, at once gay and melancholy, of social and artistic life in Britain between the wars"" (Arthur Schlesinger, Jr.). The third volume follows Nick into army life and evokes London during the blitz. In the climactic final volume, England has won the war and must now count the losses. Four very different young men on the threshold of manhood dominate this opening volume of A Dance to the Music of Time. The narrator, Jenkins--a buddi","Controversy Creates Cash. Eric Bischoff has been called pro wrestling's most hated man. He's been booed, reviled, and burned in effigy. Fans have hurled everything from beer bottles to fists at him. Industry critics have spewed a tremendous amount of venom about his spectacular rise and stupendous crash at World Championship Wrestling. But even today, Eric Bischoff's revolutionary influence on the pro wrestling industry can be seen on every television show and at every live event. Bischoff has kept quiet while industry ""pundits"" and other know-it-alls pontificated about what happened during the infamous Monday Night Wars. Basing their accounts on third- and fourth-hand rumors and innuendo, the so-called experts got many more things wrong than right. Now, in ""Controversy Creates Cash,"" Bischoff tells what ""really"" happened. Beginning with his days as a salesman for Verne Gagne's American Wrestling Association, Bischoff takes readers behind the scenes of wrestling, writing about the inner workings of the business","The Dragons at War (Dragonlance Dragons #2). Dragons, the true children of Krynn, are power incarnate, and they know it. They come in all guises and forms. Their personalities are as varied as thier colors. Their magical abilities are virtually unlimited. And nothing is so terrifying as dragons on the wing. In this collection, a follow-up to the popular The Dragons of Krynnanthology, Dragonlance creators, Margaret Weis and Tracy Hickman serve up a fantastical array of dragon tales featuring the motley races of Krynn and the deadliest creatres of the Dragonlance saga.",Theocritus: Select Poems: Select Poems.,"The Crack-Up. ""The Crack-Up"" was first published by New Directions in 1945 and is now being rediscovered by a new generation of readers. Compiled and edited by Edmund Wilson shortly after Fitzgerald's death, ""The Crack-Up"" tells the story of Fitzgerald's sudden descent at age thirty-nine from a life of success and glamor to one of emptiness and despair, and his determined recovery. This vigorous and revealing collection of essays and letters renders the tale of a man whose personality still charms us all and whose reckless gaiety and genious made him a living symbol and the Jazz Age. For those who grew up with ""The Great Gatsby"" or ""Tender is the Night,"" this extraordinary autobiographical collection provides a unique personal blend of the romance and reality embodied by Fitzgerald's literature and his life.","Phantoms. CLOSER... They found the town silent, apparently abandoned. Then they found the first body strangely swollen and still warm. One hundred fifty were dead, 350 missing. But the terror had only begun in the tiny mountain town of Snowfield, California.AND CLOSER... At first they thought it was the work of a maniac. Or terrorists. Or toxic contamination. Or a bizarre new disease. AND CLOSER... But then they found the truth. And they saw it in the flesh. And it was worse than anything any of them had ever imagined...","A Three Dog Life. When Abigail Thomas's husband, Rich, was hit by a car, his brain shattered. Subject to rages, terrors, and hallucinations, he must live the rest of his life in an institution. He has no memory of what he did the hour, the day, the year before. This tragedy is the ground on which Abigail had to build a new life. How she built that life is a story of great courage and great change, of moving to a small country town, of a new family composed of three dogs, knitting, and friendship, of facing down guilt and discovering gratitude. It is also about her relationship with Rich, a man who lives in the eternal present, and the eerie poetry of his often uncanny perceptions. This wise, plainspoken, beautiful book enacts the truth Abigail discovered in the five years since the accident: You might not find meaning in disaster, but you might, with effort, make something useful of it.","Writing Down the Bones: Freeing the Writer Within. For more than twenty years Natalie Goldberg has been challenging and cheering on writers with her books and workshops. In her groundbreaking first book, she brings together Zen meditation and writing in a new way. Writing practice, as she calls it, is no different from other forms of Zen practice--""it is backed by two thousand years of studying the mind."" This edition includes a new preface and an interview with the author.","A Certain Justice (Abe Glitsky #1). When the angry white mob poured out of the bar on San Francisco's Geary Street and surrounded an innocent black man, Kevin Shea was the only one who tried to stop them. He failed, and now, thanks to a deceptive news photo taken during the melee, he is wanted for the murder himself-and the real culprits have threatened his life if he says a word. As riots rage and politicians posture, Lieutenant Abe Glitsky finds himself under pressure to bring Shea in at all costs. And as respect for the law crumbles-even among those sworn to uphold it-true justice is the only thing that can prevent the death of another innocent man.","Swords of Mars (Barsoom #8). ""Swords of Mars"" is the eighth book in the Edgar Rice Burroughs' Martian series. It was featured in six issues of the ""Blue Book"" magazine in 1934-1935. John Carter reprises his role of hero as he vows to bring an end to the Assassins Guild. He must travel to one of the moons of Barsoom, Carter then creates a race of secret super assassins to destroy this powerful Guild of Assassins. He ventures to the city of Zedong in a fierce attempt to overthrow Ur Jan the leader pf the Assassins. There are many fantastic characters and galaxies in this compelling spy story in this edge of your seat science thriller.","A Year at the Races: Reflections on Horses Humans Love Money and Luck. ""Every horse story is a love story,"" writes Jane Smiley, who has loved horses for most of her life and owned and bred them for a good part of it. To love something is to observe it with more than usual attention, and that is precisely what Smiley does in this irresistibly smart, witty, and engaging chronicle of her obsession. In particular she follows a sexy filly named Waterwheel and a grey named Wowie (he ""tells"" a horse communicator that he wants it changed from Hornblower) as they begin careers at the racetrack. Filled with humor and suspense, and with discourses on equine intelligence, affection, and character, A Year at the Racesis a winner.","A Woman of Substance (Emma Harte Saga #1). A celebration of an indomitable spirit, here is New York Times bestselling author Barbara Taylor Bradford's dazzling saga of a woman who dared to dream--and to triumph against all odds... In the brooding moors above a humble Yorkshire village stood Fairley Hall. There, Emma Harte, its oppressed but resourceful servant girl, acquired a shrewd determination. There, she honed her skills, discovered the meaning of treachery, learned to survive, to become a woman, and vowed to make her mark on the world. In the wake of tragedy she rose from poverty to magnificent wealth as the iron-willed force behind a thriving international enterprise. As one of the richest women in the world Emma Harte has almost everything she fought so hard to achieve--save for the dream of love, and for the passion of the one man she could never have. Through two marriages, two devastating wars, and generations of secrets, Emma's unparalleled success has come with a price. As greed, envy, and revenge consume those clo","Noticia de un secuestro. El ultimo libro periodistico publicado por Gabriel Garcia Marquez fue Noticia de un secuestro, en el que se narra la historia de los secuestros de varias figuras de la politica y la cultura de Colombia por el cartel de Medellin en 1991, uno de los anos de mayor enfrentamiento entre el gobierno y el capo Pablo Escobar. Basado en una minuciosa investigacion que incluyo entrevistas con cada uno de los implicados, Noticia de un secuestrofue, segun Garcia Marquez, uno de los libros mas dificiles y dolorosos de toda su carrera por el estado de corrupcion social y politica que el narcotrafico habia alcanzado a generar en la sociedad colombiana.","The Silent Gondoliers. The return of a beloved classic, from the bestselling author of The Princess Bride! Once upon a time, the gondoliers of Venice possessed the finest voices in all the world. But, alas, few remember those days--and fewer still were ever blessed to hear such glorious singing. No one since has discovered the secret behind the sudden silence of the golden-voiced gondoliers. No one, it seems, but S. Morgenstern. Now Morgenstern recounts the sad and noble story of the ambitions, frustrations, and eventual triumph of Luigi, the gondolier with the goony smile. Here, in this brilliantly illustrated exposition of the surprising facts behind this all-but-forgotten mystery, S. Morgenstern reveals the fascinating truths about John the Bastard, Laura Lorenzini, the centenarian Cristaldi the Pickle, Enrico Caruso, Porky XII, the Great Sorrento, the Queen of Corsica--and of course, the one and only Luigi. His tale will captivate you as much as his song!","Common Ground: A Turbulent Decade in the Lives of Three American Families. Winner of 3 different awards, this is a story of the busing crisis in Boston.","Empires of the Monsoon: A History of the Indian Ocean and Its Invaders. Until Vasco da Gama discovered the sea-route to the East in 1497-9 almost nothing was known in the West of the exotic cultures and wealth of the Indian Ocean and its peoples. It is this civilization and its destruction at the hands of the West that Richard Hall recreates in this book. Hall's history of the exploration and exploitation by Chinese and Arab travellers, and by the Portuguese, Dutch and British alike is one of brutality, betrayal and colonial ambition.","i am 8-bit: Art Inspired by Classic Videogames of the '80s. Pac-Man. Frogger. Super Mario Bros. These classic videogames are burned into the collective consciousness of an entire generation, thanks to countless hours spent at pizza parlors and bowling alleys across the country. Now artists such as Gary Baseman, Tim Biskup, and Ashley Wood put their memories to paper, canvas, and wood to create original works of art inspired by the art of the videogame. Chuck Klosterman shares his thoughts in his distinctively insightful and entertaining style in a foreword on how videogames created a new playground for artistic expression. With more than 100 thought-provoking, amusing, and simply fun pieces of original art, i am 8-bitis a pixilated stroll down memory lane.","The Story of a Seagull and the Cat Who Taught Her to Fly. A cat. A seagull. An impossible task. A worldwide bestseller and the subject of a feature film, THE STORY OF A SEAGULL... is finally out in paperback! Her wings burdened by an oil slick, a seagull struggles to the nearest port to lay her final egg. Exhausted, she lands on a balcony where Zorba the cat is sunning himself. She extracts three extraordinary promises from him: that he will watch over the egg, that he will not EAT the egg, and that, when it's time, he will teach the baby gull to fly. The first two promises are hard enough, but the third one is surely impossible. Isn't it?","Accidental Empires. Computer manufacturing is--after cars, energy production and illegal drugs--the largest industry in the world, and it's one of the last great success stories in American business. Accidental Empiresis the trenchant, vastly readable history of that industry, focusing as much on the astoundingly odd personalities at its core--Steve Jobs, Bill Gates, Mitch Kapor, etc. and the hacker culture they spawned as it does on the remarkable technology they created. Cringely reveals the manias and foibles of these men (they are always men) with deadpan hilarity and cogently demonstrates how their neuroses have shaped the computer business. But Cringely gives us much more than high-tech voyeurism and insider gossip. From the birth of the transistor to the mid-life crisis of the computer industry, he spins a sweeping, uniquely American saga of creativity and ego that is at once uproarious, shocking and inspiring.",Point Of Impact (Bob Lee Swagger #1).,"The Moon Is Down. Taken by surprise, a small coastal town is overrun by an invading army with little resistance. The town is important because it is a port that serves a large coal mine. Colonel Lanser, the head of the invading battalion, along with his staff establishes his HQ in the house of the democratically elected and popular Mayor Orden. As the reality of occupation sinks in and the weather turns bleak, with the snows beginning earlier than usual, the ""simple, peaceful people"" of the town are angry and confused. Colonel Lanser, a veteran of many wars, tries to operate under a veil of civility and law, but in his heart he knows that ""there are no peaceful people"" amongst those whose freedom has been taken away by force. The veil is soon torn apart when Alexander Morden, an erstwhile alderman and ""a free man,"" is ordered to work in the mine. He strikes out at Captain Loft with a pick axe, but Captain Bentick steps into its path and dies of it. After a summary trial, Morden is executed by a firing s","Athena (The Freddie Montgomery Trilogy #3). From the internationally acclaimed author of The Book of Evidence and Ghosts comes a mesmerizing novel that is both a literary thriller and a love story as sumptuously perverse as Lolita. ""A strange and dreamlike book . . . Banville has a breathtaking style.""--Boston Globe.","Girl Interrupted: Screenplay based on the book. Set in the changing world of the 1960s, the motion picture Girl Interrupted is the searing story of Susanna, a young woman who finds herself at a mental institution for troubled young women. Susanna's 'short rest', prescribed by a psychiatrist she had met just once, becomes a strange journey into Alice's Wonderland, as she spends nearly a year both struggling and flirting with the thin line between 'normal' and 'crazy'. Susanna soon realizes how hard it is to get out once she's been committed, and ultimately she has to choose between the world of those who belong on the inside - such as the seductive and dangerous Lisa - and those who can engage with the reality of the outside world."" ""This volume includes storyboards and a discussion by the film's director James Mangold about the film-making process by which this screenplay by James Mangold and Lisa Loomer and Anna Hamilton Phelan was transferred to the screen.","Foundation and Empire (Foundation #2). Led by its founding father, the great psychohistorian Hari Seldon, and taking advantage of its superior science and technology, the Foundation has survived the greed and barbarism of its neighboring warrior-planets. Yet now it must face the Empire--still the mightiest force in the Galaxy even in its death throes. When an ambitious general determined to restore the Empire's glory turns the vast Imperial fleet toward the Foundation, the only hope for the small planet of scholars and scientists lies in the prophecies of Hari Seldon. But not even Hari Seldon could have predicted the birth of the extraordinary creature called The Mule--a mutant intelligence with a power greater than a dozen battle fleets... a power that can turn the strongest-willed human into an obedient slave.","The Best Recipes in the World: More Than 1 000 International Dishes to Cook at Home. The bestselling author of How to Cook Everything has gathered over 1,000 recipes in 52 international menus for the best dishes that people cook every day on every continent in the world--from Spain to India, from Mexico to Thailand. Two-color interior; 100+ b/w drawings.",The Lost Painting.,"By the Light of the Green Star (Green Star #3). Miscast in the role of assassin, inhabiting the stolen body of a stalwart savage, the star-wanderer from Earth found himself in dangers beyond even his wildest imaginings!","Dragons of the Highlord Skies (Dragonlance: The Lost Chronicles #2). The Chronicles retold--from evil's point of view. The story starts in Neraka, where Kitiara uth Matar and Emperor Ariakas hatch a plan to retrieve a dragon orb and thereby destroy Solamnia and the Companions in one fell swoop. But the guardian of the dragon orb, Highlord Feal-Thas, disagrees with this plan. Kitiara must go to Ice Wall to force him to accept Ariakas' will, but her journey does not end there. Thrown out of favor, she conceives a daring plan to enlist the aid of the most feared beings on Krynn--Lord Soth and the Dark Queen. Meanwhile, Laurana and the Companions retrieve the dragon orb and take it back to Solamnia--not knowing that they bring their allies' doom with them. The second volume of a new trilogy from celebrated authors Margaret Weis and Tracy Hickman, The Lost Chronicles details the famed War of the Lance from the perspective of the evil that menaces Krynn. The books are written in such a way that they will be marvelous complements to the original Chronicles, wh","Michael Tolliver Lives (Tales of the City #7). Michael Tolliver, the sweet-spirited Southerner in Armistead Maupin's classic Tales of the City series, is arguably one of the most widely loved characters in contemporary fiction. Now, almost twenty years after ending his ground-breaking saga of San Francisco life, Maupin revisits his all-too-human hero, letting the fifty-five-year-old gardener tell his story in his own voice. Having survived the plague that took so many of his friends and lovers, Michael has learned to embrace the random pleasures of life, the tender alliances that sustain him in the hardest of times. Michael Tolliver Livesfollows its protagonist as he finds love with a younger man, attends to his dying fundamentalist mother in Florida, and finally reaffirms his allegiance to a wise octogenarian who was once his landlady. Though this is a stand-alone novel--accessible to fans of Tales of the City and new readers alike--a reassuring number of familiar faces appear along the way. As usual, the author's mordant wit an",Christopher et son monde 1929-1939.,"Harrington on Hold 'em: Expert Strategy for No-Limit Tournaments Volume II: The Endgame. Poker has taken America by storm. But it's not just any form of poker that has people across the country so excited - it's no-limit hold 'em - the main event game. And now - thanks to televised tournaments - tens of thousands of new players are eager to claim their share of poker glory. In the first volume of this series, Harrington on Hold 'em: Volume I: Strategic Play, Dan Harrington explained how to play in the early phases of tournaments, when most players at the table have plenty of chips, and the blinds and antes are small. This book, Harrington on Hold 'em: Volume II: The Endgameshows you how to play in the later phases of a tournament, when the field has been cut down, the blinds and antes are growing, and the big prize money is within sight. Harrington shows you how to make moves, handle tricky inflection point plays, and maneuver when the tournament is down to its last few players and the end is in sight. He's also included a whole chapter on head-up play, whose strategies up",Essentials of Conservation Biology.,"1968: The Year That Rocked the World. Brings to teeming life the cultural and political history of the pivotal year of 1968, when television's influence on global events first became apparent, and spontaneous uprisings occurred simultaneously around the world. To some, 1968 was the year of sex, drugs, and rock and roll. Yet it was also the year of the Martin Luther King, Jr., and Bobby Kennedy assassinations; the riots at the Democratic National Convention in Chicago; Prague Spring; the antiwar movement and the Tet Offensive; Black Power; the generation gap; avant-garde theater; the upsurge of the women's movement; and the beginning of the end for the Soviet Union. In this monumental book, Mark Kurlansky brings to teeming life the cultural and political history of that pivotal year, when television's influence on global events first became apparent, and spontaneous uprisings occurred simultaneously around the world. Encompassing the diverse realms of youth and music, politics and war, economics and the media, 1968 shows ho","A Game of You (The Sandman #5). Take an apartment house, mix in a drag queen, a lesbian couple, some talking animals, a talking severed head, a confused heroine, and the deadly Cuckoo. Stir vigorously with a hurricane and Morpheus himself and you get this fifth installment of the Sandman series. This story stars Barbie, who first makes an appearance in The Doll's House, who here finds herself a princess in a vivid dreamworld. collecting The Sandman #32-37","An Imaginary Life. In the first century AD, Publius Ovidius Naso, the most urbane and irreverent poet of imperial Rome, was banished to a remote village on the edge of the Black Sea. From these sparse facts, one of our most distinguished novelists has fashioned an audacious and supremely moving work of fiction. Marooned on the edge of the known world, exiled from his native tongue, Ovid depends on the kindness of barbarians who impale their dead and converse with the spirit world. But then he becomes the guardian of a still more savage creature, a feral child who has grown up among deer. What ensues is a luminous encounter between civilization and nature, as enacted by a poet who once catalogued the treacheries of love and a boy who slowly learns how to give it.","Bite Club (Bite Club #1). WHEN THESE CRIMINALS PUT THE BITE ON, THEY'RE NOT KIDDING! From acclaimed writer Howard Chaykin (American Flagg!, Black Kiss, American Century), David Tischman and penciller David Hahn (Private Beach) comes a tale of crime that has real bite! Eduardo del Toro is dead. Unsurprising, to those who knew him simply as the head of one of the West Coast's most powerful criminal organisations, but absolutely shocking to his lieutenants and his son, Leto - who knew he was also a vampire! As the killer used wooden bullets, it's obvious he or she knew the truth too...Now Leto, a former priest thrust into the world of organised crime, must find the killer, and fast - before someone takes a bite out of him! Warning: Adults Only!","Fudge-a-Mania (Fudge #4). Fudge is back--and driving his brother Peter crazy, as usual. This five-year-old human hurricane is more trouble than ever. His latest plan is to marry Peter's sworn enemy, Sheila Tubman (how disgusting!).But Peter's problems are about to get worse. His parents have decided to share a summer house with the Tubmans. And Peter will be stuck with Fudge and Sheila the Cootie Queen for three whole weeks! It's going to be an unforgettable (and hilarious) trip for both families, filled with old friends and new ones, plenty of surprises and lots of laughs. It may not be the vacation of Peter's dreams. But as millions of Judy Blume fans know, it won't be dull. Because with Fudge around, anything can happen...and does!","The Dragon Quintet. Brand-new contributions to the hoard of dragon lore by five top fantasy authors. Orson Scott Card's ""In the Dragon's House"" is a gothic yarn about the mysterious dragon that lives in the wiring of an old house, noticed by a young boy who shares its body in dreams and feels its true size and power. Mercedes Lackey's ""Joust"" tells the story of a slave boy who is chosen to care for a warrior's dragon--a dragon whose secrets may be the key to his freedom. Tanith Lee's ""Love in a Time of Dragons"" is a fable is imbued with her signature atmosphere--Old World, moody, erotic--as a kitchen maid goes a-questing with a handsome champion to slay the local drakkor. Elizabeth Moon's ""Judgment"" tells the tale of a young man forced by lies to flee his village . . . into an adventure of dwarfs and dragonspawn. Michael Swanwick's ""King Dragon"" invokes a truly sinister and repellent creature--a being with the soul of a beast and the body of a machine--part metal, part devil . . . all merciless.","Paddy Clarke Ha Ha Ha. ""Sometimes when nothing happened it was really getting ready to happen."" Irish Paddy rampages through Barrytown streets with like-minded hooligans, playing cowboys, etching names in wet concrete, setting fires. The gang are not bad boys, just restless. When his parents argue, Paddy stays up all night to keep them safe. Change always comes, not always for the better.","The Picture of Dorian Gray. Written in his distinctively dazzling manner, Oscar Wilde's story of a fashionable young man who sells his soul for eternal youth and beauty is the author's most popular work. The tale of Dorian Gray's moral disintegration caused a scandal when it first appeared in 1890, but though Wilde was attacked for the novel's corrupting influence, he responded that there is, in fact, ""a terrible moral in Dorian Gray."" Just a few years later, the book and the aesthetic/moral dilemma it presented became issues in the trials occasioned by Wilde's homosexual liaisons, which resulted in his imprisonment. Of Dorian Gray's relationship to autobiography, Wilde noted in a letter, ""Basil Hallward is what I think I am: Lord Henry what the world thinks me: Dorian what I would like to be--in other ages, perhaps.""",The Wind Thief.,"Tai-Pan (Asian Saga #2). An Alternate Cover of this edition can be found . Set in the turbulent days of the founding of Hong Kong in the 1840s, Tai-Pan is the story of Dirk Struan, the ruler - the Tai-Pan - of the most powerful trading company in the Far East. He is also a pirate, an opium smuggler, and a master manipulator of men. This is the story of his fight to establish himself and his dynasty as the undisputed masters of the Orient.","The Sword of Welleran and Other Stories. An influential fantasy writer and a key figure in the Irish literary renaissance, Edward J. M. D. Plunkett, the eighteenth Baron Dunsany (1878-1957) produced a trove of gems of the imagination. The 12 stories here are some of his best. They will take you on a remarkable journey to places that sometimes seem soft and pleasant, sometimes bleak and ominous -- but always surprising. Ten magnificent illustrations by S. H. Simes, perfectly reflecting Dunsany's mood, accompany such inventive tales as ""The Highwayman,"" ""In the Twilight,"" ""The Ghosts,"" ""The Lord of Cities,"" ""The Doom of La Traviata,"" and the title piece. A delight for lovers of fantasy, the volume will enchant readers of folk tales and science fiction as well.","The Nightmare Years: 1930-40 (20th Century Journey #2). As European correspondent for a number of American newspapers during the 1930s, William L. Shirer witnessed at first hand many of the pivotal events in the buildup to World War II. At the Nuremberg rallies, when Hitler roared through the streets celebrating his newly-won domination of Germany, Shirer was there. In Munich, as Chamberlain abandoned the Czechs, Shirer was there. In Vienna during the night of the Anschluss, in Berlin, when Hitler loosed his Blitzkrieg on Poland and began the war, Shirer was there. Through articles, broadcasts and translations of Hitler's speeches, Shirer tirelessly tried to warn the world of the terrible evil that was growing in Germany. The Nightmare Years, a No. I bestseller when first published in America in 1984, is not only the fascinating eyewitness account of this cataclysmic decade, but also the more personal story of a young American caught in tense and desperate times, struggling to survive and provide a life for himself and his family as the wor","The Wonderful Story of Henry Sugar and Six More. Seven stories of fantasy and fun by the fantastic Roald Dahl. The Boy Who Talked With Animals- in which a stranded sea turtle and a small boy have more in common than meets the eye. The Hitchhiker- proves that in a pinch a professional pickpocket can be the perfect pal. The Mildenhall Treasure- a true tale of fortune found and an opportunity lost. The Wonderful Story of Henry Sugar- in which a modern-day Robin Hood brings joy to the hearts of orphans - and fear to the souls of casino owners around the world.",The Damned (Vampire Huntress #6).,"Pedro Páramo / El Llano en llamas. Pedro Paramoy El Llano en llamasrepresentan dos aportaciones fundamentales a la literatura contemporanea en lengua castellana. Tanto en la novela como en la coleccion de relatos, Juan Rulfo nos transporta con gran maestria de lo real a lo fantastico por medio de un estilo vigoroso y poetico. Profundamente enraizada en lo popular, la narrativa de Juan Rulfo describe con conmovedora fuerza la cotidiana realidad de un mundo a la vez violento y lirico. Si los cuentos de El Llano en llamasdescriben, con exquisita sobriedad, el mundo de los campesinos de Jalisco, Pedro Paramolleva el dolor mexicano a su forma mas universal, trascendiendo -sin olvidarla- la historia real. De ahi que, en su conjunto, la obra de Rulfo sea un clasico de las letras hispanoamericanas contemporaneas.","So Long and Thanks for All the Fish (Hitchhiker's Guide to the Galaxy #4). Back on Earth with nothing more to show for his long, strange trip through time and space than a ratty towel and a plastic shopping bag, Arthur Dent is ready to believe that the past eight years were all just a figment of his stressed-out imagination. But a gift-wrapped fishbowl with a cryptic inscription, the mysterious disappearance of Earth's dolphins, and the discovery of his battered copy of The Hitchhiker's Guide to the Galaxy all conspire to give Arthur the sneaking suspicion that something otherworldly is indeed going on. God only knows what it all means. And fortunately, He left behind a Final Message of explanation. But since it's light-years away from Earth, on a star surrounded by souvenir booths, finding out what it is will mean hitching a ride to the far reaches of space aboard a UFO with a giant robot. But what else is new? LENGTH 4 hrs and 41 mins",The MacMillan Bible Atlas.,"The Last Hero (Discworld #27; Rincewind #7). Cohen the Barbarian. He's been a legend in his own lifetime. He can remember the good old days of high adventure, when being a Hero meant one didn't have to worry about aching backs and lawyers and civilization. But these days, he can't always remember just where he put his teeth...So now, with his ancient (yet still trusty) sword and new walking stick in hand, Cohen gathers a group of his old -- very old -- friends to embark on one final quest. He's going to climb the highest mountain of Discworld and meet the gods.It's time the Last Hero in the world returns what the first hero stole. Trouble is, that'll mean the end of the world, if no one stops him in time.","Sula. This rich and moving novel traces the lives of two black heroines from their close-knit childhood in a small Ohio town, through their sharply divergent paths of womanhood, to their ultimate confrontation and reconciliation. Nel Wright has chosen to stay in the place where she was born, to marry, raise a family, and become a pillar of the black community. Sula Peace has rejected the life Nel has embraced, escaping to college, and submerging herself in city life. When she returns to her roots, it is as a rebel and a wanton seductress. Eventually, both women must face the consequences of their choices. Together, they create an unforgettable portrait of what it means and costs to be a black woman in America.","This Is Push: New Stories from the Edge. An anthology of new writing from the authors published over the first five years of PUSH, timed for the fifth anniversary in February 2007. contributing authors: Patricia McCormick, Kevin Brooks, Chris Wooding, Markus Zusak, Brian James, Kristen Kemp,Eireann Corrigan, Christopher Krovatin, Billy Merrell, Matthue Roth, Kevin Waltman, Samantha Schutz, Coe Booth",The Best Short Stories of Edith Wharton.,"The Bears on Hemlock Mountain. ""There are no bears on Hemlock Mountain, No bears, no bears at all..."" Or so young Jonathan is told by the grown-ups as he sets out alone over Hemlock Mountain. But as Jonathan discovers on that cold winter night, grown-ups don't always know... And there arebears on Hemlock Mountain!","The Hobbit: Or There and Back Again. Bilbo Baggins was a hobbit who wanted to be left alone in quiet comfort. But the wizard Gandalf came along with a band of homeless dwarves. Soon Bilbo was drawn into their quest, facing evil orcs, savage wolves, giant spiders, and worse unknown dangers. Finally, it was Bilbo - alone and unaided - who had to confront the great dragon Smaug, the terror of an entire countryside... This stirring adventure fantasy begins the tale of the hobbits that was continued by J.R.R. Tolkien in his bestselling epic The Lord of the Rings.","Betsy and Tacy Go Over the Big Hill (Betsy-Tacy #3). Betsy, Tacy, and Tib can't wait to be ten. After all, getting two numbers in your age is the beginning of growing up--exciting things are bound to happen. And they do! The girls fall in love with the King of Spain, perform in the School Entertainment, and for the first time, go all the way over the Big Hill to Little Syria by themselves. There Betsy, Tacy, and Tib make new friends and learn a thing or two. They learn that new Americans are sometimes the best Americans. And they learn that they themselves wouldn't want to be anything else. Ever since their first publication in the 1940s, the Betsy-Tacy stories have been loved by each generation of young readers.","More Adventures of the Great Brain (Great Brain #2). Has Tom Jenkins, a.k.a. the Great Brain, given up his con-artist ways for a bicycle? Not for long. Soon the Great Brain is back to his old tricks, swindling and trading, even convincing the whole town there's a prehistoric monster on the loose. But when someone robs the bank, even the police are stumped. Can the Great Brain solve the crime and put the crooks behind bars?","I Don't Know How She Does It (Kate Reddy #1). Come si fa a conciliare il lavoro in una societa finanziaria, un marito talvolta noioso, due bambini piccoli e bisognosi di cure, senza dimenticare un amante online? Sono questi i crucci in cui si dibatte quotidianamente Kate Reddy, trentacinquenne in carriera che conta i minuti come le altre donne contano le calorie, costretta a destreggiarsi tra appuntamenti di lavoro, impegni familiari, massaggi, sedute dal dentista e mille altre faccende. E tutto lascia presagire che, prima o poi, la situazione non potra che precipitare. Ma Kate e una donna che non si abbatte facilmente e ha dalla sua un'arma assolutamente invidiabile: l'ironia. Un romanzo brillante e di grande attualita, dal ritmo convulso e trascinante, che mette in scena un repertorio arguto ed esilarante di situazioni ed eventi in cui molte lettrici non faticheranno a riconoscersi.",Filth.,"Programming Ruby: The Pragmatic Programmers' Guide. Ruby is an increasingly popular, fully object-oriented dynamic programming language, hailed by many practitioners as the finest and most useful language available today. When Ruby first burst onto the scene in the Western world, the Pragmatic Programmers were there with the definitive reference manual, Programming Ruby: The Pragmatic Programmer's Guide. Now in its second edition, author Dave Thomas has expanded the famous Pickaxe book with over 200 pages of new content, covering all the improved language features of Ruby 1.8 and standard library modules. The Pickaxe contains four major sections: An acclaimed tutorial on using Ruby. The definitive reference to the language. Complete documentation on all built-in classes, modules, and methods Complete descriptions of all 98 standard libraries. If you enjoyed the First Edition, you'll appreciate the expanded content, including enhanced coverage of installation, packaging, documenting Ruby source code, threading and synchronization, and en","Slouching Towards Bethlehem. This classic collection of journalism defined the state of America during the upheaval of the sixties revolution. The essays feature barricades and bombings, mass murders and kidnapped heiresses.","Dragondrums (Harper Hall #3). Dragondrumsis the coming of age story of Piemur, a small, quick, clever apprentice at Harper Hall. When Piemur's clear treble voice changes at puberty, his place among the Harpers is no longer certain.","Doctor Faustus. Thomas Mann wrote his last great novel, Doctor Faustus, during his exile from Nazi Germany. Although he already had a long string of masterpieces to his name, in retrospect this seems to be the novel he was born to write. A modern reworking of the Faust legend in which a twentieth-century composer sells his soul to the devil for the artistic power he craves, the story brilliantly interweaves music, philosophy, theology, and politics. Adrian Leverkuhn is a talented young composer who is willing to go to any lengths to reach greater heights of achievement. What he gets is twenty-four years of genius--years of increasingly extraordinary musical innovation intertwined with progressive and destructive madness. A scathing allegory of Germany's renunciation of its own humanity and its embrace of ambition and nihilism, Doctor Faustusis also a profound meditation on artistic genius. Obsessively exploring the evil into which his country had fallen, Mann succeeds as only he could have in charting","The Siren Song (Pirates of the Caribbean: Jack Sparrow #2). Captain Jack Sparrow and his crew have suddenly fallen under a sinister spell. While continuing on their quest for the Sword of Corts, they find themselves entranced by an ethereal song which leads them away from their quarry.",El Mesías: El niño judío.,"Inferno (La Divina Commedia #1). This is the first volume of a new prose translation of Dante's epic - the first in twenty-five years. Robert Durling's translation brings a new power and accuracy to the rendering of Dante's extraordinary vision of Hell, with its terror, pathos, and sardonic humour, and its penetrating analyses of the psychology of sin and the ills that plague society. A newly edited version of the Italian text is on facing pages, and this edition includes fully comprehensive notes as well as sixteen essays on special subjects.",The Diary of Anaïs Nin Vol. 6: 1955-1966.,The Best American Mystery Stories 2003. Mystery maven Michael Connelly has assembled a standout collection of suspense fiction that is sure to please every discerning fan of the genre.,The Mini Zen Gardening Kit.,"The Will to Believe Human Immortality and Other Essays in Popular Philosophy. The work of William James contributed greatly to the burgeoning fields of psychology, particularly in the areas of education, religion, mysticism and pragmatism. The brother of novelist Henry James and of diarist Alice James, William wrote several powerful essays expressing his ideas on the pragmatic theory of truth, sentience, and human beings' right to believe. In ""The Will to Believe"", James suggests that what a person holds to be true or attainable may exist through that person's belief in them, regardless of a lack of physical evidence. In a sense, he advocates the theory of self-fulfilling prophesies. ""Human Immortality"" was a speech delivered during the annual Ingersoll Lectureship, given in memory of George Goldthwait Ingersoll, in 1897 at Harvard University. These works are a prime example of the powerful influence William James has had on modern psychology, and are still recognized today for their brilliance and revolutionary impacts on the field.","The Hunted (Vampire Huntress #3). Each millennium brings a new Neteru, a vampire huntress whose mission is to vanquish evil from the world. This millennium's savior has come in the form of Damali Richards, a hip-hop diva with the heart of a warrior and an attitude to match. But a war in Hell has cost Damali both her powers and her past love, Carlos Rivera. Still, Damali can't let her grief stand in her way. Several gruesome deaths, starting with an American research team, have come to Damali's attention in Brazil. The nature of the deaths leads Damali to believe that the killer is anything but human... Unknown to Damali, the life of Master Vampire Carlos Rivera was saved by a most unlikely group: a band of monks also dedicated to fighting the Dark Realm. In exchange, they want Carlos to help stop the inhuman murders plaguing Brazil-and they will use Damali as bait if they have to. Reunited, Damali and Carlos give in to the erotic passion they have fought for so long. Together, they are a powerful force. But Damali has","The Valley of Horses (Earth's Children #2). Here is an unforgettable odyssey into a world of awesome mysteries, into a distant past made vividly real, a novel that carries us back to the exotic, primeval world we experienced in The Clan Of The Cave Bearand to beautiful Ayla, the bold woman who captivates us with her fierce courage and questing heart. Cruelly cast out by the ancient Clan that adopted her as a child, Ayla now travels alone in a land of glacial cold and terrifying beasts. She is searching for the Others, a race as tall, blond, and blue-eyed as she. But Ayla finds only a hidden valley, where a herd of hardy steppe horses roams. Here, she is granted a unique kinship with animals, enabling her to learn the secrets of fire and raw survival but still, her need for human companionship and love remains unfulfilled. then fate brings her a stranger, handsome Jondolar, and Ayla is torn between fear and hope and carried to an awakening of desire that would shape the future of mankind.""Shiningly intense... Sheer storytelling s","Island: Collected Stories. These slow, beautiful stories - resolute and resonant - are small masterpieces: apparently simple but actually crafted with enormous skill and precision. Set against the unforgiving landscape of Cape Breton, Nova Scotia, they are all concerned with the complexities and mysteries of the human heart, the unbreakable bonds and unbridgeable chasms between man and woman, parent and child. Steeped in memory and myth and washed in the brine and blood of the long battle with the land and the sea, these stories celebrate a passionate engagement with the natural world and a continuity of the generations in the face of transition, in the face of love and loss. As John McGahern says in his eloquent foreword: 'the work has a largeness, of feeling, of intellect, of vision, a great openness and generosity, even an old-fashioned courtliness. The stories stand securely outside of fashion while reflecting deep change'. Bringing together all Alistair MacLeod's short fiction, and including two previously","You Get So Alone at Times That it Just Makes Sense. Charles Bukowski examines cats and his childhood in You Get So Alone at Times, a book of poetry that reveals his tender side. He delves into his youth to analyze its repercussions.","Why Do Men Fall Asleep After Sex? More Questions You'd Only Ask a Doctor After Your Third Whiskey Sour. The Doctor Is In . . . Again! Did the mega-bestselling Why Do Men Have Nipples?exhaust your curiosity about stuff odd, icky, kinky, noxious, libidinous, or just plain embarrassing? No, you say? Well, good, because the doctor and his able-bodied buddy are in! Again! Mark Leyner and Billy Goldberg, M.D., now take on the differences between the sexes--those burning questions like Why doesn't my husband ever listen? or Why does my wife ALWAYS have to pee? And of course, Why do men fall asleep after sex?, plus plenty of others to keep you fully informed. Full of smart and funny answers to an onslaught of new questions, all in a do-ask-we'll-tell spirit that entertain and teaches you something at the same time, Why Do Men Fall Asleep After Sex?offers the real lowdown on everything everyone wants to know about all things anatomical, medical, sexual, nutritional, animal, and mineral, but would only ask a physician after a few too many, like: * Why do you have a ""bionic"" sense of smell when you",Revolutionary Girl Utena Vol. 5: To Blossom.,"The Work of the Sun (The Green Lion Trilogy #3). Once a lonely apprentice, Teleri is now the Queen's own sorceress - and betrothed to the realm's finest knight, Ceilyn mac Cuel. But beneath the seeming peace and happiness of the Kingdom of Celydonn, malevolent hearts scheme against Teleri and her allies.",The Out-of-Sync Child Has Fun: Activities for Kids with Sensory Processing Disorder.,"Phantom (Sword of Truth #10). On the day she awoke remembering nothing but her name, Kahlan Amnell became the most dangerous woman alive. For everyone else, that was the day that the world began to end. As her husband, Richard, desperately searches for his beloved, whom only he remembers, he knows that if she doesn't soon discover who she really is, she will unwittingly become the instrument that will unleash annihilation. But Kahlan learns that if she ever were to unlock the truth of her lost identity, then evil itself would finally possess her, body and soul. If she is to survive in a murky world of deception and betrayal, where life is not only cheap but fleeting, Kahlan must find out why she is such a central figure in the war-torn world swirling around her. What she uncovers are secrets darker than she could ever have imagined.","A Painted House. Until that September of 1952, Luke Chandler had never kept a secret or told a single lie. But in the long, hot summer of his seventh year, two groups of migrant workers -- and two very dangerous men -- came through the Arkansas Delta to work the Chandler cotton farm. And suddenly mysteries are flooding Luke's world. A brutal murder leaves the town seething in gossip and suspicion. A beautiful young woman ignites forbidden passions. A fatherless baby is born ... and someone has begun furtively painting the bare clapboards of the Chandler farmhouse, slowly, painstakingly, bathing the run-down structure in gleaming white. And as young Luke watches the world around him, he unravels secrets that could shatter lives -- and change his family and his town forever.... From the Paperback edition.","Practical Ethics. Peter Singer's remarkably clear and comprehensive Practical Ethics has become a classic introduction to applied ethics since its publication in 1979 and has been translated into many languages. For this second edition the author has revised all the existing chapters, added two new ones, and updated the bibliography. He has also added an appendix describing some of the deep misunderstanding of, and consequent violent reaction to, the book in Germany, Austria, and Switzerland where the book has tested the limits of freedom of speech. The focus of the book is the application of ethics to difficult and controversial social questions: equality and discrimination by race, sex, ability, or species; abortion, euthanasia, and embryo experimentation; the moral status of animals; political violence and civil disobedience; overseas aid and the obligation to assist others; responsibility for the environment; the treatment of refugees. Singer explains and assesses relevant arguments in a perspicuous","Graphic Design: A Concise History (World of Art). This authoritative documentary history begins with the poster and goes on to chart the development of word and image in brochures and magazines, advertising, corporate identity, television, and electronic media, and the impact of technical innovations such as photography and the computer. For the revised edition, a new final chapter covers all the recent international developments in graphic design, including the role of the computer and the Internet in design innovation and globalization. In the last years of the twentieth century, at a time when ""designer products"" and the use of logos grew in importance, the role of graphic designers became more complex, subversive, and sometimes more political--witness Oliviero Toscani's notorious advertisements for Benetton. Digital technology cleared the way for an astonishing proliferation of new typefaces, and words began to take second place to typography in a whole range of magazines and books as designers asserted the primacy of their medium","Love-Lies-Bleeding. Love-Lies-Bleeding, Don DeLillo's third play, is a daring, profoundly compassionate story about life, death, art and human connection. Three people gather to determine the fate of the man who sits in a straight-backed chair saying nothing. He is Alex Macklin, who gave up easel painting to do land art in the southwestern desert, and he is seventy now, helpless in the wake of a second stroke. The people around him are the bearers of a complicated love, his son, his young wife, the older woman -- his wife of years past -- who feels the emotional tenacity of a love long-ended. It is their question to answer. When does life end, and when should it end? In this remote setting, without seeking medical or legal guidance, they move unsteadily toward last things. Luminous, spare, unnervingly comic and always deeply moving, Love-Lies-Bleedingexplores a number of perilous questions about the value of life and how we measure it.",Introduction to Linear Algebra and Differential Equations.,"Anna Karenina. 'Everything is finished. I have nothing but you now. Remember that' Anna Karenina seems to have everything - beauty, wealth, popularity and an adored son. But she feels that her life is empty until the moment she encounters the impetuous officer Count Vronsky. Their subsequent affair scandalizes society and family alike and soon brings jealously and bitterness in its wake. Contrasting with this tale of love and self-destruction is the vividly observed story of Levin, a man striving to find contentment and a meaning to his life - and also a self-portrait of Tolstoy himself.","Patrimony. Patrimony, a true story, touches the emotions as strongly as anything Philip Roth has ever written. Roth watches as his eighty-six-year-old father--famous for his vigor, charm, and his repertoire of Newark recollections--battles with the brain tumor that will kill him. The son, full of love, anxiety, and dread, accompanies his father through each fearful stage of his final ordeal, and, as he does so, discloses the survivalist tenacity that has distinguished his father's long, stubborn engagement with life.","Spunk & Bite: A Writer's Guide to Punchier More Engaging Language & Style. When too tightly leashed, writing chokes and loses its vitality. Although the rules of composition popularized in William Strunk Jr. and E. B. White's Elements of Style have been de rigueurfor decades, they won't exactly set your writing free. To the rescue comes Spunk & Bite, a guide to bold and radiant language and style. The secret, according to bestselling author and former publishing executive Arthur Plotnik, is to embrace those qualities that composition rulebooks sidestep, among them, surprise, personality, engagement, edge, and fearlessness. Drawing on selections from today's most exciting writers: Jonathan Franzen, Sandra Cisneros, Bill Bryson, Maureen Dowd, and many dozens more.Plotnik reveals the tricks and techniques that make prose fresh, forceful, and publishable. For all types of writing: novels, articles, poems, ad copy, blogs, and even e-mails,this uncommon handbook reveals how to make your words so fetching that readers beg for more.","Sandworms of Dune (Dune Chronicles #8). At the end of Frank Herbert's final novel, Chapterhouse: Dune,a ship carrying a crew of refugees escapes into the uncharted galaxy, fleeing from a terrifying, mysterious Enemy. The fugitives used genetic technology to revive key figures from Dune's past--including Paul Muad'Dib and Lady Jessica--to use their special talents to meet the challenges thrown at them. Based directly on Frank Herbert's final outline, which lay hidden in two safe-deposit boxes for a decade, Sandworms of Dune will answer the urgent questions Dune fans have been debating for two decades: the origin of the Honored Matres, the tantalizing future of the planet Arrakis, the final revelation of the Kwisatz Haderach, and the resolution to the war between Man and Machine. This breathtaking new novel in Frank Herbert's Dune series has enough surprises and plot twists to please even the most demanding reader.",Dead Of Winter (Louis Kincaid #2). In Dead of Winter police detective Louis Kincaid investigates a series of gruesome murders - and is drawn into the nightmare mind of a killer.,Love Artist (Harlequin Romance #2860).,Jennifer Hecate Macbeth William McKinley and Me Elizabeth.,The Star-Spangled Banner (Symbols of America).,"Cattus Petasatus: The Cat in the Hat in Latin. He may be an old standby, but he never lets us down. When in doubt, turn to the story of the cat that transformed a dull, rainy afternoon into a magical and just-messy-enough adventure. There's another, hidden adventure, too: this book really will help children learn to read. With his simple and often single-vowel vocabulary, the good Doctor knew what he was doing: hear it, learn it, read it--laughing all the way. The Cat in the Hatis a must for any child's library.","Mind Over Money: How to Match Your Emotional Style to a Winning Financial Strategy. Whether you're a first-time investor or a seasoned hand, Mind over Money provides you with the psycholgocial tools to identify your particular emotional investment style - and to maximize your strengths by overcoming self-defeating investment behaviors. Whether coping with greed at the height of a bull market or dealing with fear when the bears take over, Dr. Schott guides each kind of stock market player - the ""I can't stop worrying"" investor, the gambler, the impulsive investor, and many others - through buying and selling for maximum returns with minimum anxiety. With his sound advice, Dr. Schott puts you a step ahead of other investors by showing you how to gain control of your money and your emotions.",It's Only a Movie Ingrid: Encounters on and Off Screen.,"In the Lake of the Woods. First published to critical acclaim by Houghton Mifflin, Tim O'Brien's celebrated classic In the Lake of the Woods now returns to the house in a gorgeous new Mariner paperback edition. This riveting novel of love and mystery from the author of The Things They Carried examines the lasting impact of the twentieth century's legacy of violence and warfare, both at home and abroad. When long-hidden secrets about the atrocities he committed in Vietnam come to light, a candidate for the U.S. Senate retreats with his wife to a lakeside cabin in northern Minnesota. Within days of their arrival, his wife mysteriously vanishes into the watery wilderness.",The Nature of Play: Great Apes and Humans.,Persuasive Communication.,"Marcel Proust: On Art and Literature 1896-1919. Beginning with the remarkable essay ""Contre Sainte-Beuve"", this surprising and stimulating critical collection includes Proust on the contemporary writing of his era, on painting and painters, and on such literary masters of the nineteenth century as Tolstoy, Goethe, and Stendhal.",魔戒二部曲:雙城奇謀.,"When the Lion Feeds (Courtney #1). Part of the 'Courtney' series 'Something always dies when the lion feeds and yet there is meat for those that follow him.' The lion is Sean, hero of this tremendous drama of the men who took possession of South Africa in the last quarter of the nineteenth century. Sean and his twin-brother Garrick grew up on their father's farm in Natal. The first part of the book deals with his childhood and youth and his longing to become a successful farmer and hard-hitting fighter like his father. The tough life of cattle-farming is brusquely interrupted by the Zulu Wars, when Sean and his brother see fighting for the first time. Wilbur Smith vividly recreates the excitement of the war for the young men-their hope of winning their own cattle, the horror of the massacre at Isandhlwana, the heroism of the defence at Rorkes Drift. 'Witwatersrand' is the name of the second part of this book and it tells the story of Sean's fabulous success in the gold rush and his rich life with Duff Charleywood and th","The Stowaway Solution (On The Run #4). The thrills take to the seas in the latest breakneck-speed adventure from ace storyteller Gordon Korman. Aiden and Meg Falconer are on the hunt for the one man who might be able to free their parents from jail. The hitch? There are plenty of other people on the hunt for THEM, including the FBI and an eerie, hairless killer. After one close call too many, the Falconers find themselves stowed away on a ship -- but the chase doesn't end there. Instead, it moves to close quarters, where every step, every breath, could get them caught.","A Million Little Pieces of Feces. (Selected excerpts and outside reviews can be found by clicking on the blue Python Bonkers hyperlink.) This book may share an alphabetical lineage with the Frey book, but there is no melodramatic redemption here -- it is not a parody of that book but its own entity. As one of the characters from the book says, We're still involved in the commission of the acts that will require redemption -- and those stories are always so much more fun. Bonkers and his bizarre team embarks on a gonzo tear through the streets of Los Angeles and across the pop cultural landscape as well. In his satirical quest for truth in journalism, and life, he must navigate through the many odd tiers of social class, in both the Southern California culture and in his Machiavellian office life and its absurd red and blue political divisions. This is no heart-wrenching tale of excess, its destination is hilarity, so it presses the pedal to the metal and takes no prisoners.","The Agony and the Ecstasy: A Biographical Novel of Michelangelo. Fictional depiction of Michelangelo. Includes bibliography, glossary and a list of the artist's works. From the tumult of life, his brilliant work made a grasp for heaven unmatched in half a millennium. Now, in a special ediction celebrating the 500th anniversary of Michelangelo's David, Irving Stone's towering triumph: The Agony and the Ecstasy The Renaissance was a turbulent time of plotting princes, warring popes, the all-powerful de' Medici family, the fanatical monk Savonarola... and the brilliant young artist Michelangelo Buonarroti. In Irving Stone's classic work, both the artist and the man are brought to life in full, in a compelling portrait of his dangerous, impassioned loves and the God-driven fury from which her wrested the greatest art the world has ever known...",The Complete Idiot's Guide to Business Plans.,Shout Out Loud! 3.,"Welcome to the Great Mysterious. Megastar of stage, screen, and television, Geneva Jordan now has a command performance in Minnesota, where she agrees to look after her thirteen-year-old nephew, a boy with Down's syndrome, while his parents take a long-overdue vacation. Though Geneva and her sister, Ann, are as different as night and day (""I being night, of course, dark and dramatic""), Geneva remembers she had a family before she had a star on her door. But so accustomed is she to playing the lead, finding herself a supporting actress in someone else's life is strange and unexplored territory. Then the discovery of an old scrapbook that she and her sister created long ago starts her thinking of things beyond fame. For The Great Mysterious is a collection of thoughts and feelings dedicated to answering life's big questions--far outside the spotlight's glow. . . .","The Role of the Reader: Explorations in the Semiotics of Texts. .."". not merely interesting and novel, but also exceedingly provocative and heuristically fertile."" The Review of Metaphysics .."". essential reading for anyone interesting in... the new reader-centered forms of criticism."" Library Journal In this erudite and imaginative book, Umberto Eco sets forth a dialectic between open and closed texts. ""","The Sword and the Shield: The Mitrokhin Archive & the Secret History of the KGB. The Sword and the Shieldis based on one of the most extraordinary intelligence coups of recent times: a secret archive of top-level KGB documents smuggled out of the Soviet Union which the FBI has described, after close examination, as the ""most complete and extensive intelligence ever received from any source."" Its presence in the West represents a catastrophic hemorrhage of the KGB's secrets and reveals for the first time the full extent of its worldwide network.Vasili Mitrokhin, a secret dissident who worked in the KGB archive, smuggled out copies of its most highly classified files every day for twelve years. In 1992, a U.S. ally succeeded in exfiltrating the KGB officer and his entire archive out of Moscow. The archive covers the entire period from the Bolshevik Revolution to the 1980s and includes revelations concerning almost every country in the world. But the KGB's main target, of course, was the United States.Though there is top-secret material on almost every country in the","The Ancestor's Tale: A Pilgrimage to the Dawn of Evolution. The renowned biologist and thinker Richard Dawkins presents his most expansive work yet: a comprehensive look at evolution, ranging from the latest developments in the field to his own provocative views. Loosely based on the form of Chaucer's Canterbury Tales, Dawkins's Tale takes us modern humans back through four billion years of life on our planet. As the pilgrimage progresses, we join with other organisms at the forty ""rendezvous points"" where we find a common ancestor. The band of pilgrims swells into a vast crowd as we join first with other primates, then with other mammals, and so on back to the first primordial organism. Dawkins's brilliant, inventive approach allows us to view the connections between ourselves and all other life in a bracingly novel way. It also lets him shed bright new light on the most compelling aspects of evolutionary history and theory: sexual selection, speciation, convergent evolution, extinction, genetics, plate tectonics, geographical dispersal, and m","The Cat Who Knew Shakespeare (Cat Who... #7). There's something rotten in the small town of Pickax--at least to the sensitive noses of newspaperman Jim Qwilleran and his Siamese cats Koko and Yum Yum. An accident has claimed the life of the local paper's eccentric publisher, but to Qwilleran and his feline friends it smells like murder. They soon sniff out a shocking secret, but Koko's snooping into an unusual edition of Shakespeare may prove CATastrophic...because somewhere in Pickax a lady loves not wisely but too well, a widow is scandalously merry, and a stranger has a lean and hungry look. The stage is set for Qwilleran, Koko, Yum Yum, and the second act of murder most meow...",Good Soldier Svejk And His Fortunes In The World.,Disaster!: Catastrophes That Shook the World.,"The Faerie Queene: Books I to III. Part of the Everyman series which has been re-set with wide margins for notes and easy-to-read type. Each title includes a themed introduction by leading authorities on the subject, life-and-times chronology of the author, text summaries, annotated reading lists and selected criticism and notes.","Shopaholic & Baby (Shopaholic #5). Becky Brandon (nee Bloomwood) is pregnant! She couldn't be more overjoyed-especially since discovering that shopping cures morning sickness. Everything has got to be perfect for her baby: from the designer nursery . . . to the latest, coolest pram . . . to the celebrity, must-have obstetrician. But when the celebrity obstetrician turns out to be her husband Luke's glamorous, intellectual ex-girlfriend, Becky's perfect world starts to crumble. She's shopping for two . . . but are there three in her marriage?",Les Fils des ténèbres.,"Hamlet's Mill: An Essay Investigating the Origins of Human Knowledge and Its Transmission Through Myth. Ever since the Greeks coined the language we commonly use for scientific description, mythology & science have developed separately. But what came before the Greeks? What if we could prove that all myths have one common origin in a celestial cosmology? What if the gods, the places they lived & what they did are but ciphers for celestial activity, a language for the perpetuation of complex astronomical data? Drawing on scientific data, historical & literary sources, the authors argue that our myths are the remains of a preliterate astronomy, an exacting science whose power & accuracy were suppressed & then forgotten by an emergent Greco-Roman world view. This fascinating book throws into doubt the self-congratulatory assumptions of Western science about the unfolding development & transmission of knowledge. This is a truly seminal & original thesis, a book that should be read by anyone interested in science, myth & the interactions between the two.","Hemingway's Cats: An Illustrated Biography. This unique biography of Ernest Hemingway, illustrated with more than two hundred photographs, reveals the legendary writer's affinity for the companion animals he kept throughout his lifetime.","The Journals of Ayn Rand. Rarely has a writer and thinker of the stature of Ayn Randafforded us access to her most intimate thoughts and feelings. From Journals of Ayn Rand, we gain an invaluable new understanding and appreciation of the woman, the artist, and the philosopher, and of the enduring legacy she has left us.Rand comes vibrantly to life as an untried screenwriter in Hollywood, creating stories that reflect her youthful vision of the world. We see her painful memories of communist Russia and her struggles to convey them in We the Living. Most fascinating is the intricate, step-by-step process through which she created the plots and characters of her two masterworks, The Fountainheadand Atlas Shrugged, and the years of painstaking research that imbued the novels with their powerful authenticity. Complete with reflections on her legendary screenplay concerning the making of the atomic bomb and tantalizing descriptions of projects cut short by her death, Journals of Ayn Randilluminates the mind and heart",Sister Freaks: Stories of Women Who Gave Up Everything for God. Bestselling author and award-winning singer Rebecca St. James brings together a group of inspirational true stories about young women who gave their all for Jesus.,"A Civil Action. This is the true story of an epic courtroom showdown. Two of the nation's largest corporations stand accused of causing the deaths of children. Representing the bereaved parents, the unlikeliest of heroes emerges: a young, flamboyant Porsche-driving lawyer who hopes to win millions of dollars and ends up nearly losing everything--including his sanity. A Civil Actionis the searing, compelling tale of a legal system gone awry--one in which greed and power fight an unending struggle against justice. Yet it is also the story of how one man can ultimately make a difference. With an unstoppable narrative power reminiscent of Truman Capote's In Cold Blood, A Civil Actionis an unforgettable reading experience that leaves the reader both shocked and enlightened.",The Accidental Time Machine.,"Leadership. Rudolph Giuliani demonstrates how the leadership skills he practices can be employed successfully by anyone who has to run anything. Opens with a gripping account of Giuliani's immediate reaction to the September 11 attacks, including a narrow escape from the original crisis command headquarters, and closes with the efforts to address the aftermath during his remaining tenure.","The Ultimate Hitchhiker's Guide to the Galaxy (Hitchhiker's Guide to the Galaxy #1-5). At last in paperback in one complete volume, here are the five novels from Douglas Adams's Hitchhiker series. ""The Hitchhiker's Guide to the Galaxy"" Seconds before the Earth is demolished for a galactic freeway, Arthur Dent is saved by Ford Prefect, a researcher for the revised Guide. Together they stick out their thumbs to the stars and begin a wild journey through time and space. ""The Restaurant at the End of the Universe"" Facing annihilation at the hands of warmongers is a curious time to crave tea. It could only happen to the cosmically displaced Arthur Dent and his comrades as they hurtle across the galaxy in a desperate search for a place to eat. ""Life, the Universe and Everything"" The unhappy inhabitants of planet Krikkit are sick of looking at the night sky- so they plan to destroy it. The universe, that is. Now only five individuals can avert Armageddon: mild-mannered Arthur Dent and his stalwart crew. ""So Long, and Thanks for All the Fish"" Back on Earth, Arthur Dent is ready","Running from Safety: An Adventure of the Spirit. A half-mile up, suspended by nylon wings and the promise of good lift, life hanges on a pledge. Richard Bach made that pledge, fifty years before, to return to the frightened child he used to be and teach him everything he had learned from living. His promise went unfulfilled until one day, hovering between earth and sky, Richard encounters Dickie Bach, age nine--irrepressible challenger of every notion Richard embraces.... In this exhilarating adventure, Richard and Dickie probe the timeless questions both need answered if either is to be whole: Why does growing spiritually mean never growing up? Can we peacefully coexist with the consequences of our choices? Why is it that only by running from safety can we make our wildest dreams take flight?","Rounding the Mark (Inspector Montalbano #7). The earthy and urbane Sicilian detective Inspector Montalbano casts his spell on more and more fans with each new mystery from Andrea Camilleri.Two seemingly unrelated deaths form the central mystery of Rounding the Mark. They will take Montalbano deep into a secret world of illicit trafficking in human lives, and the investigation will test the limits of his physical, psychological, and moral endurance. Disillusioned and no longer believing in the institution he serves, will he withdraw or delve deeper into his work?","Shooting Stars (Shooting Stars #1-4). FOUR GIRLS TOUCHED BY SPECIAL GIFTS.FOUR STUNNING NEW YORK TIMESBESTSELLERS -- - TOGETHER FOR THE FIRST TIME Cinnamon...She escaped her family's turmoil by dreaming of imaginary worlds. But it's her talent for the theater that gives Cinnamon a chance...to truly escape. Ice...To her mother's dismay, she was a silent wallflower, not a social butterfly. Now, her secret gift -- her solid-gold singing voice -- may become her saving grace. Rose...When she danced, she could dream -- and when her father's secrets threatened to destroy her world, a most unlikely person gives Rose the courage to follow her heart. Honey...Raised on her strict grandfather's farm, her natural-born talent for the violin gave her a new life -- and love with a handsome soul mate. Will a shocking revelation shatter her newfound happiness?","The Fugitive Factor (On The Run #2). Aiden and Meg Falconer are now celebrities ... for all the wrong reasons. It's much harder to be on the run when the whole country's looking for you.... Aiden and Meg Falconer are out to find the evidence that will free their parents from a life sentence in prison. But in order to do that, they have to live undercover. Ever since they broke out of a juvenile detention facility, they've been chased by the FBI ... and by a strange killer they've nicknamed Hairless Joe. Now their story has hit the airwaves, and suddenly everyone is looking for the Falconer kids. They think they can hide with an old family friend ... but when she turns them in and Meg is put in jail, the danger and adventure only increase.","All About Love: New Visions. All About Loveoffers radical new ways to think about love by showing its interconnectedness in our private and public lives. In eleven concise chapters, hooks explains how our everyday notions of what it means to give and receive love often fail us, and how these ideals are established in early childhood. She offers a rethinking of self-love (without narcissism) that will bring peace and compassion to our personal and professional lives, and asserts the place of love to end struggles between individuals, in communities, and among societies. Moving from the cultural to the intimate, hooks notes the ties between love and loss and challenges the prevailing notion that romantic love is the most important love of all. Visionary and original, hooks shows how love heals the wounds we bear as individuals and as a nation, for it is the cornerstone of compassion and forgiveness and holds the power to overcome shame. For readers who have found ongoing delight and wisdom in bell hooks's life and w",A Manual for Living. The essence of perennial Stoic wisdom in aphorisms of stunning insight and simplicity. The West's first and best little instruction book offers thoroughly contemporary and pragmatic reflections on how best to live with serenity and joy.,Menace Invisible (Admiral Arnold Morgan #3).,Madame Bovary.,"To the Last Man: A Novel of the First World War. Jeff Shaara has enthralled readers with his New York Timesbestselling novels set during the Civil War and the American Revolution. Now the acclaimed author turns to World War I, bringing to life the sweeping, emotional story of the war that devastated a generation and established America as a world power.Spring 1916: the horror of a stalemate on Europe's western front. France and Great Britain are on one side of the barbed wire, a fierce German army is on the other. Shaara opens the window onto the otherworldly tableau of trench warfare as seen through the eyes of a typical British soldier who experiences the bizarre and the horrible-a ""Tommy"" whose innocent youth is cast into the hell of a terrifying war.In the skies, meanwhile, technology has provided a devastating new tool, the aeroplane, and with it a different kind of hero emerges-the flying ace. Soaring high above the chaos on the ground, these solitary knights duel in the splendor and terror of the skies, their courage and steel","The Puppet and the Dwarf: The Perverse Core of Christianity. Slavoj Zizek has been called ""an academic rock star"" and ""the wild man of theory""; his writing mixes astonishing erudition and references to pop culture in order to dissect current intellectual pieties. In The Puppet and the Dwarfhe offers a close reading of today's religious constellation from the viewpoint of Lacanian psychoanalysis. He critically confronts both predominant versions of today's spirituality -- New Age gnosticism and deconstructionist-Levinasian Judaism -- and then tries to redeem the ""materialist"" kernel of Christianity. His reading of Christianity is explicitly political, discerning in the Pauline community of believers the first version of a revolutionary collective. Since today even advocates of Enlightenment like Jurgen Habermas acknowledge that a religious vision is needed to ground our ethical and political stance in a ""postsecular"" age, this book -- with a stance that is clearly materialist and at the same time indebted to the core of the Christian legacy -- is","Foxmask (Saga of the Light Isles #2). The Norseman Eyvind, a fierce and loyal Wolfskin, came to a new land on top of the world to find his destiny. With his priestess bride Nessa he saved the land and weathered the treachery that was caused by Eyvind's blood-sworn friend Somerled. After much pain and sorrow the two lovers have managed to create a society where the Norse warriors and the gentle folks of the Orkney Isles live and thrive in contentment at last. A decade and more has passed since the devastating events of the creation of the settlement and Eyvind and Nessa have watched their children grow and thrive in peace. But not all on the islands are content or at peace. Thorvald, the young son of Margaret, widow of the slain king and Eyvind's war leader, has always felt apart and at odds with all he knows. He learns upon his coming to manhood that he is not his father's son but that of the love that Margaret bore for the hated Somerled and that Somerled was not killed for his treachery but sent on a boat, adrift with li","The Outlaws of Sherwood. New York Timesbestselling author Robin McKinley's vivid retelling of the classic story of Robin Hood breathes contemporary life into these beloved adventures, with Marian taking a pivotal role as one of Robin's best archers.",Collected Stories Vol. 2. SECOND VOLUME OF 3 OF THE COLLECTED STORIES OF RICHARD MATHESON,"The Voyage of the Jerle Shannara Trilogy (Voyage of the Jerle Shannara #1-3). TheNew York Times bestselling author of the classic Shannara epic, Terry Brooks, has proven himself one of the modern masters of fantasy, brilliantly creating breathtaking worlds of magic, adventure, and intrigue. Now, for the first time in one marvelous collector's edition hardcover, here's the complete trilogy of the Voyage of the Jerle Shannara: Ilse Witch, Antrax, and Morgawr. In these enchanting novels, a colorful contingent of characters takes to the skies aboard a magnificent airship-the Jerle Shannara-on a quest fraught with wonder and danger. Ilse Witch A half-drowned elf carries a map covered with cryptic symbols-and Walker Boh, the last of the Druids, has the skill to decipher them. But someone else understands the map's significance: the ruthless Ilse Witch, who will stop at nothing to possess it-and the powerful magic it leads to. Antrax While in search of the elusive magic, Walker Boh is lured into a trap-caught in a dark maze beneath a ruined city, stalked by a hungry, u","The American Religion. In this fascinating work of religious criticism, Harold Bloom examines a number of American-born faiths: Pentecostalism, Mormonism, Seventh-day Adventism, Christian Science, Jehovah's Witnesses, Southern Baptism and Fundamentalism, and African-American spirituality. He traces the distinctive features of American religion while asking provocative questions about the role religion plays in American culture and in each American's concept of his or her relationship to God. Bloom finds that our spiritual beliefs provide an exact portrait of our national character.","Death of a Perfect Wife (Hamish Macbeth #4). Hamish Macbeth, the laid-back constable of Lochdubh, Scotland, has a new Land Rover to drive and a Highland summer to savor, but as fast as rain rolls in from the loch, his happy life goes to hell in a handbasket. The trouble begins when his beloved Priscilla Halburton-Smythe returns from London . . . with a fiance on her arm. His miseries multiply when clouds of midges (the diabolical Scottish mosquito) descend on the town. Then a paragon of housewifery named Trixie Thomas moves into Lochdubh with her lapdog husband in tow. The newcomer quickly convinces the local ladies to embrace low-cholesterol meals, ban tobacco, and begin bird-watching. Soon the town's fish-and-chips-loving men are up in arms. Now faced with the trials of his own soul, Macbeth must solve Lochdubh's newest crime-the mysterious poisoning of the perfect wife.","Master of the Night (Mageverse #1). American agent Erin Grayson is assigned to seduce international businessman Reece Champion. But she's been set up. Reece is an agent, too--and a vampire.","Light (Kefahuchi Tract #1). In M. John Harrison's dangerously illuminating new novel, three quantum outlaws face a universe of their own creation, a universe where you make up the rules as you go along and break them just as fast, where there's only one thing more mysterious than darkness. In contemporary London, Michael Kearney is a serial killer on the run from the entity that drives him to kill. He is seeking escape in a future that doesn't yet exist--a quantum world that he and his physicist partner hope to access through a breach of time and space itself. In this future, Seria Mau Genlicher has already sacrificed her body to merge into the systems of her starship, the White Cat. But the ""inhuman"" K-ship captain has gone rogue, pirating the galaxy while playing cat and mouse with the authorities who made her what she is. In this future, Ed Chianese, a drifter and adventurer, has ridden dynaflow ships, run old alien mazes, surfed stellar envelopes. He ""went deep""--and lived to tell about it. Once crazy for lif","Flashman on the March (The Flashman Papers #12). It's 1868 and Sir Harry Flashman, V.C., arch-cad, amorist, cold-headed soldier, and reluctant hero, is back! Fleeing a chain of vengeful pursuers that includes Mexican bandits, the French Foreign Legion, and the relatives of an infatuated Austrian beauty, Flashy is desperate for somewhere to take cover. So desperate, in fact, that he embarks on a perilous secret intelligence-gathering mission to help free a group of Britons being held captive by a tyrannical Abyssinian king. Along the way, of course, are nightmare castles, brigands, massacres, rebellions, orgies, and the loveliest and most lethal women in Africa, all of which will test the limits of the great bounder's talents for knavery, amorous intrigue, and survival. Flashman on the March--the twelfth book in George MacDonald Fraser's ever-beloved, always scandalous Flashman Papers series--is Flashman and Fraser at their best.","Still Here: Embracing Aging Changing and Dying. More than thirty years ago, an entire generation sought a new way of life, looking for fulfillment and meaning in a way no one had before. Leaving his teaching job at Harvard, Ram Dass embodied the role of spiritual seeker, showing others how to find peace within themselves in one of the greatest spiritual classics of the twentieth century, the two-million-copy bestseller Be Here Now. As many of that generation enter the autumn of their years, the big questions of peace and of purpose have returned demanding answers. And once again, Ram Dass blazes a new trail, inviting all to join him on the next stage of the journey.","Ten Plays. The first playwright of democracy, Euripides wrote with enduring insight and biting satire about social and political problems of Athenian life. In contrast to his contemporaries, he brought an exciting--and, to the Greeks, a stunning--realism to the ""pure and noble form"" of tragedy. For the first time in history, heroes and heroines on the stage were not idealized: as Sophocles himself said, Euripides shows people not as they ought to be, but as they actually are.","The Innkeeper's Song. The Innkeeper's Songis the story of young Tikat's search for the lover whose death and resurrection he witnessed. It is a search that will lead him into a world of magic and mystery beyond his comprehension, for his wild ride sets him on the trail of three women who are blessed--or cursed--to undertake an impossible mission of their own. Each of the three has secrets--from the world, from the two others, from herself. Each is followed by demons she can never escape. And all their destinies will be irrevocably linked in a far distant inn, when hunted and hunters finally meet. Karsh, the innkeeper, has no choice but to let the tangled drama unfold beneath his roof; his stable boy, Rosseth, is so mesmerized by the three cloaked women that he is soon finds a way to uncover what is perhaps their deepest secret; and Tikat continues his journey, refusing to let death bring an end to his love. But it is not until the once-powerful man who has called the three women joins their number that the","Berlin: The Downfall 1945. The Red Army had much to avenge when it finally reached the frontiers of the Reich in January 1945. Political instructors rammed home the message of Wehrmacht and SS brutality. The result was the most terrifying example of fire and sword ever known, with tanks crushing refugee columns under their tracks, mass rape, pillage and destruction. Hundreds of thousands of women and children froze to death or were massacred because Nazi Party chiefs, refusing to face defeat, had forbidden the evacuation of civilians. Over seven million fled westwards from the terror of the Red Army. Antony Beevor reconstructs the experiences of those millions caught up in the nightmare of the Third Reich's final collapse, telling a terrible story of pride, stupidity, fanatacism, revenge and savagery, but also one of astonishing endurance, self-sacrifice and survival against all odds.","Fullmetal Alchemist Vol. 8 (Fullmetal Alchemist #8). In an alchemical ritual gone wrong, Edward Elric lost his arm and his leg, and his brother Alphonse became nothing but a soul in a suit of armor. Equipped with mechanical ""auto-mail"" limbs, Edward becomes a state alchemist, seeking the one thing that can restore his and his brother's bodies...the legendary Philosopher's Stone. The raid on the Devil's Nest becomes a slaughter, as government troops - led by the Fuhrer President himself, King Bradley - exterminate the half-human forces of the Homunculus Greed. But will Ed and Al survive the battle unchanged? As Greed is sent to meet his maker, foreign travelers arrive in Amestris, having crossed the great desert from the eastern country of Xing. Their names are Mei and Ling, and they've come for the Philosopher's Stone...and a secret even the Elric brothers never imagined...","La máquina de follar. Bukowski, emparentado desde su independencia con los postulados de la Generacion Beat (aunque fuera de la misma), desarrollaba una literatura contracultural que escarbaba en el lado mas sucio, enmerdado y miserable de la vida, como reflejo de su (nuestra) propia existencia y realidad, a la que satiriza y mortifica de manera insurrecta y provocadora. ""La maquina de follar"" es uno de sus libros mas representativos, una coleccion de relatos en los que el autor, con gran carga autobiografica, lexico instigador y una gradacion agridulce, nos habla de sus cuitas con el sexo y el alcohol. Charles Bukowski se dio a conocer en Espana con sus <>, publicados en dos tomos: Erecciones, eyaculaciones, exhibiciones y La maquina de follar, que le valieron una inmediata popularidad. Su obra ha provocado, entre otros, los siguientes comentarios: <>(New York Review of Books). <>(San Francisco Chronicle). <>(Rolling Stone Magazine). <>(Jim Christy, Toronto Hobe). <>(The New York Times Book Review). <>(Die","The Wild Swans. This novel focuses on two outcasts on two journeys in two eras. In 1689 England, Lady Eliza Grey's 11 brothers are turned into swans. Rejected by her father, Eliza is flown to America by her brothers where she has a chance to save them--until she is accused of witchcraft. In the second story, set in 1981 New York, Elias Latham has AIDS, is banished from his father's house, and must learn to live on the streets. Like Eliza, Elias struggles to understand the suffering he must endure.",Chance (Spenser #23).,"Song of Solomon. Milkman Dead was born shortly after a neighborhood eccentric hurled himself off a rooftop in a vain attempt at flight. For the rest of his life he, too, will be trying to fly. With this brilliantly imagined novel, Toni Morrison transfigures the coming-of-age story as audaciously as Saul Bellow or Gabriel Garcia Marquez. As she follows Milkman from his rustbelt city to the place of his family's origins, Morrison introduces an entire cast of strivers and seeresses, liars and assassins, the inhabitants of a fully realized black world.",My Little House Crafts Book: 18 Projects from Laura Ingalls Wilder's.,"All-of-a-Kind Family Uptown (All-of-a-Kind-Family #4). Based on the author's family and childhood, these charming books capture the everyday life of a home with little money but lots of love and good times to share. Each book shares the ups and downs in the lives of this special family, through the eyes of Ella, Charlotte, Henny, Sarah, Gertie, and their little brother, Charlie.","Letters from Father Christmas. Every December an envelope bearing a stamp from the North Pole would arrive for J.R.R. Tolkien's children. Inside would be a letter in a strange, spidery handwriting and a beautiful colored drawing or some sketches. The letters were from Father Christmas. They told wonderful tales of life at the North Pole: how the reindeer got loose and scattered presents everywhere; how the accident-prone North Polar Bear climbed the North Pole and fell through the roof of Father Christmas's house; how he broke the Moon into four pieces and made the Man in it fall into the back garden; how there were wars with the troublesome horde of goblins who lived in the caves beneath the house. Sometimes the Polar Bear would scrawl a note, and sometimes Ilbereth the Elf would write in his elegant flowing script, adding yet more life and humor to the stories. This updated version contains a wealth of new material, including letters and pictures missing from early editions. No reader, young or old, can fail to be","Miss Happiness and Miss Flower. When Nona is sent from her home in India to live with her relatives in England, she is miserable. Then a box arrives for her and inside are two little Japanese dolls. Nona thinks that they must feel lonely too, so far away from home. Then, Nona has an idea - she will build her dolls the perfect house!",The Progressive Historians: Turner Beard Parrington (Phoenix Book).,"Mr. and Mistress (Dynasties: The Elliotts #5). HIS PREGNANT MISTRESS She was his kept woman...a secret lover living in Las Vegas luxury. It had been an ideal situation until Misty Vale discovered she was carrying Cullen Elliott s child. Misty was not the type of woman a millionaire like Cullen could ever take as his wife. Her past was scandalous...his family above reproach. How could she ever tell him she was having his baby? But Cullen had ways of finding things out. And he wasn t about to allow his heir to be born on the wrong side of the bed! The Elliotts: Mixing business with pleasure!","The Lord of the Rings (The Lord of the Rings #1-3). Celebrated Tolkien illustrator Alan Lee, a conceptual designer for the blockbuster films based on ""The Lord of the Rings"", contributes 50 beautiful full-page, full-color paintings to this elegant three-volume edition. One Ring to rule them all, One Ring to find them, One Ring to bring them all and in the darkness bind them. In ancient times the Rings of Power were crafted by the Elven-smiths, and Sauron, The Dark Lord, forged the One Ring, filling it with his own power so that he could rule all others. But the One Ring was taken from him, and though he sought it throughout Middle-earth, it remained lost to him. After many ages it fell, by chance, into the hands of the hobbit, Bilbo Baggins. From his fastness in the Dark Tower of Mordor, Sauron's power spread far and wide. He gathered all the Great Rings to him, but ever he searched far and wide for the One Ring that would complete his dominion. On his eleventy-first birthday Bilbo disappeared, bequeathing to his young cousin Frodo the","Santa Claus Doesn't Mop Floors (The Adventures of the Bailey School Kids #3). A classic Bailey School Kids adventure is back with a new cover art just in time for the holidays! The fresh look of this long-time favorite makes it the perfect gift this season. There have always been some pretty weird grown ups in Bailey City, but the new custodian at the Bailey School is one of a kind. When he appears out of nowhere just before Christmas to help out at the school, Mr. Jolly's white hair and beard and longing for cold temperatures bring the fabled St. Nick to everyone's mind. Could this man really be Santa Claus? The Bailey School Kids are going to find out!","Tsubasa: RESERVoir CHRoNiCLE Vol. 8. INTO THE MOUTH OF THE BEAST Princess Sakura's memories are scattered across multiple dimensions - and now she and Syaoran are part of an unlikely group of friends traveling from world to world to find them. Unfortunately the memories have been transformed into immensely powerful magical feathers, and those who possess them are seldom willing to give them up without a fight. The quest takes Syaoran's odd bunch to a jungle world where helpless creatures are being terrorized by a sacrifice-demanding beast. When Syaoran, Mokona, and Sakura are separated from Fai and Kurogane, each group finds themselves on opposing sides of a conflict that threatens to destroy the future of a troupe of young women performers...and possibly the entire world!",Dionysiac Poetics and Euripides' Bacchae.,Black on Red: My 44 Years Inside the Soviet Union: An Autobiography.,"The Dastard (Xanth #24). Many malevolent menaces have imperiled the magical land of Xanth in its long and storied history. But none has been as despicably dangerous as the Dastard-a craven miscreant who sold his soul to a detestable demon for the power to erase events. Now the entire future of Xanth is at the mercy of his every whim. Only a young dragon-girl named Becka has the power to stop his devious deeds! Becka is a crossbreed-the daughter of Draco Dragon and a lovely human woman who met, by chance, at a Love Spring. Now fourteen, Becka is beginning to wonder where in Xanth she belongs-on the ground with her mother's people, or flying the skies with her father's kind. So she journeys to the Good Magician Humfrey to discover her True Purpose in life. Much to her astonishment and surprise, the Magician tells her that that a great Destiny awaits her-one that will affect the future of all of Xanth.","Harm's Way. Elgin Collier, AKA Gillian Shelby, is the world's most popular women's erotica author. She has wealth, success and now apparently a stalker who may already have committed murder. Sheila Forbes, Elgin's publisher and best friend hires Campbell Harm, head of Harm's Way Security to protect her and find the stalker. It's hate at first sight for these strong-willed, independent people. He thinks she's a ""pornographer"" and she thinks he's a ""knuckle-dragging Neanderthal."" Sparks fly from their first meeting.",Beach Girls.,"The Trumpet of the Swan. Swan Song Like the rest of his family, Louis is a trumpeter swan. But unlike his four brothers and sisters, Louis can't trumpet joyfully. In fact, he can't even make a sound. And since he can't trumpet his love, the beautiful swan Serena pays absolutely no attention to him. Louis tries everything he can think of to win Serena's affection -- he even goes to school to learn to read and write. But nothing seems to work. Then his father steals him a real brass trumpet. Is a musical instrument the key to winning Louis his love?","Life at Blandings. P.G. Wodehouse entices us into the demesne of Blandings Castle - an apparent paradise where it is eternal high summer, with jolly parties, tea on the lawn and love trysts in the rose garden. But for Clarence, ninth Earl of Emsworth, there is always something to disturb this tranquil scene. This omnibus contains Something Fresh, Summer Lightningand three short stories (The Custody of the Pumpkin, Lord Emsworth Acts for the Bestand Pig-hoo-o-o-o-ey).","Howards End. The self-interested disregard of a dying woman's bequest, an impulsive girl's attempt to help an impoverished clerk, and the marriage between an idealist and a materialist -- all intersect at a Hertfordshire estate called Howards End. The fate of this beloved country home symbolizes the future of England itself in E. M. Forster's exploration of social, economic, and philosophical trends, as exemplified by three families: the Schlegels, symbolizing the idealistic and intellectual aspect of the upper classes; the Wilcoxes, representing upper-class pragmatism and materialism; and the Basts, embodying the aspirations of the lower classes. Published in 1910, Howards Endwon international acclaim for its insightful portrait of English life during the post-Victorian era.",The Cognitive Style of PowerPoint: Pitching Out Corrupts Within.,"A Summer to Remember (Bedwyn Prequels #2). Mary Balogh weaves a tantalizing web of wit and seduction in her new novel--an irresistible tale of two unlikely lovers and one unforgettable summer. Kit Butler is cool, dangerous, one of London's mostinfamous bachelors--marriage is the last thing on his mind. But Kit's family has other plans. Desperate to thwart his father's matchmaking, Kit needs a bride...fast. Enter Miss Lauren Edgeworth. A year after being abandoned at the altar, Lauren has determined that marriage is not for her. When these two fiercely independent souls meet, sparks fly--and a deal is hatched. Lauren will masquerade as Kit's intended if he agrees to provide a passionate, adventurous, unforgettable summer. When summer ends, she will break off the engagement, rendering herself unmarriageable and leaving them both free. Everything is going perfectly--until Kit does the unthinkable: He begins to fall in love. A summer to remember is not enough for him. But how can he convince Lauren to be his...for better, for worse",Star Trek: Logs Five and Six (Star Trek: Log #5-6).,"The Portrait of Dorian Gray. Written in his distinctively dazzling manner, Oscar Wilde's story of a fashionable young man who sells his soul for eternal youth and beauty is the author's most popular work. The tale of Dorian Gray's moral disintegration caused a scandal when it first appeared in 1890, but though Wilde was attacked for the novel's corrupting influence, he responded that there is, in fact, ""a terrible moral in Dorian Gray."" Just a few years later, the book and the aesthetic/moral dilemma it presented became issues in the trials occasioned by Wilde's homosexual liaisons, which resulted in his imprisonment. Of Dorian Gray's relationship to autobiography, Wilde noted in a letter, ""Basil Hallward is what I think I am: Lord Henry what the world thinks me: Dorian what I would like to be--in other ages, perhaps.""","Savage Love: Straight Answers from America's Most Popular Sex Columnist. Welcome to the hot new wave of writing about sex: Savage Love. Columnist Dan Savage has hand-picked over 300 letters from six years worth of ""Savage Love,"" a no-holds-barred syndicated sex-advice column which runs in 16 papers in the United States and Canada, including The Village Voice and the San Francisco Weekly. An original and funny thinker, thrashing around in the playground of human sexuality, Savage advises on a wide range of titillating topics: * What is the best seduction music? * How do I come out to my fundamentalist parents? * What is so wonderful about intercourse, anyway? Forget Anka Radakovich and Isadora Altman. Tune in to Dan Savage as he answers these questions and much more in his own uniquely irreverent and sexually spunky style.","Beloved. Staring unflinchingly into the abyss of slavery, this spellbinding novel transforms history into a story as powerful as Exodus and as intimate as a lullaby. Sethe was born a slave and escaped to Ohio, but eighteen years later she is still not free. She has too many memories of Sweet Home, the beautiful farm where so many hideous things happened. Her new home is haunted by the ghost of her baby, who died nameless and whose tombstone is engraved with a single word: Beloved. Filled with bitter poetry and suspense as taut as a rope, Belovedis a towering achievement by Nobel Prize laureate Toni Morrison.",Conversation: A History of a Declining Art.,"Shoofly Pie (Bug Man #1). Forensic entomologist Nick Polchak (a.k.a. the Bug Man) is hired by thirty-year-old Kathryn Guilford, who is terrified of bugs, to solve her friend's death. When Polchak stumbles into the mystery of how Kathryn's husband was killed years earlier, the action kicks into high gear -- and Polchak finds himself on the run with his client from someone who will do anything to keep a secret. This fast-paced murder mystery is more than the typical ""Christian fiction;""it is good clean fun -- on a thrill ride. Biblical values are implicit rather than explicit, and its fascinating elements provoke thought on a conscience, consequences, and world-views. But mostly, this book is a sizzler of a story that will not let you go.","After. School has become a prison. No one knows why. There's no way to stop it.",Katie's Big Move (Junior Gymnasts #2).,"Pinky Pye (The Pyes #2). In Pinky Pye, the Pye family adds another member. A furious black kitten abandoned on their doorstep endears itself to the whole family--even Ginger--and foreshadows another addition to the Pye family that will change their lives forever.",Charles Dickens: Four Novels: Great Expectations Hard Times A Christmas Carol and A Tale of Two Cities.,The Best American Mystery Stories 2004.,"Batman: Inferno. GOTHAM's never been so scorching, THE JOKER's never been more despicable, and BATMAN's never been in such grave danger. With more than thirty fires raging out of control across the city, GOTHAM is indeed a hell on earth. But torching the population is sma","Crossroads of Twilight (Wheel of Time #10). Rand al'Thor has just cleansed Saidin, an unimaginable feat that is the salvation of every man who can channel, but has the Dragon Reborn spelt his own doom with his actions? Meanwhile Perrin chases after the Aiel with the Prophet's mad army hoping to rescue Faile.","Libraries. Libraries are a book producer's dream. Since nobody photographs libraries as beautifully as Hofer, it seemed only natural to dedicate one of her publications to the splendid and intimate cathedrals of knowledge across Europe and the US: the Escorial in Spain, the Whitney Museum in New york, Villa Medici in Rome, the Hamburg University library, the Bibliotheque nationale de France in Paris, the Museo Archeologico in Madrid, and Pierpont Morgan Library in New York, to name just a few. Almost completely devoid of people, as is Candida Hofer's trademark, these pictures radiate a comforting serenity that is exceptional in contemporary photography. Now available in an unchanged reprint.","A Dance to the Music of Time: 3rd Movement (A Dance to the Music of Time #7-9). Anthony Powell's universally acclaimed epic encompasses a four-volume panorama of twentieth century London. Hailed by Time as ""brilliant literary comedy as well as a brilliant sketch of the times,"" A Dance to the Music of Time opens just after World War I. Amid the fever of the 1920s and the first chill of the 1930s, Nick Jenkins and his friends confront sex, society, business, and art. In the second volume they move to London in a whirl of marriage and adulteries, fashions and frivolities, personal triumphs and failures. These books ""provide an unsurpassed picture, at once gay and melancholy, of social and artistic life in Britain between the wars"" (Arthur Schlesinger, Jr.). The third volume follows Nick into army life and evokes London during the blitz. In the climactic final volume, England has won the war and must now count the losses. In this third volume of A Dance to the Music of Time, we again meet Widmerpool, doggedly rising in rank; Jenkins, shifted from one dismal army post","The View from Castle Rock. A powerful new collection from one of our most beloved, admired, and honored writers. In stories that are more personal than any that she's written before, Alice Munro pieces her family's history into gloriously imagined fiction. A young boy is taken to Edinburgh's Castle Rock, where his father assures him that on a clear day he can see America, and he catches a glimpse of his father's dream. In stories that follow, as the dream becomes a reality, two sisters-in-law experience very different kinds of passion on the long voyage to the New World; a baby is lost and magically reappears on a journey from an Illinois homestead to the Canadian border. Other stories take place in more familiar Munro territory, the towns and countryside around Lake Huron, where the past shows through the present like the traces of a glacier on the landscape and strong emotions stir just beneath the surface of ordinary comings and goings. First love flowers under the apple tree, while a stronger emotion present","Journey to the Center of the Earth (Extraordinary Voyages #3). The intrepid Professor Liedenbrock embarks upon the strangest expedition of the nineteenth century: a journey down an extinct Icelandic volcano to the Earth's very core. In his quest to penetrate the planet's primordial secrets, the geologist--together with his quaking nephew Axel and their devoted guide, Hans--discovers an astonishing subterranean menagerie of prehistoric proportions. Verne's imaginative tale is at once the ultimate science fiction adventure and a reflection on the perfectibility of human understanding and the psychology of the questor.",A Song Of Stone.,"Tomorrow's Promise. It happened the way attraction happens best: suddenly, passionately, unforgettably. They were speaking at the same congressional hearing about Vietnam soldiers listed MIA. Keely's husband was among the missing soldiers. He had been her childhood sweetheart, her future and then the unanswered question Keely had dedicated her life to solving. Now there was Dax. Could she allow herself to love again and still honor the past?","The Plague Dogs. Richard Adams, the author of Watership Down, creates a lyrical and engrossing tale, a remarkable journey into the hearts and minds of two canine heroes, Snitter and Rowf. After being horribly mistreated at a government animal research facility, Snitter and Rowf escape into the isolation--and terror--of the wilderness. Aided only by a fox they call ''the Tod,'' the two dogs must struggle to survive in their new environment. When the starving dogs attack some sheep, they are labeled ferocious man-eating monsters, setting off a great dog hunt that is later intensified by the fear that the dogs could be carriers of the bubonic plague.",D.B..,Sam And The Firefly (Beginner Books).,"The Shadow of the Wind (The Cemetery of Forgotten Books #1). Barcelona, 1945: A city slowly heals in the aftermath of the Spanish Civil War, and Daniel, an antiquarian book dealer's son who mourns the loss of his mother, finds solace in a mysterious book entitled The Shadow of the Wind, by one Julian Carax. But when he sets out to find the author's other works, he makes a shocking discovery: someone has been systematically destroying every copy of every book Carax has written. In fact, Daniel may have the last of Carax's books in existence. Soon Daniel's seemingly innocent quest opens a door into one of Barcelona's darkest secrets--an epic story of murder, madness, and doomed love.","La regina dei dannati. Da 6000 anni Akasha e Enkil, sovrani dei dannati, dormono un sonno profondissimo, una sorte di ""vita sospesa"" tra la vita e la morte. Qualcuno ha vegliato su di loro per tutti questi secoli, perche, se uno di loro dovesse morire, tutti i vampiri della terra scomparirebbero. Ma ora Lestat, il vampiro divenuto una famosa rockstar degli anni '80, ha risvegliato la ""regina dei dannati"", pronta a realizzare il suo sogno di dominio assoluto sugli uomini e sui vampiri al fianco di Lestat di cui e perdutamente innamorata. Solo le due gemelle vampire dai capelli di fuoco potranno salvare il mondo e sopraffare la potente e sanguinaria sovrana.","Silas Marner. Embittered by a false accusation, disappointed in friendship and love, the weaver Silas Marner retreats into a long twilight life alone with his loom. . . and his gold. Silas hoards a treasure that kills his spirit until fate steals it from him and replaces it with a golden-haired founding child. Where she came from, who her parents were, and who really stole the gold are the secrets that permeate this moving tale of guilt and innocence. A moral allegory of the redemptive power of love, it is also a finely drawn picture of early nineteenth-century England in the days when spinning wheels hummed busily in the farmhouses, and of a simple way of life that was soon to disappear.","The Castle of the Silver Wheel. The science of wizardry is high and cold and brilliant, all mind and no heart. But the old Earth magics make the blood run like liquid silver in the veins . . . For young Gwenlliant of Celydonn, stones speak, trees talk, stars sing. The ancient Wild Magic runs through her veins . . . and the discipline of wizardry is the key to her power. As a new and very young bride, she is brought to Mochdreff--a place of danger and blight. Only her knowledge of the Wild Magic--and of herself--can save her . . . if she can uncover the secret legacy of the Castle of the Silver Wheel.","The Sound and the Fury. ""I give you the mausoleum of all hope and desire. . . . I give it to you not that you may remember time, but that you might forget it now and then for a moment and not spend all of your breath trying to conquer it. Because no battle is ever won he said. They are not even fought. The field only reveals to man his own folly and despair, and victory is an illusion of philosophers and fools."" --from The Sound and the Fury The Sound and the Furyis the tragedy of the Compson family, featuring some of the most memorable characters in literature: beautiful, rebellious Caddy; the manchild Benjy; haunted, neurotic Quentin; Jason, the brutal cynic; and Dilsey, their black servant. Their lives fragmented and harrowed by history and legacy, the character's voices and actions mesh to create what is arguably Faulkner's masterpiece and one of the greatest novels of the twentieth century.","Straight Talking. Number one best-seller Jane Green - author of Babyville and The Love Verb - explores the hectic life of a single career girl looking to find love in her hilarious first novel Straight Talking. This could be about your best friend. Or your girlfriend. Or it might be about you. Are you Tasha - single and searching? Or her best friends: Andy, hooked on passion; Mel, stuck in a relationship with a bastard; or Emma, endlessly waiting for her other half to propose? Do you know an Andrew - suave, good-looking and head over heels in love . . . with himself? Or a Simon - allergic to commitment and dangerously treacherous? Or even an Adam - handsome, kind, humorous, but too nice to be sexy? Follow them all in their journey to find fulfillment and love. 'Funny, honest, superb' Company 'Any woman who's suffered a relationship trauma will die for this book. Wickedly funny, will make you squeal with laughter' Cosmopolitan Visit www.janegreen.com Jane Green's novels, including The Other Woman, Jemim",Pedro Paramo / El Llano En Llamas.,"Safe Conduct: An Autobiography and Other Writings. The awarding of the 1958 Nobel Prize for Literature to Boris Pasternak and the subsequent calumny of his fellow citizens in Soviet Russia focused unusual attention on Pasternak's great novel, Dr. Zhivago, and the small body of his other work. At the time, the latter was only available (in any language, as far as is known) in New Directions' Selected Writingsof Pasternak, first published in 1949. The 1958 edition was issued with a new introduction by Babette Deutsch under the title of the book's main component, Pasternak's autobiography. Written when he was forty, Safe Conductpuzzled many readers in Russia and when it appeared in English, because its isolated sharp impressions and juxtapositions seem to deny chronology, but at least one critic recognized it as ""the most original of autobiographies, employing a new technique of great important."" Also included is a group of remarkable short stories, translated by Robert Payne, dealing with the mysteries of life and art, and a selection of",The Fantastic Vampire: Studies in the Children of the Night: Selected Essays from the Eighteenth International Conference on the Fantastic in the Arts.,"The Last Dance (87th Precinct #50). In this city, you can get anything done for a price. If you want someone's eyeglasses smashed, it'll cost you a subway token. You want his fingernails pulled out? His legs broken? You want him hurt so bad he's an invalid his whole life? You want him...killed? Let me talk to someone. It can be done. The hanging death of a nondescript old man in a shabby little apartment in a meager section of the 87th Precinct is nothing much in this city, especially to detectives Carella and Meyer. But everyone has a story, and this old man's story stood to make some people a lot of money. His story takes Carella, Meyer, Brown, and Weeks on a search through Isola's seedy strip clubs and to the bright lights of the theater district. There they discover an upcoming musical with ties to a mysterious drug -- and a killer who stays until the last dance.",Absent in the Spring and Other Novels (Mary Westmacott Omnibus #1--Absent in the Spring Giant's Bread The Rose and the Yew Tree).,V..,"Caesar's Commentaries: On the Gallic War & On the Civil War. This complete edition of Caesar's Commentaries contains all eight of Caesar's books on the Gallic War as well as all three of his books on the Civil War masterfully translated into English by W. A. MacDevitt. Caesar's Commentaries are an outstanding account of extraordinary events by one of the most exceptional men in the history of the world. Julius Caesar himself was one of the most eminent writers of the age in which he lived. His commentaries on the Gallic and Civil Wars are written with a purity, precision, and perspicuity, which command approbation. They are elegant without affectation, and beautiful without ornament. Of the two books which he composed on Analogy, and those under the title of Anti-Cato, scarcely any fragment is preserved; but we may be assured of the justness of the observations on language, which were made by an author so much distinguished by the excellence of his own compositions. His poem entitled The Journey, which was probably an entertaining narrative, is","The Early History of God: Yahweh and the Other Deities in Ancient Israel. Foreword by Patrick D. Miller In this remarkable, acclaimed history of the development of monotheism, Mark S. Smith explains how Israel's religion evolved from a cult of Yahweh as a primary deity among many to a fully defined monotheistic faith with Yahweh as sole god. Repudiating the traditional view that Israel was fundamentally different in culture and religion from its Canaanite neighbors, this provocative book argues that Israelite religion developed, at least in part, from the religion of Canaan. Drawing on epigraphic and archaeological sources, Smith cogently demonstrates that Israelite religion was not an outright rejection of foreign, pagan gods but, rather, was the result of the progressive establishment of a distinctly separate Israelite identity. This thoroughly revised second edition ofThe Early History of Godincludes a substantial new preface by the author and a foreword by Patrick D. Miller.","The Scarlet Letter and Other Writings. An Alternate Cover edition for this ISBN can be found . Hailed by Henry James as ""the finest piece of imaginative writing yet put forth in the country, "" Nathaniel Hawthorne's ""The Scarlet Letter"" reaches to our nation's historical and moral roots for the material of great tragedy. Set in an early New England colony, the novel shows the terrible impact a single, passionate act has on the lives of three members of the community: the defiant Hester Prynne; the fiery, tortured Reverend Dimmesdale; and the obsessed, vengeful Chillingworth. With ""The Scarlet Letter,"" Hawthorne became the first American novelist to forge from our Puritan heritage a universal classic, a masterful exploration of humanity's unending struggle with sin, guilt and pride.",Poetry for Young People: Edward Lear.,"Go Down Moses. ""I believe that man will not merely endure: he will prevail. He is immortal, not because he alone among creatures has an inexhaustible voice, but because he has a soul, a spirit capable of compassion and sacrifice and endurance."" --William Faulkner, on receiving the Nobel Prize Go Down, Mosesis composed of seven interrelated stories, all of them set in Faulkner's mythic Yoknapatawpha County. From a variety of perspectives, Faulkner examines the complex, changing relationships between blacks and whites, between man and nature, weaving a cohesive novel rich in implication and insight.","The Aeneid. In dramatic and narrative power, Virgil's Aeneidis the equal of its great Homeric predecessors, The Iliadand The Odyssey. It surpasses them, however, in the intense sympathy it displays for its human actors-a sympathy that makes events such as Aeneas's escape from Troy and search for a new homeland, the passion and the death of Dido, the defeat of Turnus, and the founding of Rome among the most memorable in literature. This celebrated translation by Robert Fitzgerald does full justice to the speed, clarity, and stately grandeur of the Roman Empire's most magnificent literary work of art. (Book Jacket Status: Jacketed)","In Pharaoh's Army: Memories of the Lost War. Whether he is evoking the blind carnage of the Tet offensive, the theatrics of his fellow Americans, or the unraveling of his own illusions, Wolff brings to this work the same uncanny eye for detail, pitiless candor and mordant wit that made This Boy's Life a modern classic.","Hegemony or Survival: America's Quest for Global Dominance. From the world's foremost intellectual activist, an irrefutable analysis of America's pursuit of total domination & the catastrophic consequences that are sure to follow. The USA is in the process of staking out not just the globe but the last unarmed spot in the neighborhood--the heavens--as a militarized sphere of influence. Earth & its skies are, for the Bush administration, the final frontiers of imperial control. Hegemony or Survivalinvestigates how we came to this, what kind of peril we're in & why rulers are willing to jeopardize the future of our species. With his trademark logic, Chomsky dissects the quest for global supremacy, tracking the government's aggressive pursuit of policies intended to achieve ""full spectrum dominance"" at any cost. He lays out how the various strands of policy--militarization of space, the ballistic-missile defense program, unilateralism, dismantling of international agreements & the response to the Iraqi crisis--cohere in a hegemonic drive threateni","Achilles in Vietnam: Combat Trauma and the Undoing of Character. In this strikingly original and groundbreaking book, Dr. Shay examines the psychological devastation of war by comparing the soldiers of Homer's Iliadwith Vietnam veterans suffering from post-traumatic stress disorder. Although the Iliadwas written twenty-seven centuries ago it has much to teach about combat trauma, as do the more recent, compelling voices and experiences of Vietnam vets.","In the Green Star's Glow (Green Star #5). He was Karn, the savage of the sky-high trees. He was protector and defender of the princess Niamh, whose very city was lost in the mapless jungles of the world under the Green Star. But he was also an Earthling, whose helpless body lay in suspended animation in a guarded mansion in New England. It was his alien mind that drove Karn through perils that no other would dare. But dare he must--for though that alien planet was replete with dangers and treachery, with lost castles of forgotten science and armies of mindless monsters, there was a cause to be won and a love to be rescued.","Terraforming Earth. ""Jack Williamson, the dean of American science fiction writers, has written some of the most imaginative and exciting speculative fiction published during the nine decades of his extraordinary career. With Terraforming Earth, this Grand Master of the field tackles nothing less than the fate of the earth after a catastrophic impact by a huge meteor. Unlike the scores of novels, films, and television miniseries that dwell on how humanity might deal with such an event, this novel takes us past the terrible collision and far into the future, with a group of people who escape the debacle to establish a safe harbor on Earth's Moon. From Tycho Base they can monitor conditions on the devastated earth. Years pass, then centuries, and then millenia, as they, their cloned children, and their children's children through successive generations undertake the enormous challenge of restoring life to a barren planet.""--BOOK JACKET.","Strangers on a Train. The world of Patricia Highsmith has always been filled with ordinary people, all of whom are capable of very ordinary crimes. This theme was present from the beginning, when her debut novel, Strangers on a Train, galvanized the reading public. Here we encounter Guy Haines and Charles Anthony Bruno, passengers on the same train. But while Guy is a successful architect in the midst of a divorce, Bruno turns out to be a sadistic psychopath who manipulates Guy into swapping murders with him. ""Some people are better off dead,"" Bruno remarks, ""like your wife and my father, for instance."" As Bruno carries out his twisted plan, Guy is trapped in Highsmith's perilous world, where, under the right circumstances, anybody is capable of murder. The inspiration for Alfred Hitchcock's classic 1951 film, Strangers on a Trainlaunched Highsmith on a prolific career of noir fiction, proving her a master at depicting the unsettling forces that tremble beneath the surface of everyday contemporary life.","Public Secrets. From Nora Roberts, the incomparable New York Times bestselling author of Sanctuary and Montana Sky, comes a mesmerizing story of a woman trapped by a dangerous desire and threatened by a murderous secret, one of Nora Roberts's most popular novels. Emma. Beautiful, intelligent, radiantly talented, she lives in a star-studded world of wealth and privilege. But she is about to discover that fame is no protection at all when someone wants you dead.... All she has to do is close her eyes and she remembers the magical day her father came into her life. She was a frightened, lonely toddler, hiding, always hiding, from her mother's wrath, when Brian McAvoy swept in and took her away. She didn't know then that she was his illegitimate daughter or that she had just been rescued by pop music's rising new star. All she knew was that suddenly she felt safe. And there wasn't only Brian...his new wife became Emma's loving stepmother, his band members became her surrogate uncles, and soon Emma even ha","The Shadow Party: How George Soros Hillary Clinton and Sixties Radicals Seized Control of the Democratic Party. America is under attack. Its institutions and values are under daily assault. But the principal culprits are not foreign terrorists. They are influential and powerful Americans secretly stirring up disunion and disloyalty in the shifting shadows of the Democratic Party. Radical infiltrators have been quietly transforming America's societal, cultural, and political institutions for more than a generation. Now, backed by George Soros, they are ready to make their move. These ""progressive"" extremists have gained control over a once-respectable but now desperate and dangerous political party. From their perches in the Democratic hierarchy, they seek to undermine the war on terror, destabilize the nation, and effect radical ""regime change"" in America. With startling new evidence, New York Timesbest-selling authors David Horowitz and Richard Poe shine the light on the Shadow Party, exposing its methods, tactics, and ultimate agenda.","Like Shaking Hands with God: A Conversation About Writing. In this elegantly produced, extended conversation celebrating the writing craft, Kurt Vonnegut and acclaimed ""Grand Central Winter"" author Lee Stringer explore what it means to be a writer -- and what it means to be human. It is an increasingly rare occasion these days to find two writers willing to speak candidly, thoughtfully, and concretely about the intersection of life and art. And that these two writers happen to be Kurt Vonnegut and Lee Stringer makes ""Like Shaking Hands With God"" a truly historic and joyous occasion. The setting is a bookstore in New York City in October 1998. Before a crowd of several hundred, Vonnegut and Stringer jump into the aesthetic fray, taking up humanity, writing, salvation, art, and the challenge of living, day to day. As Vonnegut would say, ""It was a magical evening."" A passionate and inspiring discourse between two extraordinary writers, ""Like Shaking Hands With God"" is a book for anyone interested in why the simple act of writing things down can b","Dragons of Eden: Speculations on the Evolution of Human Intelligence. Dr Carl Sagan takes us on a great reading adventure, offering his vivid and startling insights into the brains of humans & beasts, the origin of human intelligence, the function of our most haunting legends and their amazing links to recent discoveries.","The Lives of Animals. The idea of human cruelty to animals so consumes novelist Elizabeth Costello in her later years that she can no longer look another person in the eye: humans, especially meat-eating ones, seem to her to be conspirators in a crime of stupefying magnitude taking place on farms and in slaughterhouses, factories, and laboratories across the world. Costello's son, a physics professor, admires her literary achievements, but dreads his mother's lecturing on animal rights at the college where he teaches. His colleagues resist her argument that human reason is overrated and that the inability to reason does not diminish the value of life; his wife denounces his mother's vegetarianism as a form of moral superiority. At the dinner that follows her first lecture, the guests confront Costello with a range of sympathetic and skeptical reactions to issues of animal rights, touching on broad philosophical, anthropological, and religious perspectives. Painfully for her son, Elizabeth Costello seems off","The Secret History. Under the influence of their charismatic classics professor, a group of clever, eccentric misfits at an elite New England college discover a way of thinking and living that is a world away from the humdrum existence of their contemporaries. But when they go beyond the boundaries of normal morality they slip gradually from obsession to corruption and betrayal, and at last - inexorably - into evil.",Numerical Recipes in C: The Art of Scientific Computing. This is the greatly revised and expanded Second Edition of the hugely popular,"The Hobbit or There and Back Again. This 1997 edition, illustrated by Alan Lee commemorates the 60th anniversary of ""The Hobbit."" Bilbo Baggins is a reasonably typical hobbit: fond of sleeping, eating, drinking, parties and presents. However, it is his destiny to travel to the dwarflands in the east, to help slay the dragon Smaug. His quest takes him through enchanted forests, spiders' lairs, and under the Misty Mountains, where he comes across the vile Gollum, and tricks him out of his 'Precious' - a ring that makes its bearer invisible, and wields a terrible power of its own. J.R.R. Tolkien's own description for the original edition: ""If you care for journeys there and back, out of the comfortable Western world, over the edge of the Wild, and home again, and can take an interest in a humble hero (blessed with a little wisdom and a little courage and considerable good luck), here is a record of such a journey and such a traveler. The period is the ancient time between the age of Faerie and the dominion of men, when the",A World Lit Only by Fire.,Anthony Powell: A Life.,"Motorcycle Basics Techbook. All common engine, chassis and electrical systems fully explained and illustrated. Topics covered include engine cycles and layouts, carburettors and fuel injection, ignition systems, clutches, gearbox, engine lubrication and cooling, wheels, tires, braking systems, suspension, steering, handling, design and electrical systems.","The Infinite Plan. Quittant le monde sud-americain qui lui est familier, la romanciere de La Maison aux espritsnous entraine ici dans la Californie des trente dernieres annees, sur les pas de deux familles d'errants : celle du predicateur Reeves qui parcourt l'Ouest a bord d'un camion vetuste, prechant la recherche du <>qui justifie nos existences ; et celle des Morales, immigres mexicains d'un quartier de Los Angeles hante par la violence.Principal personnage du livre, le jeune Gregory Reeves verra mourir son pere et parviendra a construire une carriere d'avocat, mais aussi et surtout a trouver la clef du <>qui n'est autre que l'amour. Guerre du Vietnam, mouvement hippie, avenement du feminisme, liberation des moeurs, banalisation de la drogue, exclusion : c'est de notre temps que nous parle, au travers de personnages d'une merveilleuse humanite, une romanciere decidement de stature mondiale.",My First Word Touch and Feel.,"Orion (Orion #1). John O'Ryan is not a god...not exactly. He is an eternal warrior destined to combat the Dark Lord through all time for dominion of the Earth. Follow him, servant of a great race, as he battles his enemy down the halls of time, from the caves of our ancestors to the final confrontation under the hammer of nuclear annihilation.","The Career Programmer: Guerilla Tactics for an Imperfect World (Expert's Voice). The Barnes & Noble Review For years, The Career Programmerhas been the definitive guide for programmers who want to succeed in the workplace. It's still that. But in today's age of outsourcing, when you're lucky to even havea pointy-haired boss, it's more. This Second Edition is a terrific guide to getting hired, evading age discrimination, even hanging out your own shingle and ""flying solo."" Christopher Duncan's the same joy to read as ever: wry, sometimes flat-out funny, always real. You can tell he's been there. Isthere. You can tell it when he's writing about wrangling corporate bureaucracies, or managing your time, or estimates, or requirements, or QA. You can tell it when he's writing about resumes, job interviewing, or overcoming fear of change. If you want to take control of your programming career, instead of griping about it (or mourning it), read this book. Bill Camarda, from the March 2006href=""http://www.barnesandnoble.com/newslet...Only","Tolkien's Modern Middle Ages. J.R.R. Tolkien delved into the Middle Ages to create a critique of the modern world in his fantasy, yet did so in a form of modernist literature with postmodern implications and huge commercial success. These essays examine that paradox and its significance in understanding the intersection between traditionalist and counter-culture criticisms of the modern. The approach helps to explain the popularity of his works, the way in which they continue to be brought into dialogue with twenty-first century issues, and their contested literary significance in the academy.","Buffy the Vampire Slayer and Philosophy: Fear and Trembling in Sunnydale. Twenty-three essays by young professional philosophers examine crucial ethical and metaphysical aspects of the Buffyverse (the world of Buffy). Though the show already attracted much scholarly attention, this is the first book to fully disinter the intellectual issues. Designed by Whedon as a multilevel story with most of its meanings deeply buried in heaps of heavy irony, Buffy the Vampire Slayer has replaced The X-Files as the show that explains to Americans the nature of the powerful forces of evil continually threatening to surge into our world of everyday decency and overwhelm it. In the tradition of the classic horror films Buffy the Vampire Slayer addresses ethical issues that have long fascinated audiences. This book draws out the ethical and metaphysical lessons from a pop-culture phenomenon.","The Complete Fiction of Nella Larsen: Passing Quicksand and the Stories. A light-skinned beauty who spends years passing for white finds herself dangerously drawn to an old friend's Harlem neighborhood. A restless young mulatto tries desperately to find a comfortable place in a world in which she sees herself as a perpetual outsider. A mother's confrontation with tragedy tests her loyalty to her race. The gifted Harlem Renaissance writer Nella Larsen wrote compelling dramas about the black middle class that featured sensitive, spirited heroines struggling to find a place where they belonged. Passing, Larsen's best-known work, is a disturbing story about the unraveling lives of two childhood friends, one of whom turns her back on her past and marries a white bigot. Just as disquieting is the portrait in Quicksandof Helga Crane, half black and half white, who can't escape her loneliness no matter where and with whom she lives. Race and marriage offer few securities her or in the other stories in a collection that is compellingly readable, rich in psychologica","A History of God: The 4 000-Year Quest of Judaism Christianity and Islam. Armstrong, a British journalist and former nun, guides us along one of the most elusive and fascinating quests of all time--the search for God. Like all beloved historians, Armstrong entertains us with deft storytelling, astounding research, and makes us feel a greater appreciation for the present because we better understand our past. Be warned: A History of Godis not a tidy linear history. Rather, we learn that the definition of God is constantly being repeated, altered, discarded, and resurrected through the ages, responding to its followers' practical concerns rather than to mystical mandates. Armstrong also shows us how Judaism, Christianity, and Islam have overlapped and influenced one another, gently challenging the secularist history of each of these religions. --Gail Hudson","Island Of Bones (Louis Kincaid #5). In the wake of a hurricane, a tiny beached skull washes up in front of Detective Louis Kincaid's cottage. Days later, the bullet-ridden body of woman surfaces on a nearby beach. She has no identification...except for a unique ring carved out of bone on her finger. Sensing a connection between the dead woman and the skull he's found, Louis starts investigating. His search for the truth will lead him down a trail hidden secrets and lies to face utter evil on a lonely island where treachery never dies...and the living never escape.","Fullmetal Alchemist Vol. 3 (Fullmetal Alchemist #3). Accompanied by their bodyguard, Alex Louis Armstrong, our heroes seek out their closest childhood friend, mechanic Winry Rockbell, to fix their battered ""auto-mail"" bodyparts. Soon their quest for the Philosopher's Stone takes them to the great central library, where the Stone's formula may be hidden...if the mysterious figure named Lust doesn't get there first! But the secret of the Philosopher's Stone may be even more frightening than the beings who guard it...","Peace. Aristophanes' Peace was performed at the City Dionysia in Athens in 421 B.C. as a decade-long war with Sparta seemed finally to be drawing to an end, and is one of only eleven extant plays by the greatest Old Comic poet. Olson's edition of the play, which replaces Platnauer's of 1969, is based on a complete new collation of the manuscripts, many of which have never been adequately reported before. The extensive commentary explores matters of all sorts, but it focuses in particular on the realities of daily life in classical Athens and also examines the practical problems of staging. The substantial introduction includes essays on Aristophanes' early career, the politics of the Greek world in the late 420s, and the poet's theology.","Valley Of Silence (Circle Trilogy #3). Step by step, destiny has brought a sorcerer, a witch, a warrior, a scholar, a shape-shifter and a lost soul to the land of Geall - and to the Valley of Silence. It is here that their voices will ring out against those of evil. The fate of every world hangs in balance, as humanity rallies behind a newly crowned queen in a clash with a vampire who has reigned for centuries...","The Scarpetta Collection: All That Remains / Cruel & Unusual (Kay Scarpetta #3 #4). International publishing sensation Patricia Cornwell's legion of readers will welcome this omnibus edition of her third and fourth mega-best-selling Kay Scarpetta novels, All That Remainsand Cruel & Unusual.These two novels, presented here complete and unabridged, helped to confirm Patricia Cornwell's status as queen of the forensic thriller and one of the world's top bestselling authors. All That Remains: A killer is stalking young lovers. Taking their lives and leaving just a tantalizing clue. When the bodies of young couples start turning up in remote woodland areas, Dr. Kay Scarpetta's task as Virginia's Chief Medical Examiner is made more difficult by the effects of the elements. Eight times she must write that the cause of death is undetermined. But when the latest young woman to go missing is the daughter of one of America's most powerful women, Kay also finds herself prey to political pressure and press harassment. The killings must stop. Now. Scarpetta soon discovers that some","The Manolo Matrix (Codebreaker Trilogy #2). USA Today bestselling author of The Givenchy Code Julie Kenner reloads for her second novel of high-heeled thrills as another woman gets pulled into a mysterious world of extreme gaming where she must play or die. Aspiring actress Jennifer Crane knows all about games--the games girls play to get a guy; the games actresses play to land a part; and the good old game of credit-card roulette. (How else is a girl supposed to afford her shoes?) But she never expected to be playing a game with life-or-death consequences. Unable to successfully score an acting gig, she has, instead, been cast in the role of reluctant bodyguard to a real-life assassin's target--a dashing FBI agent of all people!--and must embark with him upon a scavenger hunt across Manhattan in search of the ultimate prize: survival. Before this, Jenn's definition of fighting dirty has been elbowing her way to the front of the line at a Manolo sample sale. Now, if she wants to stay alive, she's going to have to learn a few new",We Were Not Like Other People.,"Love Overboard. Dear Reader: In a previous life, before the time of Plum, I wrote twelve short romance novels. Red-hot screwball comedies, each and every one of them. Nine of these stories were originally published by the Loveswept line between the years 1988 and 1992. All went out-of-print immediately and then could be found only at used bookstores and yard sales. I'm excited to tell you that those nine stories are now beingre-released by HarperCollins. Love Overboardis second inthe lineup, and it's presented here in almost original form. I've done only minor editing to correct some embarrassing bloopers missed the first time around. And I changed the title because I thought the original title (Ivan Takes a Wife) was boring! Love Overboardis a romantic tale about a handsome ship'scaptain; a wary wench from Jersey City; a hundred-year-old, two-masted schooner; and an entire town of shoemakers. There's some getting naked, some blueberry pie, more getting naked, and at the end . . . Okay, I won't tell y","The Return of the Shadow: The History of The Lord of the Rings Part One (The History of Middle-Earth #6). In this sixth volume of The History of Middle-earth the story reaches The Lord of the Rings. In The Return of the Shadow (an abandoned title for the first volume) Christopher Tolkien describes, with full citation of the earliest notes, outline plans, and narrative drafts, the intricate evolution of The Fellowship of the Ring and the gradual emergence of the conceptions that transformed what J.R.R. Tolkien for long believed would be a far shorter book, 'a sequel to The Hobbit'. The enlargement of Bilbo's 'magic ring' into the supremely potent and dangerous Ruling Ring of the Dark Lord is traced and the precise moment is seen when, in an astonishing and unforeseen leap in the earliest narrative, a Black Rider first rode into the Shire, his significance still unknown. The character of the hobbit called Trotter (afterwards Strider or Aragorn) is developed while his indentity remains an absolute puzzle, and the suspicion only very slowly becomes certainty that he must after all be a Man. Th","A Portrait of the Artist as a Young Man. A masterpiece of modern fiction, James Joyce's semiautobiographical first novel follows Stephen Dedalus, a sensitive and creative youth who rebels against his family, his education, and his country by committing himself to the artist's life. ""I will not serve,"" vows Dedalus, ""that in which I no longer believe....and I will try to express myself in some mode of life or art as freely as I can."" To Dedalus, the artist is like God--one who ""remains within or behind or beyond or above his handiwork, invisible, refined out of existence, indifferent, paring his fingernails."" Joyce's rendering of the impressions of childhood broke ground in the use of language. ""He took on the almost infinite English language,"" Jorge Luis Borges once said. ""He wrote in a language invented by himself....Joyce brought a new music to English."" A bold literary experiment, this classic has had a huge and lasting influence on the contemporary novel.","Forever.... The bed is brass, covered with a patchwork quilt, and ""nice and firm,"" Michael says, ""in case you're interested."" Katherine is interested. From this night on their life is a love story. But Katherine is in love with love, and Michael is in love with Katherine. Judy Blume has written a blithe and telling novel about young people in love--not only Katherine and Michael, but their suburban friends as well. ""No preaching (Blume never does), but the message is clear; no hedging (Blume never does), but a candid account by Kath gives intimate details of a first sexual relationship. The characters and dialogue are equally natural and vigorous, the language uncensored, the depiction of family relationships outstanding."" - The Bulletin of the Center for Children's Books.","Chronicles: Volume One. ""I'd come from a long ways off and had started a long ways down. But now destiny was about to manifest itself. I felt like it was looking right at me and nobody else.""So writes Bob Dylan in Chronicles: Volume One,his remarkable book exploring critical junctures in his life and career. Through Dylan's eyes and open mind, we see Greenwich Village, circa 1961, when he first arrives in Manhattan. Dylan's New York is a magical city of possibilities -- smoky, nightlong parties; literary awakenings; transient loves and unbreakable friendships. Elegiac observations are punctuated by jabs of memories, penetrating and tough. With the book's side trips to New Orleans, Woodstock, Minnesota and points west, Chronicles: Volume Oneis an intimate and intensely personal recollection of extraordinary times. By turns revealing, poetical, passionate and witty, Chronicles: Volume Oneis a mesmerizing window on Bob Dylan's thoughts and influences. Dylan's voice is distinctively American: generous of spirit,","The Heights of Courage: A Tank Leader's War on the Golan. In October 1973, the State of Israel was invaded by Egyptian and Syrian forces. Despite early losses, Israel managed to outfight its opponents. The brief and bloody Yom Kippur War stands as a unique chapter in modern military history. Fought primarily by tank units, the war became a story not only of battle strategy and tactics, but also one of human discipline, endurance and sacrifice. While many historians have chronicled the events of the Yom Kippur War, few have been seasoned by actual combat. Avigdor Kahalani, commander of a tank battalion on the Golan Heights during the Yom Kippur War, describes this experience in ""The Heights of Courage."" Beginning with a description of the initial Syrian offensive, he recounts the personal endeavors of his men, their fears and their ambitions, as well as their emotional and physical hardships. His stark account traces the efforts of the Israel Armored Corps as they struggle to overcome extreme difficulties and setbacks. The author describes the",The Parrot-Head Companion: An Insider's Guide to Jimmy Buffett.,The Feynman Lectures on Physics Vols 3-4.,"Landing. A delightful, old-fashioned love story with a uniquely twenty-first-century twist, Landingis a romantic comedy that explores the pleasures and sorrows of long-distance relationships--the kind millions of us now maintain mostly by plane, phone, and Internet. Sile is a stylish citizen of the new Dublin, a veteran flight attendant who's traveled the world. Jude is a twenty-five-year-old archivist, stubbornly attached to the tiny town of Ireland, Ontario, in which she was born and raised. On her first plane trip, Jude's and Sile's worlds touch and snag at Heathrow Airport. In the course of the next year, their lives, and those of their friends and families, will be drawn into a new, shaky orbit. This sparkling, lively story explores age-old questions: Does where you live matter more than who you live with? What would you give up for love, and would you be a fool to do so?","The Toy Maker: The Life and Times of Inventor Frank Hornby. Frank Hornby was a humble desk clerk working for a firm of meat importers in Liverpool when he stumbled across the idea that was to make him famous, that was to inhabit the imaginations of children around the world, and yet was to become one of the most influential tools for the development of inventions as diverse as computers and atomic weapons. His invention was Meccano - one of the most successful toys of all time. The toy was the foundation of a business empire that covered seven continents, and promised to last forever. With his later inventions - the Hornby Trainset and the Dinky Toy - the company's founder was soon revered by small boys the world over. He was quite simply the God of Meccanoland. For the first time, Frank Hornby, a man of genius, an inventor of magic and toymaker through generations, is given the biography he deserves.","Teaching with the Brain in Mind. This completely revised and updated ASCD best-seller is loaded with ideas for how to improve student achievement and create a more effective classroom by applying brain research to your teaching. Renowned author and educator Eric Jensen translates the latest scientific findings into effective instructional strategies, including: Why to start every class with opening activities that put students into receptive states. How to tempt students to focus more attention on learning tasks. Why to use compelling questions, personal stories, controversies, and celebrations in your teaching. How seating, room temperature, lighting, and noise affect learning. Why making your classroom a more positive social experience improves achievement.","Outside the Dog Museum (Answered Prayers #4). Harry Radcliffe is a brilliant prize-winning architect---witty and remarkable. He's also a self-serving opportunist, ready to take advantage of whatever situations, and women, come his way. But now, newly divorced and having had an inexplicable nervous breakdown, Harry is being wooed by the extremely wealthy Sultan of Saru to design a billion-dollar dog museum. In Saru, he finds himself in a world even madder and more unreal than the one he left behind, and as his obsession grows, the powers of magic weave around him, and the implications of his strange undertaking grow more ominous and astounding....","Drop The Rock: Removing Character Defects - Steps Six and Seven. Resentment. Fear. Self-Pity. Intolerance. Anger. This cast of character defects will undermine the best-laid plans for recovery from addiction. It's not uncommon for individuals in recovery to hang on to negative, self-defeating behaviors after they've given up their addiction. These are the ""rocks"" that can sink recovery - or, at the least, block further progress. With more than 100,000 copies sold, Drop the Rock is the definitive guide to removing character defects that can prevent gratifying, long-standing recovery. Based on the Twelve Step program, particularly the principles behind Steps Six and Seven, Drop the Rock combines personal stories, practical advice, and powerful insights to help readers move forward in recovery. The second edition features additional stories, a reference section, and information about starting a Drop the Rock study group.","Miami Blues (Hoke Moseley #1). After a brutal day investigating a quadruple homicide, Detective Hoke Moseley settles into his room at the un-illustrious El Dorado Hotel and nurses a glass of brandy. With his guard down, he doesn't think twice when he hears a knock on the door. The next day, he finds himself in the hospital, badly bruised and with his jaw wired shut. He thinks back over ten years of cases wondering who would want to beat him into unconsciousness, steal his gun and badge, and most importantly, make off with his prized dentures. But the pieces never quite add up to revenge, and the few clues he has keep connecting to a dimwitted hooker, and her ex-con boyfriend and the bizarre murder of a Hare Krishna pimp. Chronically depressed, constantly strapped for money, always willing to bend the rules a bit, Hoke Moseley is hardly what you think of as the perfect cop, but he is one of the the greatest detective creations of all time.","Turtles & Tortoises for Dummies. Coexisting with a turtle or tortoise may not be a warm and fuzzy experience, but it definitely has its rewards. And with more than 250 species to choose from, you're bound to find one that's right for you. Looks-wise, they can range from very plain and unadorned to a brightly colored and embellished with every manner of crest, crown, spike, and dewlap. As for personality, you'd be amazed at how very different they can be, ranging from shy and withdrawn, to outgoing and friendly, to outright aggressive. And when it comes to longevity, well, let's just say that when you commit to a turtle or tortoise, you're in it for the long haul. For example, the standard American box turtle can live more than 125 years, a leopard tortoise has a life span of up to 100 years, and an aldabran tortoise can live to be more than 200 years old! This fun guide will help you choose the perfect turtle or tortoise for your lifestyle and give it the care it needs to thrive. Turtle and tortoise expert Liz Palika","The Best of the Spirit. Written by Will Eisner Art and cover by Eisner DC Comics is proud to present its first-ever collection celebrating the greatest stories by comics mastermind Will Eisner starring one of the most indelible characters ever created: The Spirit! THE BEST OF THE SPIRIT reprints 22 Spirit sections from 1940-1950, featuring famous first appearances, classic confrontations, human interest tales, and all those magnificent splash pages! Eisner's blue-suit-clad, fedora-wearing crimefighter starred in hundreds of newspaper adventure stories that thrilled readers with Eisner's groundbreaking style. Eisner was a master of utilizing the comics format to its greatest strengths, and his Spirit stories are some of his finest examples! This volume also features an introduction by New York Times best-selling novelist Neil Gaiman (THE SANDMAN).","The Stand: Das letzte Gefecht. Aus einem Militarlabor bricht ein mutiertes Grippevirus aus, das eine Ansteckungswahrscheinlichkeit von 99,4 % hat. Obwohl die gesamte Handlung in den USA spielt, wird im Buch geschildert, dass sich die Auswirkungen des Grippeviruses auf gesamten Planeten ausbreiten. Fast die gesamte amerikanische Bevolkerung wird ausgeloscht. Einige Tausende uberleben jedoch. In einer Welt voller verwester Leichen mussen die Uberlebenden versuchen auszukommen ohne die Annehmlichkeiten, die ihnen das Leben vor der Katastrophe geboten hat. Naturlich ist dies keine einfache Sache. Die Uberlebenden traumen von einer afroamerikanischen Frau, die sich selber Mutter Abagail nennt. Abagail Freemantle bittet die Uberlebenden zu ihr nach Nebraska zu kommen, wo sie nahe eines Maisfeldes lebt. Viele folgen ihrer Bitte und ziehen zu der religiosen Frau nach Heminford Home, ein Ort in Nebraska. Andere Uberlebende traumen von dem dunklen Mann, welcher sich zu der Zeit unter anderem Randall Flagg nennt. Flaggs Gefolg",Homo faber: Ein Bericht..,"The Big Bad Wolf (Alex Cross #9). Alex Cross battles the most ruthless and powerful killer he has ever encountered - a predator known only as ""the Wolf. ""Alex Cross's first case since joining the FBI has his new colleagues stymied. Across the country, men and women are being kidnapped in broad daylight and then disappearing completely. These people are not being taken for ransom, Alex realizes. They are being bought and sold. And it looks as if a shadowy figure called the Wolf - a master criminal who has brought a new reign of terror to organize crime - is behind this business in which ordinary men and women are sold as slaves. Even as he admires the FBI's vast resources, Alex grows impatient with the Bureau's clumsiness and caution when it is time to move. A lone wolf himself, he has to go out on his own in order to track the Wolf and try to rescue some of the victims while they are still alive. As the case boils over, Alex is in hot water at home too. His ex-fiancee, Christine Johnson, comes back into his life - and","Shadow & Claw (The Book of the New Sun #1-2). The Book of the New Sunis unanimously acclaimed as Gene Wolfe's most remarkable work, hailed as ""a masterpiece of science fantasy comparable in importance to the major works of Tolkien and Lewis"" by Publishers Weekly, and ""one of the most ambitious works of speculative fiction in the twentieth century"" by The Magazine of Fantasy and Science Fiction. Shadow & Clawbrings together the first two books of the tetralogy in one volume: The Shadow of the Tortureris the tale of young Severian, an apprentice in the Guild of Torturers on the world called Urth, exiled for committing the ultimate sin of his profession -- showing mercy toward his victim. The Claw of the Conciliatorcontinues the saga of Severian, banished from his home, as he undertakes a mythic quest to discover the awesome power of an ancient relic, and learn the truth about his hidden destiny.","Daniel Deronda. Daniel Deronda, by George Eliot, is part of the Barnes & Noble Classicsseries, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and pages of carefully crafted extras. Here are some of the remarkable features of Barnes & Noble Classics: All editions are beautifully designed and are printed to superior specifications; some include illustrations of historical interest. Barnes & Noble Classics pulls together a constellation of influences--biographical, historical, and literary--to enrich each reader's understanding of these enduring works. George Eliot's last, most ambitious novel, Daniel Derondaaroused scandal when it first appeared in 1876. What begins as a passionate love story takes a surprising turn into the hidden world of the early Zionist movement in Victorian England. The story opens memorably at a roulette table, where we first meet the young and idealistic Daniel Deronda and the enchanting Gwe","Trickster's Choice (Daughter of the Lioness #1). Alianne is the teenage daughter of the famed Alanna, the Lioness of Tortall. Aly is bold and brave like her mother, but she has no wish to become a knight. Instead she longs to follow in her father's footsteps as a spy, an ambition her parents vehemently oppose. After a furious argument Aly runs away, with disastrous consequences. Captured and sold as a slave in the Copper Isles, she discovers that this whole nightmare has not come about by chance - the Trickster God, Kyprioth, has plans for her...",らんま½ 12.,"The Girl in the Flammable Skirt. A grief-stricken librarian decides to have sex with every man who enters her library. A half-mad, unbearably beautiful heiress follows a strange man home, seeking total sexual abandon: He only wants to watch game shows. A woman falls in love with a hunchback; when his deformity turns out to be a prosthesis, she leaves him. A wife whose husband has just returned from the war struggles with the heartrending question: Can she still love a man who has no lips? Aimee Bender's stories portray a world twisted on its axis, a place of unconvention that resembles nothing so much as real life, in all its grotesque, beautiful glory. From the first line of each tale she lets us know she is telling a story, but the moral is never quite what we expect. Bender's prose is glorious: musical and colloquial, inimitable and heartrending. Here are stories of men and women whose lives are shaped--and sometimes twisted--by the power of extraordinary desires, erotic and otherwise. The Girl in the Flammable Ski","An Unfortunate Woman. Richard Brautigan's last novel, published in the U.S. for the first time Richard Brautigan was an original--brilliant and wickedly funny, his books resonated with the sixties, making him an overnight counterculture hero. Taken in its entirety, his body of work reveals an artistry that outreaches the literary fads that so quickly swept him up. Dark, funny, and exquisitely haunting, his final book-length fiction explores the fragile, mysterious shadowland surrounding death. Told with classic Brautigan wit, poetic style, and mordant irony, An Unfortunate Womanassumes the form of a peripatetic journal chronicling the protagonist's travels and oblique ruminations on the suicide of one woman, and a close friend's death from cancer. After Richard Brautigan committed suicide, his only child, Ianthe Brautigan, found among his possessions the manuscript of An Unfortunate Woman. It had been completed over a year earlier, but was still unpublished at the time of his death. Finding it was too painf","Road Trip USA: Cross-Country Adventures on America's Two-Lane Highways. Now in its 10th anniversary edition, the best-selling Road Trip USAis better than ever. Inside you'll find cross-country routes and road-tested advice for adventurers who want to see part of America that the interstates have left behind. Mile-by-mile highlights celebrate major cities, obscure towns, popular attractions, roadside curiosities (if you're looking for the world's largest jackalope, you're in luck), local lore, and oddball trivia. Exit the interstates and create your own driving adventures on America's two-land scenic highways. Features include: a flexible network of route combinations, extensively cross-referenced to allow for hundreds of possible itineraries; essential tips for the road: call letters of lively radio stations, Survival Guides for two dozen cities, and details on where to eat and sleep; and more than 125 detailed maps.","Marcel Proust: A Life. Marcel Proust portrays in abundant detail the life and extraordinary times of one of the greatest literary voices of the twentieth century. Based on a wealth of letters, memoirs, notebooks, and manuscripts previously unavailable, the book examines Proust's character and development as an artist, the glittering Parisian world of which he was a part, and the passions that enabled him to write his masterpiece, In Search of Lost Time. Selected as a New York Times Book Review Notable Book and a Los Angeles Times Book Review Best Book for 2000. Winner of Foreword Magazine's Book of the Year Award in the Non-Fiction category (2000).","Teen Angst? Naaah.... ""The events in these stories are real. Some names have been changed so I don't get yelled at."" Ned Vizzini writes about the weird, funny, and sometimes mortifying moments that made up his teen years. With wit, irony, and honesty, ""Teen Angst? Naaah . . ."" invites you into his world of school, parents, street people, rock bands, friends, fame, camp, sex (sort of), Cancun (almost), prom, beer, Nintendo, the cool (and almost cool), and more. A Holden Caulfield for Generation Y, Ned Vizzini is an original voice to be reckoned with, read, and enjoyed.","Turn of the Cards (Wild Cards #12). Pursued by the CIA, the DEA, and the Wild Card mistress of the winds, Mistral, renegade biochemist Mark Meadows uses the three personalities buried in his psyche in order to outwit his pursuers.","Wizard's First Rule (Sword of Truth #1). The masterpiece that started The New York Times bestselling epic Sword of Truth. In the aftermath of the brutal murder of his father, a mysterious woman, Kahlan Amnell, appears in Richard Cypher's forest sanctuary seeking help . . . and more. His world, his very beliefs, are shattered when ancient debts come due with thundering violence. In a dark age it takes courage to live, and more than mere courage to challenge those who hold dominion, Richard and Kahlan must take up that challenge or become the next victims. Beyond awaits a bewitching land where even the best of their hearts could betray them. Yet, Richard fears nothing so much as what secrets his sword might reveal about his own soul. Falling in love would destroy them--for reasons Richard can't imagine and Kahlan dare not say. In their darkest hour, hunted relentlessly, tormented by treachery and loss, Kahlan calls upon Richard to reach beyond his sword--to invoke within himself something more noble. Neither knows that the rule","Misty of Chincoteague (Misty #1). On an island off the coasts of Virginia and Maryland lives a centuries-old band of wild ponies. Among them is the most mysterious of all, Phantom, a rarely seen mare that eludes all efforts to capture her--that is, until a young boy and girl lay eyes on her and determine that they can't live without her. The frenzied roundup that follows on the next ""Pony Penning Day"" does indeed bring Phantom into their lives, in a way they never would have suspected. Phantom would forever be a creature of the wild. But her gentle, loyal colt Misty is another story altogether.","First Snow on Fuji. The stories of Yasunari Kawabata evoke an unmistakably Japanese atmosphere in their delicacy, understatement, and lyrical description. Like his later works, First Snow on Fuji is concerned with forms of presence and absence, with being, with memory and loss of memory, with not-knowing. Kawabata lets us slide into the lives of people who have been shattered by war, loss, and longing. These stories are beautiful and melancholy, filled with Kawabata's unerring vision of human psychology. First Snow on Fuji was originally published in Japan in 1958, ten years before Kawabata received the Nobel Prize. Kawabata selected the stories for this collection himself, and the result is a stunning assembly of disparate moods and genres. This new edition is the first to be published in English.","Specials (Uglies #3). ""Special Circumstances"": The words have sent chills down Tally's spine since her days as a repellent, rebellious ugly. Back then Specials were a sinister rumor -- frighteningly beautiful, dangerously strong, breathtakingly fast. Ordinary pretties might live their whole lives without meeting a Special. But Tally's never been ordinary. And now she's been turned into one of them: a superamped fighting machine, engineered to keep the uglies down and the pretties stupid. The strength, the speed, and the clarity and focus of her thinking feel better than anything Tally can remember. Most of the time. One tiny corner of her heart still remembers something more. Still, it's easy to tune that out -- until Tally's offered a chance to stamp out the rebels of the New Smoke permanently. It all comes down to one last choice: listen to that tiny, faint heartbeat, or carry out the mission she's programmed to complete. Either way, Tally's world will never be the same.","The Boggart. ""Centuries old and housands of miles from home"". When Emily and Jess Volnik's family inherits a remote, crumbling Scottish castle, they also inherit the Boggart - an invisible, mischievous spirit who's been playing tricks on residents of Castle Keep for generations. Then the Boggart is trapped in a rolltop desk and inadvertently shipped to the Volniks' home in Toronto, where nothing will ever be the same - for the Volniks or the Boggart. In a world that doesn't believe in magic, the Boggart's pranks wreak havoc. And even the newfound joys of peanut butter and pizza and fudge sauce eventually wear thin for the Boggart. He wants to go home - but his only hope lies in a risky and daring blend of modern technology and ancient magic.","Parachutes & Kisses. Married (again) and divorced (again), Isadora Wing is a single parent with an adorable daughter, an irritating ex-husband, and a startling assortment of suitors: an unorthodox rabbi, a poetic disc jockey, the son of a famous sex therapist, and WASPily handsomest of all: Berkeley Sproul III. Isadora and Berkeley meet at a health club, and he's fourteen years her junior. Of course their affair is tortuous and sexy, but is it love? Or does the stud just want a free trip to Venice, compliments of a famous author? Either way, Erica Jong wrote this romance with ""a mixture of eloquence and savage wit as good as anything she has ever written,"" said The Wall Street Journal.",Make Way for McCloskey.,Rob Roy MacGregor.,"The Return of the King (The Lord of the Rings #3). The Companions of the Ring have become involved in separate adventures as the quest continues. Aragorn, revealed as the hidden heir of the ancient Kings of the West, joined with the Riders of Rohan against the forces of Isengard, and took part in the desperate victory of the Hornburg. Merry and Pippin, captured by Orcs, escaped into Fangorn Forest and there encountered the Ents. Gandalf returned, miraculously, and defeated the evil wizard, Saruman. Meanwhile, Sam and Frodo progressed towards Mordor to destroy the Ring, accompanied by SmEagol--Gollum, still obsessed by his 'precious'. After a battle with the giant spider, Shelob, Sam left his master for dead; but Frodo is still alive--in the hands of the Orcs. And all the time the armies of the Dark Lord are massing. J.R.R. Tolkien's great work of imaginative fiction has been labeled both a heroic romance and a classic fantasy fiction. By turns comic and homely, epic and diabolic, the narrative moves through countless changes of scene a",Flags of Our Fathers: A Young People's Edition.,Literature Circle Guide: Bridge to Terabithia: Everything You Need For Successful Literature Circles That Get Kids Thinking Talking Writing—and Loving Literature.,"The Angry Hills. A writer moves to Greece just as the Nazis invade, and he soon becomes a pawn in a dangerous game of espionage After the death of his wife, Mike Morrison arrives in Greece simply to receive an inheritance and come to grips with his grief. But it's a bad time to nurse his sorrow--it's the beginning of World War II, and the German army storms the country before Morrison can leave. He's soon caught in a complicated cat-and-mouse game with Gestapo officers, British spies, and the Greek resistance movement. At the mercy of strangers, Morrison has to learn who to trust--and who to love. Leon Uris's fast-paced second novel draws from the diaries of an uncle who served in Greece during World War II. It was made into a film in 1959 starring Robert Mitchum. This ebook features an illustrated biography of Leon Uris including rare photos from the author's estate.","The Non-Designer's Web Book. If you think web design is beyond your reach, or if you want your existing web site to look more professional, this thoroughly updated classic is the place to turn! In these pages, best-selling authors Robin Williamsand John Tollettshare the creative ideas, useful techniques, and basic design principles that are essential to great Web design-all in the context of the most current technology, software, and standards. Throughout, the authors' aim is to inspire you and spark your creativity rather than sedate you with pages and pages of code. To that end, you'll find loads of real-world examples, interesting illustrations, and the simple instructions you need to implement the techniques and concepts described in these pages.",Literature Circle Guide: A Wrinkle in Time.,"Collected Stories. Collected here are twenty-six of Gabriel Garcia Marquez's most brilliant and enchanting short stories, presented in the chronological order of their publication in Spanish from three volumes: Eyes of a Blue Dog, Big Mama's Funeral,and The Incredible and Sad Tale of lnnocent Erendira and Her Heartless Grandmother. Combining mysticism, history, and humor, the stories in this collection span more than two decades, illuminating the development of Marquez's prose and exhibiting the themes of family, poverty, and death that resound throughout his fiction.","The Devil's Feather. ""In 2002, five women are discovered barbarously murdered in Sierra Leone. Reuters Africa correspondent Connie Burns suspects a British mercenary: a man who seems to turn up in every war-torn corner of Africa, whose reputation for violence and brutality is well-founded and widely known. Connie's suspicions that he's using the chaos of war to act out sadistic, misogynistic fantasies, fall on deaf ears - but she's determined to expose him and his secret. The consequences are devastating."" Connie encounters the man again in Baghdad, but almost immediately she's taken hostage. Released after three desperate days, terrified and traumatized by the experience--fearing that she will never again be the person she once was--Connie retreats to England. She is bent on protecting herself by withholding information about her abduction. But secluded in a remote rented house - where the jealously guarded history of her landlady's family seems to mirror her own fears - she knows that it is only a matter","Checkmate (Tom Clancy's Splinter Cell #3). HE OPERATES OUTSIDE OF EVERY LAW ... AND KILLS IN THE LINE OF DUTY.Few know he exists. But when millions of American lives are at stake, Third Echelon special operative Sam Fisher is the man to depend on. He handles covert missions either too sensitive or too risky for even the CIA or FBI. And he operates alone. Fisher is called off of a training exercise to intercept a cargo freighter loaded down with radioactive material and heading straight for the U.S. coast. He has minutes to disable the ship-or die trying. While he races to beat the clock, another attack has hit its target. As the residents of a small town in New Mexico start dying of radiation poisoning, Fisher weaves through a tangled web of clues to find the mastermind behind the strikes: one of the greatest enemies of the free world ... All in a days work for a Splinter Cell(r).","Terry: Terry Fox and His Marathon of Hope. In 1980, Terry Fox set out to run across Canada to raise money for cancer research -- despite having lost one leg to the disease. His goal was to raise $1 from every Canadian to help find a cure, and some combination of passion, idealism, and sheer guts led to the impossible notion that he would do this on one good leg and a prosthesis. Beginning in Newfoundland on April 12, 1980, he ran 26 miles each day for 143 consecutive days. But on September 1, the return of his cancer forced him to stop in Thunder Bay, Ontario. He died ten months later, but by then his dream had been realized: over $24 million had been collected in his name. Created to help celebrate the 25th anniversary of his journey, this biography combines over 80 new photographs from a previously unknown family collection with a very personal episodic narrative. The result brings a magic moment in Canadian history, and the young man who inspired it, freshly alive. All royalties from the book will be donated to the Terry Fox","Nobody Knows My Name. Told with Baldwin's characteristically unflinching honesty, this collection of illuminating, deeply felt essays examines topics ranging from race relations in the United States to the role of the writer in society, and offers personal accounts of Richard Wright, Norman Mailer and other writers.","Wither (Wendy Ward #1). Windale is a proud old town that embraces its colonial heritage, including the legend of a dark witches' coven dating back 300 years. No one in Windale actually believes in witches, but three people are experiencing vivid nightmares.","Life Support. Control was the word Dr Toby Harper lived by. She strove to keep her life in order, her ER in order. But no one could have been prepared for the man she admits one quiet night to the Springer Hospital. Delirious and in critical condition, he barely responds to treatment. And then he disappears without trace. The subsequent search leads Toby to a second patient with the same infection. And it reveals an unsettling twist - the infection can only be spread through direct tissue exchange. Soon Toby's on a trail that winds from a pregnant sixteen-year-old prostitute to an unexpected tragedy in her own home. Only then does she discover the unthinkable: a terrifying and deadly epidemic is about to be unleashed ...","The Conquest of Gaul. Among the most durable and engaging texts in world literature, Julius Caesar's Conquest of Gaultells how he and his legions conquered much of modern France in less than a decade (58-51 BCE), despite determined resistance. Perhaps the most famous Roman ever, Gaius Julius Caesar created a legacy which has resonated, for good or ill, throughout Western culture. Architect of an imperial system, eponymous sponsor of a reformed calendar system, orator second only to Cicero, conqueror of Gaul: Surely those accomplishments in the diverse fields of politics, applied mathematics, rhetoric, and military science would justify his eminence. Nevertheless, the high literary quality and historical value of this seemingly modest account match its exciting story of diplomatic maneuverings, shifting alliances, and military actions; the final chapters culminate in the revolt of the united Gallic tribes under Vercingetorix, France's first national hero, and are as compelling as any contemporary spy thrille","The Nose. After disappearing from the Deputy Inspector's face, his nose shows up around town before returning to its proper place.","Matilda. Matilda is a little girl who is far too good to be true. At age five-and-a-half she's knocking off double-digit multiplication problems and blitz-reading Dickens. Even more remarkably, her classmates love her even though she's a super-nerd and the teacher's pet. But everything is not perfect in Matilda's world. For starters she has two of the most idiotic, self-centered parents who ever lived. Then there's the large, busty nightmare of a school principal, Mrs. (""The"") Trunchbull, a former hammer-throwing champion who flings children at will and is approximately as sympathetic as a bulldozer. Fortunately for Matilda, she has the inner resources to deal with such annoyances: astonishing intelligence, saintly patience, and an innate predilection for revenge. She warms up with some practical jokes aimed at her hapless parents, but the true test comes when she rallies in defense of her teacher, the sweet Miss Honey, against the diabolical Trunchbull. There is never any doubt that Matilda wi","Certain Prey (Lucas Davenport #10). Certain Preyis John Sandford's 11th novel in ten years, and the tenth to feature hard-edged, charismatic homicide detective Lucas Davenport. Once again, Sandford has managed to avoid the traps of repetition and over-familiarity that mar so many attempts to create an extended series and given us a shrewdly plotted, furiously paced novel that is as visceral and gripping as anything he has published to date. The opening chapters find Davenport in unusually placid circumstances. He is financially secure, having developed and sold a lucrative line of computer simulation software; he is enjoying a brief, atypical period of complete celibacy; and he is increasingly isolated from the life of the streets by the endless bureaucratic demands of his role as deputy chief of the Minneapolis Police Department. Reality, of course, soon intervenes, and Davenport is pulled down from his ivory tower by a vicious, execution-style killing and its unexpected aftermath. The killing is initiated by Carmel Loa","The Call of the Wild. First published in 1903, The Call of the Wildis regarded as Jack London's masterpiece. Based on London's experiences as a gold prospector in the Canadian wilderness and his ideas about nature and the struggle for existence, The Call of the Wildis a tale about unbreakable spirit and the fight for survival in the frozen Alaskan Klondike.","The Ernest Hemingway Audio Collection. Nobel Prize-winning giant Ernest Hemingway is widely considered one of the greatest American authors of the Twentieth Century. Here, listeners can experience his riveting style both from his own voice and from one of America's most esteemed actors. The Snows of Kilimanjaro:Performed by Charlton Heston, I this is a classic story of a hard-drinking, ruthless and womanizing world adventurer who comes face-to-face with the one antagonist he cannot conquer: his own ignoble and imminent death. The Old Man and the Sea:Also performed by Heston and nominated for a Grammy, this recording of Hemingway's Pulitzer Prize-winning story is a perfect example of his literary I precision. Ernest Hemingway Reads:A rich sampling of Hemingway's brilliant, multifaceted writing which the Nation said ""provides his readers the opportunity to listen for and appreciate the Hemingway wit. "" Includes: The Nobel Prize Acceptance Speech; Second Poem to Mary; In Harry's Bar in Venice; The Fifth Column; Work in Progres","Black Like Me. In the Deep South of the 1950s, journalist John Howard Griffin decided to cross the color line. Using medication that darkened his skin to deep brown, he exchanged his privileged life as a Southern white man for the disenfranchised world of an unemployed black man. His audacious, still chillingly relevant eyewitness history is a work about race and humanity-that in this new millennium still has something important to say to every American.","Wild Ducks Flying Backward. Known for his meaty seriocomic novels, Tom Robbins's shorter work has appeared in publications ranging from Esquireto Harper's, from Playboyto the New York Times. Collected here for the first time in paperback, the essays, articles, observations--and even some untypical country-music lyrics--offer a rare overview of the eclectic sensibility of an American original. Whether rocking with the Doors, depoliticizing Picasso's Guernica,lamenting the angst-ridden state of contemporary literature, or drooling over tomato sandwiches and a species of womanhood he calls ""the genius waitress,"" Tom Robbins's briefer writings exhibit the five traits that perhaps best characterize his novels: an imaginative wit, a cheerfully brash disregard for convention, a sweetly nasty eroticism, a mystical but keenly observant eye, and an irrepressible love of language. Embedded in this primarily journalistic compilation are brand-new short stories, a sheaf of largely unpublished poems, and an offbeat assessment","Paris Spleen. Set in a modern, urban Paris, the prose pieces in this volume constitute a further exploration of the terrain Baudelaire had covered in his verse masterpiece, The Flowers of Evil: the city and its squalor and inequalities, the pressures of time and mortality, and the liberation provided by the sensual delights of intoxication, art, and women. Published posthumously in 1869, Paris Spleenwas a landmark publication in the development of the genre of prose poetry--a format which Baudelaire saw as particularly suited for expressing the feelings of uncertainty, flux, and freedom of his age--and one of the founding texts of literary modernism.","Mozart's Don Giovanni (the Dover Opera Libretto Series). Don Giovanni has been called the greatest opera ever composed, an almost perfect work. Along with Aida, La Boheme, and Carmen, Mozart's masterpiece is one of the most often performed operas. The work is so admired that when the Italian composer Gioacchino Rossini was asked which of his own operas he liked best, Rossini unhesitatingly replied, ""Don Giovanni."" This Dover edition contains the standard Italian libretto of Don Giovanni, side by side with a complete new English translation. Convenient and portable, it also includes an informative Introduction, a complete List of Characters, and an easy-to-follow Plot Summary. All repeats are given in full, so you can follow the text as it is sung, without losing your place. With this inexpensive, handy guide, opera lovers can appreciate every word of Mozart's brilliant comic drama -- in the original Italian or in modern English. An ideal companion for reading along with a recording, a broadcast, or at the performance itself, this superb volu","Little Women. 'Little Women' is recognised as one of the best-loved classic children's stories of all time. Originally written as a 'girls' story', its appeal transcends the boundaries of time and age, making it as popular with adults as it is with young readers.","The Magicians' Guild (Black Magician Trilogy #1). Caught up in a confrontation between the hated Guild magicians and the angry youth of the slums, to her dismay Sonea discovers that she possesses the same powers as the reviled magicians. to avoid capture, she must seek protection from the city's feared underworld, the thieves. In return she must use her powers for them, but her magic never seems to do quite what she intends it to... From a new author who has already made her mark on the Australian fantasy scene winning this year's Aurealis Award for Best Fantasy Short Story, Canavan's first novel is full of wonderful characters, intrigue, deceitful warlocks, secret catacombs and uncontrollable magic.","The Minority Report: 18 Classic Stories. Many thousands of readers consider Philip K. Dick the greatest science fiction mind on any planet. Since his untimely death in 1982, interest in Dick's works has continued to mount and his reputation has been further enhanced by a growing body of critical attention. The Philip K. Dick Award is now given annually to a distinguished work of science fiction, and the Philip K. Dick Society is devoted to the study and promulgation of his works. This collection includes all of the writer's earliest short and medium-length fiction (including some previously unpublished stories) covering the years 1954-1964. These fascinating stories include Service Call, Stand By, The Days of Perky Pat, and many others. Contents: Autofac -- Service call -- Captive market -- The mold of Yancy -- The minority report -- Recall mechanism -- The unreconstructed M -- Explorers we -- War game -- If there were no Benny Cemoli -- Novelty act -- Waterspider -- What the dead men say -- Orpheus with clay feet -- The days","Metamorphoses. Ovid's epic poem whose theme of change has resonated throughout the ages has become one of the most important texts of Western imagination, an inspiration from Dante's time to the present day, when writers such as Salman Rushdie and Italo Calvino have found a living source in Ovid's work. In this new, long-anticipated translation of Metamorphoses, Charles Martin combines a close fidelity to Ovid's text with verse that catches the speed and liveliness of the original. Portions of the translation have already appeared in such publications as Arion, The Formalist, The Tennessee Quarterly, and TriQuarterly.",Sociology in Our Times.,"Enthusiasm and Divine Madness. Plato's famous dialogue, the Phaedrus, was variously subtitled in antiquity: ""On Beauty"", ""On Love"", ""On the Psyche"". It is also concerned with the art of rhetoric, of thought and communication.Pieper, noted for the grace and clarity of his style, gives an illuminating and stimulating interpretation of the dialogue. Leaving the more recondite scholarly preoccupations aside, he concentrates on the content, bringing the actual situation in the dialogue -- Athens and its intellectuals engaged in spirited debate -- alive. Equally alive is the discussion of ideas, which are brought to bear on contemporary experience and made to prove the perennial validity of Socratic wisdom, and its power to excite the mind. The main thesis -- that in poetry and in love man is ""beside himself"", that is, divinely inspired -- is discussed with reference to modern poets, novelists, and modern psychology.","Emma Vol. 01. The saga begins.In Victorian England, a young girl named Emma is rescued from a life of destitution and raised to become a proper British maid. When she meets William, the eldest son of a wealthy family, their love seems destined. But in this world, even matters of the heart are ruled by class distinctions.","Up in the Air. Ryan Bingham's job as a Career Transition Counselor-he fires people-has kept him airborne for years. Although he has come to despise his line of work, he has come to love the culture of what he calls ""Airworld,"" finding contentment within pressurized cabins, anonymous hotel rooms, and a wardrobe of wrinkle-free slacks. With a letter of resignation sitting on his boss's desk, and the hope of a job with a mysterious consulting firm, Ryan Bingham is agonizingly close to his ultimate goal, his Holy Grail: one million frequent flier miles. But before he achieves this long-desired freedom, conditions begin to deteriorate. With perception, wit, and wisdom, Up in the Aircombines brilliant social observation with an acute sense of the psychic costs of our rootless existence, and confirms Walter Kirn as one of the most savvy chroniclers of American life.","The Dream of Scipio. Three narratives, set in the fifth, fourteenth, and twentieth centuries, all revolving around an ancient text and each with a love story at its center, are the elements of this ingenious novel, a follow-up to the bestselling, An Instance Of The Fingerpost. ""May well be the best historical mystery ever written,"" proclaimed The Sunday Boston Globe about Iain Pears's An Instance of the Fingerpost, while Booklist called its publication ""a major literary event."" Iain Pears's international bestseller was greeted with front-page reviews (""A crafty, utterly mesmerizing intellectual thriller""--The Washington Post Book World), named a New York Times Notable Book, and hailed as a Book to Remember by the New York Public Library. Now he returns with a greatly anticipated novel that is so brilliantly constructed, the author himself describes it as ""a complexity."" The centuries are the fifth (the final days of the Roman Empire); the fourteenth (the years of the Black Death); and the twentieth (World","The Brief History of the Dead. From Kevin Brockmeier, one of this generation's most inventive young writers, comes a striking new novel about death, life, and the mysterious place in between. The City is inhabited by those who have departed Earth but are still remembered by the living. They will reside in this afterlife until they are completely forgotten. But the City is shrinking, and the residents clearing out. Some of the holdouts, like Luka Sims, who produces the City's only newspaper, are wondering what exactly is going on. Others, like Coleman Kinzler, believe it is the beginning of the end. Meanwhile, Laura Byrd is trapped in an Antarctic research station, her supplies are running low, her radio finds only static, and the power is failing. With little choice, Laura sets out across the ice to look for help, but time is running out. Kevin Brockmeier alternates these two storylines to create a lyrical and haunting story about love, loss and the power of memory.","Vanity Fair. ""I think I could be a good woman, if I had five thousand a year,"" observes beautiful and clever Becky Sharp, one of the wickedest--and most appealing--women in all of literature. Becky is just one of the many fascinating figures that populate William Makepeace Thackeray's novel Vanity Fair, a wonderfully satirical panorama of upper-middle-class life and manners in London at the beginning of the nineteenth century. Scorned for her lack of money and breeding, Becky must use all her wit, charm and considerable sex appeal to escape her drab destiny as a governess. From London's ballrooms to the battlefields of Waterloo, the bewitching Becky works her wiles on a gallery of memorable characters, including her lecherous employer, Sir Pitt, his rich sister, Miss Crawley, and Pitt's dashing son, Rawdon, the first of Becky's misguided sexual entanglements. Filled with hilarious dialogue and superb characterizations, Vanity Fairis a richly entertaining comedy that asks the reader, ""Which of us is","The Fairy Godmother (Five Hundred Kingdoms #1). In the land of the Five Hundred Kingdoms, if you can't carry out your legendary role, life is no fairy tale... Elena Klovis was supposed to be her kingdom's Cinderella--until fate left her with a completely inappropriate prince! So she set out to make a new life for herself. But breaking with ""The Tradition"" was no easy matter--until she got a little help from her own fairy godmother. Who promptly offered Elena a most unexpected job... Now, instead of sleeping in the chimney, she has to deal with arrogant, stuffed-shirt princes who keep trying to rise above their place in the tale. And there's one in particular who needs to be dealt with... Sometimes a fairy godmother's work is never done...","Straight. A jockey becomes the sole inheritor of his late brother's business, horse, mistress, and enemies.","The Liars' Club. When it was published in 1995, Mary Karr's The Liars Clubtook the world by storm and raised the art of the memoir to an entirely new level, as well as bringing about a dramatic revival of the form. Karr's comic childhood in an east Texas oil town brings us characters as darkly hilarious as any of J. D. Salinger's--a hard-drinking daddy, a sister who can talk down the sheriff at twelve, and an oft-married mother whose accumulated secrets threaten to destroy them all. Now with a new introduction that discusses her memoir's impact on her family, this unsentimental and profoundly moving account of an apocalyptic childhood is as ""funny, lively, and un-put-downable"" (USA Today) today as it ever was.","Junky. Before his 1959 breakthrough, Naked Lunch, an unknown William S. Burroughs wrote Junky, his first novel. It is a candid eye-witness account of times and places that are now long gone, an unvarnished field report from the American post-war underground. Unafraid to portray himself in 1953 as a confirmed member of two socially-despised under classes (a narcotics addict and a homosexual), Burroughs was writing as a trained anthropologist when he unapologetically described a way of life - in New York, New Orleans, and Mexico City - that by the 1940's was already demonized by the artificial anti-drug hysteria of an opportunistic bureaucracy and a cynical, prostrate media. For this fiftieth-anniversary edition, eminent Burroughs scholar Oliver Harris has painstakingly recreated the author's original text, word by word, from archival typescripts and places the book's contents against a lively historical background in a comprehensive introduction. Here as well, for the first time, are Burroughs","The Caine Mutiny Court-Martial. When the commanding officer of the U.S.S. Caine is transferred, a new captain, strict disciplinarian Philip Francis Queeg, replaces him. But Queeg's actions go beyond strictness into psychopathology as he brings the ship and its crew to the brink of destruction. This necessitates a brutal shipboard court-martial that threatens by turns to clear or condemn him. In adapting his novel for the theater, Herman Wouk focused on the heart of the story: the trial and the man at its center. The result is a grimly effective picture of Queeg's disintegration from perfectionist to paranoid that acts as an indictment not only of an individual but of a society that produces such men.","The Cobweb. From his triumphant debut with Snow Crashto the stunning success of his latest novel, Quicksilver, Neal Stephenson has quickly become the voice of a generation. In this now-classic political thriller, he and fellow author J. Frederick George tell a savagely witty, chillingly topical tale set in the tense moments of the Gulf War. When a foreign exchange student is found murdered at an Iowa University, Deputy Sheriff Clyde Banks finds that his investigation extends far beyond the small college town all the way to the Middle East. Shady events at the school reveal that a powerful department is using federal grant money for highly dubious research. And what it s producing is a very nasty bug. Navigating a plot that leads from his own backyard to Washington, D.C., to the Gulf, where his Army Reservist wife has been called to duty, Banks realizes he may be the only person who can stop the wholesale slaughtering of thousands of Americans. It s a lesson in foreign policy he ll never forget.""",Latin Via Ovid: A First Course.,"The Essential John Nash. When John Nash won the Nobel prize in economics in 1994, many people were surprised to learn that he was alive and well. Since then, Sylvia Nasar's celebrated biography A Beautiful Mind, the basis of a new major motion picture, has revealed the man. The Essential John Nashreveals his work--in his own words. This book presents, for the first time, the full range of Nash's diverse contributions not only to game theory, for which he received the Nobel, but to pure mathematics--from Riemannian geometry and partial differential equations--in which he commands even greater acclaim among academics. Included are nine of Nash's most influential papers, most of them written over the decade beginning in 1949. From 1959 until his astonishing remission three decades later, the man behind the concepts ""Nash equilibrium"" and ""Nash bargaining""--concepts that today pervade not only economics but nuclear strategy and contract talks in major league sports--had lived in the shadow of a condition diagnosed","I Capture the Castle. Through six turbulent months of 1934, 17-year-old Cassandra Mortmain keeps a journal, filling three notebooks with sharply funny yet poignant entries about her home, a ruined Suffolk castle, and her eccentric and penniless family. By the time the last diary shuts, there have been great changes in the Mortmain household, not the least of which is that Cassandra is deeply, hopelessly, in love.","Programming in C. Learn the C programming language from one of the best. Stephen Kochan's ""Programming in C"" is thorough with easy-to-follow instructions that are sure to benefit beginning programmers. This book provides readers with practical examples of how the C programming language can be used with small, fast programs, similar to the programming used by large game developers such as Nintendo. If you want a one-stop-source for C programming, this book is it.The book is appropriate for all introductory-to-intermediate courses on programming in the C language, including courses covering C programming for games and small-device platforms. ""Programming in C, Third Edition"" is a thoroughly revised and updated edition of Steven Kochan's classic C programming tutorial: a book that has helped thousands of students master C over the past twenty years. This edition fully reflects the latest C standard and contains current source code. It has been crafted to help students master C regardless of the platform th","The Tale of Genji. The Tale of Genji was written in the eleventh century by Murasaki Shikibu, a lady of the Heian court. It is universally recognized as the greatest masterpiece of Japanese prose narrative, perhaps the earliest true novel in the history of the world. Until now there has been no translation that is both complete and scrupulously faithful to the original text. Edward G. Seidensticker's masterly rendering was first published in two volumes in 1976 and immediately hailed as a classic of the translator's art. It is here presented in one unabridged volume, illustrated throughout by woodcuts taken from a 1650 Japanese edition of The Tale of Genji.","Tabby in the Tub (Animal Ark #29). This newest Animal Ark title will provide cozy reading for animal lovers everywhere. With sales of over 6 million books worldwide, the Animal Ark franchise is a hit with young readers. A wild tabby cat has turned up in Welford and Mandy is worried. The poor cat is about to have kittens, and she has no one to look after her. Bill Ward, the postman, comes to the rescue, allowing her to live in his garden shed. But the tabby isn't the only cat in the neighborhood having kittens -- and some of the kittens need extra-special care. Will Mandy be able to help the kittens -- and their mothers?","The Basic Works of Aristotle. Complete texts: * Physics[tr. R.P. Hardie & R.K. Gaye] * On Generation & Corruption[tr. Harold H. Joachim] * On the Soul[tr. J.A. Smith] * Metaphysics[tr. W.D. Ross] * Nichomachean Ethics[tr. W.D. Ross] * Politics[tr. Benjamin Jowett] * Poetics[tr. Ingram Bywater] Texts partly reproduced: * Organon(logical treatises: Categories, On Interpretation, Prior& Posterior Analytics, Topics& On Sophistical Refutations) * On the Heavens * The Short Physical Treatises(natural treatises: On Memory, On Dreams& On Prophesying by Dreams) * The History of Animals * On The Parts of Animals * On The Generation of Animals * Rhetoric Generally accepted texts omitted entirely: * Meteorology * On the Progression of Animals * Constitution of Athens * Eudemian Ethics","Cat Cross Their Graves (Joe Grey #10). The Barnes & Noble Review Shirley Rousseau Murphy's popular mystery series features quick-witted cats who are also expert investigators. This installment finds the quiet town of Molena Point, California, devastated by the murder of local celebrity Patty Rose: A former actress famed for her WWII-era Hollywood musicals, Patty was beloved for her many acts of kindness and generosity in the town she'd called home since her retirement. First on the scene after her famous friend is killed, the extraordinary young tortoiseshell Kit takes the lead in this investigation. Trained by one of the finest feline detectives in town, the large gray tomcat named Joe Grey, Kit puts her every instinct to work, following the perpetrator and gathering at great risk all the evidence humans will need to see justice done. Sentient felines Joe Grey, Dulcie, and Kit soon discover that this brutal crime has far-reaching ties and is more complex than anyone -- human or animal -- suspects. As usual, the humans who",P.S. I Love You (Sealed with a Kiss #4).,"The Servants of Twilight. To his mother, Joey seems an ordinary six-year-old boy - special to her, but to no one else. To the Servants of Twilight, however, he is an evil presence who must be destroyed - an Anti-Christ who must die. The terrifying ordeal for Joey and his mother begins in the supermarket car park where an old woman accosts them and pursues them with her terrible threats. Christine's world is turned into a nightmare of terror. Only her love for her child, and the support of the one man who believes her, gives her the chance to survive the Servants of Twilight... This book was originally published under the pseudonym Leigh Nichols.","The Easter Rabbit's Parade. Easter is coming! The farmyard animals are planning a surprise for Ann Eliza, the little girl who takes care of them. Everyone contributes--Little Brown Hen lays the eggs, the chicks and goslings gather flowers, and White Rabbit and his family paint the eggs. Easter morning, the animals have a parade and give Ann Eliza her very own Easter basket . . . a very happy Easter, indeed!","Back Bay (Peter Fallon #1). Meet the Pratt clas. Driven men. Determined women. Through six turbulent generations, they would pursue a lost Paul Revere treasure. And turn a family secret into an obsession that could destroy them. Here is the novel that launched William Martin's astonishing literary career and became an instant bestseller. From the grit and romance of old Boston to exclusive -- and dangerous -- Back Bay today, this sweeping saga paints an unforgettable portrait of a powerful dynasty beset by the forces of history...and a heritage of greed, lust, murder and betrayal.","Thank You for Smoking. Nick Naylor likes his job. In the neo-puritanical nineties, it's a challenge to defend the rights of smokers and a privilege to promote their liberty. Sure, it hurts a littIe when you're compared to Nazi war criminals, but Nick says he's just doing what it takes to pay the mortgage and put his son through Washington's elite private school St. Euthanasius. He can handle the pressure from the antismoking zealots, but he is less certain about his new boss, BR, who questions whether Nick is worth $150,000 a year to fight a losing war. Under pressure to produce results, Nick goes on a PR offensive. But his heightened notoriety makes him a target for someone who wants to prove just how hazardous smoking can be. If Nick isn't careful, he's going to be stubbed out.","The Wicked Wit of Charles Dickens. Dickens was best known perhaps for his great novels--Oliver Twist, Great Expectations,and Bleak Houseto name a few. His characters are some of the best known throughout the world, but it is Dickens's wit and excellent sense of humor that makes these characters so enduring and which can also be seen in his private letters. The Wicked Wit of Charles Dickensis a fantastic collection of Dickens's most amusing and interesting witticisms.","Mistress Masham's Repose. ""She saw: first, a square opening, about eight inches wide, in the lowest step...finally she saw that there was a walnut shell, or half one, outside the nearest door...she went to look at the shell--but looked with the greatest astonishment. There was a baby in it."" So ten-year-old Maria, orphaned mistress of Malplaquet, discovers the secret of her deteriorating estate: on a deserted island at its far corner, in the temple long ago nicknamed Mistress Masham's Repose, live an entire community of people--""The People,"" as they call themselves--all only inches tall. With the help of her only friend--the absurdly erudite Professor--Maria soon learns that this settlement is no less than the kingdom of Lilliput (first seen in Gulliver's Travels) in exile. Safely hidden for centuries, the Lilliputians are at first endangered by Maria's well-meaning but clumsy attempts to make their lives easier, but their situation grows truly ominous when they are discovered by Maria's greedy guardians, who l","The Quiet American. Graham Greene's classic exploration of love, innocence, and morality in Vietnam ""I never knew a man who had better motives for all the trouble he caused,"" Graham Greene's narrator Fowler remarks of Alden Pyle, the eponymous ""Quiet American"" of what is perhaps the most controversial novel of his career. Pyle is the brash young idealist sent out by Washington on a mysterious mission to Saigon, where the French Army struggles against the Vietminh guerrillas. As young Pyle's well-intentioned policies blunder into bloodshed, Fowler, a seasoned and cynical British reporter, finds it impossible to stand safely aside as an observer. But Fowler's motives for intervening are suspect, both to the police and himself, for Pyle has stolen Fowler's beautiful Vietnamese mistress. Originally published in 1956 and twice adapted to film, The Quiet Americanremains a terrifiying and prescient portrait of innocence at large. This Graham Greene Centennial Edition includes a new introductory essay by Robert S","Ali and Nino. First published in Vienna in 1937, this classic story of romance and adventure has been compared to Dr. Zhivagoand Romeo and Juliet. Its mysterious author was recently the subject of a feature article in the New Yorker, which has inspired a forthcoming biography. Out of print for nearly three decades until the hardcover re-release last year, Ali and Ninois Kurban Said's masterpiece. It is a captivating novel as evocative of the exotic desert landscape as it is of the passion between two people pulled apart by culture, religion, and war. It is the eve of World War I in Baku, Azerbaijan, a city on the edge of the Caspian Sea, poised precariously between east and west. Ali Khan Shirvanshir, a Muslim schoolboy from a proud, aristocratic family, has fallen in love with the beautiful and enigmatic Nino Kipiani, a Christian girl with distinctly European sensibilities. To be together they must overcome blood feud and scandal, attempt a daring horseback rescue, and travel from the bustling stre","Resistance Rebellion and Death: Essays. In the speech he gave upon accepting the Nobel Prize for Literature in 1957, Albert Camus said that a writer ""cannot serve today those who make history; he must serve those who are subject to it."" And in these twenty-three political essays, he demonstrates his commitment to history's victims, from the fallen maquis of the French Resistance to the casualties of the Cold War. Resistance, Rebellion and Deathdisplays Camus's rigorous moral intelligence addressing issues that range from colonial warfare in Algeria to the social cancer of capital punishment. But this stirring book is above all a reflection on the problem of freedom, and, as such, belongs in the same tradition as the works that gave Camus his reputation as the conscience of our century: The Stranger, The Rebeland The Myth of Sisyphus.","Photography's Other Histories. Moving the critical debate about photography away from its current Euro-American center of gravity, Photography's Other Historiesbreaks with the notion that photographic history is best seen as the explosion of a Western technology advanced by the work of singular individuals. This collection presents a radically different account, describing photography as a globally disseminated and locally appropriated medium. Essays firmly grounded in photographic practice--in the actual making of pictures--suggest the extraordinary diversity of nonwestern photography.Richly illustrated with over 100 images, Photography's Other Historiesexplores from a variety of regional, cultural, and historical perspectives the role of photography in raising historical consciousness. It includes two first-person pieces by indigenous Australians and one by a Seminole/Muskogee/Dine' artist. Some of the essays analyze representations of colonial subjects--from the limited ways Westerners have depicted Navajos to Ja","Sylvester. Endowed with rank, wealth and elegance, Sylvester, Duke of Salford, posts into Wiltshire to discover if the Honorable Phoebe Marlow will meet his exacting requirements for a bride. If he does not expect to meet a tongue-tied stripling wanting both manners and conduct, then he is intrigued indeed when his visit causes Phoebe to flee her home. They meet again on the road to London, where her carriage has come to grief in the snow. Yet Phoebe, already caught in one imbroglio, now knows she soon could be well deep in another... A typically wonderful historical novel, Sylvester shows once more why Georgette Heyer is the undisputed queen of the genre she created - the Regency romance.",A Random Walk Down Wall Street.,"Novels 1955–1962: Lolita / Pnin / Pale Fire / Lolita: A Screenplay. Lolita (1955), Nabokov's single most famous work, is one of the most controversial and widely read books of its time. Funny, satiric, poignant, filled with allusions to earlier American writers, it is the ""confession"" of a middle-aged, sophisticated European emigre's passionate obsession with a 12-year-old American ""nymphet,"" and the story of their wanderings across a late 1940s America of highways and motels. Pnin (1957) is a comic masterpiece about a gentle bald Russian emigre professor in an American college town who is never quite able to master its language, its politics, or its train schedule. Pale Fire (1962) is a tour de force in the form of an ostensibly autobiographical poem by a recently deceased American poet and a critical commentary by an academic who is something other than what he seems. The texts of this volume incorporate Nabokov's penciled corrections in his own copies of his works and correct long-standing errors. They are the most authoritative versions available a","The Mandarins. In her most famous novel, Simone de Beauvoir does not flinch in her look at Parisian intellectual society at the end of World War II. Drawing on those surrounding her -- Jean-Paul Sartre, Albert Camus, Arthur Koestler -- and her passionate love affair with Nelson Algren, Beauvoir dissects the emotional and philosophical currents of her time. At once an engrossing drama and an intriguing political tale, The Mandarinsis the emotional odyssey of a woman torn between her inner desire and her public life. The Mandarinswon France's highest literary prize, the Prix Goncourt.","The Year of Magical Thinking. 'An act of consummate literary bravery, a writer known for her clarity allowing us to watch her mind as it becomes clouded with grief.' From one of America's iconic writers, a stunning book of electric honesty and passion. Joan Didion explores an intensely personal yet universal experience: a portrait of a marriage-and a life, in good times and bad-that will speak to anyone who has ever loved a husband or wife or child. Several days before Christmas 2003, John Gregory Dunne and Joan Didion saw their only daughter, Quintana, fall ill with what seemed at first flu, then pneumonia, then complete septic shock. She was put into an induced coma and placed on life support. Days later-the night before New Year's Eve-the Dunnes were just sitting down to dinner after visiting the hospital when John Gregory Dunne suffered a massive and fatal coronary. In a second, this close, symbiotic partnership of forty years was over. Four weeks later, their daughter pulled through. Two months after that, arr","In the Company of Cheerful Ladies (No. 1 Ladies' Detective Agency #6). Readers everywhere have been captivated by the New York Times best-selling No. 1 Ladies' Detective Agency series, from award-winning wit Alexander McCall Smith. Mma Ramotswe is very busy. She has a full caseload at the agency, there's been an intruder in her home, and her unfortunate past has returned to haunt her. Maybe it's a good thing her husband, Mr. J.L.B. Matekoni, is too distracted to notice. For it seems one of his apprentices has run off with an older woman!","The Life and Times of the Thunderbolt Kid: A Memoir. From one of the world's most beloved writers and New York Timesbestselling author of One Summer, a vivid, nostalgic, and utterly hilarious memoir of growing up in the 1950s Bill Bryson was born in the middle of the American century--1951--in the middle of the United States--Des Moines, Iowa--in the middle of the largest generation in American history--the baby boomers. As one of the best and funniest writers alive, he is perfectly positioned to mine his memories of a totally all-American childhood for 24-carat memoir gold. Like millions of his generational peers, Bill Bryson grew up with a rich fantasy life as a superhero. In his case, he ran around his house and neighborhood with an old football jersey with a thunderbolt on it and a towel about his neck that served as his cape, leaping tall buildings in a single bound and vanquishing awful evildoers (and morons)--in his head--as ""The Thunderbolt Kid."" Using this persona as a springboard, Bill Bryson re-creates the life of his family a","Crazy Hot (The Au Pairs #4). It's been a year since the hottest au pairs ever saw the Hamptons, and Eliza, Jacqui and Mara have resigned themselves to spending summer apart. But when Eliza's new stepmother finds herself in need of some help, Jacqui and Mara wind up with two first-class tickets to a crazy and hot Hamptons summer.","The Wit and Wisdom of Abraham Lincoln: A Book of Quotations. From the most eloquent of American presidents, nearly 400 astute observations on subjects ranging from women to warfare: ""Bad promises are better broken than kept""; ""Marriage is neither heaven nor hell; it is simply purgatory""; ""Whenever I hear anyone arguing for slavery, I feel a strong impulse to see it tried on him personally.""","Jazz. In the winter of 1926, when everybody everywhere sees nothing but good things ahead, Joe Trace, middle-aged door-to-door salesman of Cleopatra beauty products, shoots his teenage lover to death. At the funeral, Joe's wife, Violet, attacks the girl's corpse. This passionate, profound story of love and obsession brings us back and forth in time, as a narrative is assembled from the emotions, hopes, fears, and deep realities of black urban life. Jazz is the story of a triangle of passion, jealousy, murder, and redemption, of sex and spirituality, of slavery and liberation, of country and city, of being male and female, African American, and above all of being human. Like the music of its title, it is a dazzlingly lyric play on elemental themes, as soaring and daring as a Charlie Parker solo, as heartbreakingly powerful as the blues. It is Pulitzer Prize-winning novelist Toni Morrison at her best.","Dublin 4. A society hostess entertains her husband's mistress to dinner; a country girl savours the delights of city life; a student faces the dilemma of unmarried pregnancy; and a drink-ridden photographer tries to relaunch a shattered career... This vintage collection of stories from the bestselling author of Light a Penny Candle and Circle of Friends is Maeve Binchy at her best - her trademark warmth, wit and compassion are unmistakeable.","The Invisibles Vol. 4: Bloody Hell in America. In a world where paranoia is a survival skill, the only hope for humankind is a group of unconventional occultist freedom fighters called the Invisibles. In this collection, the team launches an assault on an underground New Mexico lab to free the cure for the AIDS virus from the alleged inventors of the disease: the U.S. government. Collects Volume 2, Issues #1-4","Demon Diary Volume 04. Gods and demons wage a never-ending battle with the mortal realm of Earth as their battlefield. As with most long-standing feuds, the reasons are no longer important--hatred is a way of life. But it is foretold that one will arise who can restore harmony between gods and demons. Enter Raenef, heir to demon royalty. But he is hardly regal material. Therefore, the demon king assigns Eclipse to be his tutor and to mold Raenef into proper demon shape. The two begin a journey of discovery, and are soon joined by a human knight and a god-blessed priest.","China Court: The Hours of a Country House. For more than half a century, Rumer Godden has been known as one of the finest and subtlest writers of our day (Saturday Review). Now one of her most endearing classics is being reissued for a new generation of readers. China Court is the story of the hours and days of a country house in Cornwall and five generations of the family who inhabited it.","Specimen Days. Lucas, Catherine, Simon: three characters meet time and again in the three linked narratives that form 'Specimen Days'. The first, a science fiction of the past, tells of a boy whose brother was 'devoured' by the machine he operated. The second is a noirish thriller set in our century, as a police psychologist attempts to track down a group of terrorists. And the third and final strand accompanies two strange beings into the future. A novel of connecting and reconnecting, inspired by the writings of the great visionary poet Walt Whitman, Specimen Daysis a genre-bending, haunting ode to life itself - a work of surpassing power and beauty by one of the most original and daring writers at work today","The Diary of Virginia Woolf Volume One: 1915-1919. ""Nothing yet published about her so totally contradicts the legend of Virginia Woolf.... [This] is a first chance to meet the writer in her own unguarded words and to observe the root impulses of her art without the distractions of a commentary"" (New York Times). Edited and with a Preface by Anne Olivier Bell; Introduction by Quentin Bell; Index.","The Great Divorce. In ""The Great Divorce, "" C.S. Lewis's classic vision of the Afterworld, the narrator boards a bus on a drizzly English afternoon and embarks on an incredible voyage through Heaven and Hell. He meets a host of supernatural beings far removed from his expectations, and comes to some significant realizations about the nature of good and evil. A stunning new edition of this timeless allegory of heaven and hell, repackaged and rebranded as part of the C.S. Lewis Signature Classics range.","1776. In this masterful book, David McCullough tells the intensely human story of those who marched with General George Washington in the year of the Declaration of Independence - when the whole American cause was riding on their success, without which all hope for independence would have been dashed and the noble ideals of the Declaration would have amounted to little more than words on paper. Based on extensive research in both American and British archives, 1776is a powerful drama written with extraordinary narrative vitality. It is the story of Americans in the ranks, men of every shape, size, and color, farmers, schoolteachers, shoemakers, no-accounts, and mere boys turned soldiers. And it is the story of the King's men, the British commander, William Howe, an his highly disciplined redcoats who looked on their rebel foes with contempt and fought with a valor too little known. At the center of the drama, with Washington, are two young American patriots, who, at first, knew no more of wa","Philosophy: The Basics. Now in its fourth edition, Nigel Warburton's best-selling book gently eases the reader into the world of philosophy. Each chapter considers a key area of philosophy, explaining and exploring the basic ideas and themes. What is philosophy? Can you prove God exists? Is there an afterlife? How do we know right from wrong? Should you ever break the law? Is the world really the way you think it is? How should we define Freedom of Speech? Do you know how science works? Is your mind different from your body? Can you define art? For the fourth edition, Warburton has added new sections to several chapters, revised others and brought the further reading sections up to date. If you've ever asked what is philosophy, or whether the world is really the way you think it is, then this is the book for you.",Far to Go (Margaret Thursday #2). Margaret Thursday answers an advertisement for an actress who can appear to be 11 years old. Her subsequent successes on the stage bring with them the unwanted drama of a kidnap rumour. Day and night she is closely protected - but not closely enough.,Spandau: The Secret Diaries.,"Angry Black White Boy. From the acclaimed author of Shackling Watercomes the first great race novel of the twenty-first century, an incendiary and ruthlessly funny satire about violence, pop culture, and American identity. Macon Detornay is a suburban white boy possessed and politicized by black culture, and filled with rage toward white America. After moving to New York City for college, Macon begins robbing white passengers in his taxicab, setting off a manhunt for the black man presumed to be committing the crimes. When his true identity is revealed, Macon finds himself to be a celebrity and makes use of the spotlight to hold forth on the evils and invisibility of whiteness. Soon he launches the Race Traitor Project, a stress-addled collective that attracts guilty liberals, wannabe gangstas, and bandwagon riders from all over the country to participate in a Day of Apology--a day set aside for white people to make amends for four hundred years of oppression. The Day of Apology pushes New York City over the","The Woman in White. As the inscription on his tombstone reveals, Wilkie Collins wanted to be remembered as the ""author of The Woman in White,"" for it was this novel that secured his reputation during his lifetime. The novel begins with a drawing teacher's eerie late-night encounter with a mysterious woman in white, and then follows his love for Laura Fairlie, a young woman who is falsely incarcerated in an asylum by her husband, Sir Percival Glyde, and his sinister accomplice, Count Fosco.","In Pursuit of the Proper Sinner (Inspector Lynley #10). A theatrical producer shoots himself on the night of his greatest triumph. A young woman camping on the Derbyshire moors is bludgeoned to death. A motorcyclist is found stabbed to death in the center of an ancient henge. Is there a connection? Detective Inspector Thomas Lynley is on the case, but recently demoted Constable Barbara Havers isn't about to let him go it alone.","Cloud Atlas. An alternate cover for this edition can be found . The narrators hear their echoes in history and change their destinies in ways great and small, in a study of humanity's dangerous will to power. A reluctant voyager crosses the Pacific in 1850. A disinherited composer gatecrashes in between-wars Belgium. A vanity publisher flees gangland creditors. Others are a journalist in Governor Reagan's California, and genetically-modified dinery server on death-row. Finally, a young Pacific Islander witnesses the nightfall of science and civilization.","The Custom of the Country. Considered by many to be her masterpiece, Edith Wharton's second full-length work is a scathing yet personal examination of the exploits and follies of the modern upper class. As she unfolds the story of Undine Spragg, from New York to Europe, Wharton affords us a detailed glimpse of what might be called the interior decor of this America and its nouveau riche fringes. Through a heroine who is as vain, spoiled, and selfish as she is irresistibly fascinating, and through a most intricate and satisfying plot that follows Undine's marriages and affairs, she conveys a vision of social behavior that is both supremely informed and supremely disenchanted. - Anita Brookner",The Sea Hunters II (The Sea Hunters #2). From the author of the #1 bestselling The Sea Hunterscomes more unforgettable true adventures with famous shipwrecks.,"Lover Awakened (Black Dagger Brotherhood #3). In the shadows of the night in Caldwell, New York, there's a deadly war raging between vampires and their slayers. And there exists a secret band of brothers like no other - six vampire warriors, defenders of their race. Of these, Zsadist is the most terrifying member of the Black Dagger Brotherhood. A former blood slave, the vampire Zsadist still bears the scars from a past filled with suffering and humiliation. Renowned for his unquenchable fury and sinister deeds, he is a savage feared by humans and vampires alike. Anger is his only companion, and terror is his only passion--until he rescues a beautiful aristocrat from the evil Lessening Society. Bella is instantly entranced by the seething power Zsadist possesses. But even as their desire for one another begins to overtake them both, Zsadist's thirst for vengeance against Bella's tormentors drives him to the brink of madness. Now, Bella must help her lover overcome the wounds of his tortured past, and find a future with her...","Island of the Sequined Love Nun. Take a wonderfully crazed excursion into the demented heart of a tropical paradise--a world of cargo cults, cannibals, mad scientists, ninjas, and talking fruit bats. Our bumbling hero is Tucker Case, a hopeless geek trapped in a cool guy's body, who makes a living as a pilot for the Mary Jean Cosmetics Corporation. But when he demolishes his boss's pink plane during a drunken airborne liaison, Tuck must run for his life from Mary Jean's goons. Now there's only one employment opportunity left for him: piloting shady secret missions for an unscrupulous medical missionary and a sexy blond high priestess on the remotest of Micronesian hells. Here is a brazen, ingenious, irreverent, and wickedly funny novel from a modern master of the outrageous.","Going to Meet the Man. ""There's no way not to suffer. But you try all kinds of ways to keep from drowning in it."" The men and women in these eight short fictions grasp this truth on an elemental level, and their stories, as told by James Baldwin, detail the ingenious and often desperate ways in which they try to keep their head above water. It may be the heroin that a down-and-out jazz pianist uses to face the terror of pouring his life into an inanimate instrument. It may be the brittle piety of a father who can never forgive his son for his illegitimacy. Or it may be the screen of bigotry that a redneck deputy has raised to blunt the awful childhood memory of the day his parents took him to watch a black man being murdered by a gleeful mob. By turns haunting, heartbreaking, and horrifying--and informed throughout by Baldwin's uncanny knowledge of the wounds racism has left in both its victims and its perpetrators--Going to Meet the Manis a major work by one of our most important writers.","El cazador de autógrafos. La publicacion de Dientes blancos en el ano 2000 supuso uno de los debuts literarios mas sonados de los ultimos tiempos. Con apenas veinticinco anos, Zadie Smith asombro a la critica y al publico internacional con un elaborado sentido del ritmo narrativo y un talento inaudito para dibujar personajes de tres dimensiones. Y si su opera prima destacaba por la exuberante complejidad de la trama, que abordaba sin pudor las vivencias de la generacion de sus padres, esta segunda novela se define por la contencion con que la joven autora londinense despliega su mirada ironica y esceptica sobre el mundo en que vivimos, esta vez desde la optica de una generacion eclectica, libre de ataduras y en busqueda permanente de la satisfaccion personal. El cada vez mas presente dilema de las identidades, la voragine de la celebridad y la fama, la improbabilidad de una comunicacion autentica, en suma, todo aquello que constituye la materia prima de las creencias y los mitos, de las ilusiones y las decepcio",The Adventures of Charlie and Mr. Willy Wonka: A Fully Dramatized Recording.,"They Dare to Speak Out: People and Institutions Confront Israel's Lobby. The first book to speak out against the pervasive influence of the American-Israeli Public Affairs Committee (AIPAC) on American politics, policy, and institutions resonates today as never before. With careful documentation and specific case histories, former congressman Paul Findley demonstrates how the Israel lobby helps to shape important aspects of U.S. foreign policy and influences congressional, senatorial, and even presidential elections. Described are the undue influence AIPAC exerts in the Senate and the House and the pressure AIPAC brings to bear on university professors and journalists who seem too sympathetic to Arab and Islamic states and too critical of Israel and its policies. Along with many longtime outspoken critics, new voices speaking out include former President Jimmy Carter, U.S. Representative Cynthia McKinney, Senator Robert Byrd, prominent Arab-American Dr. Ziad Asali, Rabbi Michael Lerner, and journalist Charles Reese. In addition, the lack of open debate amon","The Sgt. Rock Archives Vol. 1. In a time when America needed a true hero, Sgt. Frank Rock emerged as a symbol of patriotism during the United States battle against the Nazis in World War II. Reprinted in this edition are nineteen of the most hard-hitting Sgt. Rock war stories ever told, including an early ""prototype"" version of the ultimate war hero as well as his first appearance. Leading Easy Company against the worst evil man has truly ever faced, Sgt. Rock was and still is an emblem of America's fighting spirit.","Reflex. Longtime jockey Philip Nore suspects that a racetrack photographer's fatal accident was really murder--and unravels some nasty secrets of corruption, blackmail, and murder.",Clouds/Wasps/Birds (Aristophanes 1).,"Killing Yourself to Live: 85% of a True Story. Building on the national bestselling success of Sex, Drugs, and Cocoa Puffs, preeminent pop culture writer Chuck Klosterman unleashes his best book yet--the story of his cross-country tour of sites where rock stars have died and his search for love, excitement, and the meaning of death. For 6,557 miles, Chuck Klosterman thought about dying. He drove a rental car from New York to Rhode Island to Georgia to Mississippi to Iowa to Minneapolis to Fargo to Seattle, and he chased death and rock 'n' roll all the way. Within the span of twenty-one days, Chuck had three relationships end--one by choice, one by chance, and one by exhaustion. He snorted cocaine in a graveyard. He walked a half-mile through a bean field. A man in Dickinson, North Dakota, explained to him why we have fewer windmills than we used to. He listened to the KISS solo albums and the Rod Stewart box set. At one point, poisonous snakes became involved. The road is hard. From the Chelsea Hotel to the swampland where Lynyrd S",Imaginary Friends.,Man Who Tricked a Ghost.,"El plan infinito. El plan infinito, de la celebrada escritora latinoamericana Isabel Allende, es su primera novela situada en los Estados Unidos y con personajes norteamericanos. Es la hipnotizante y conmovedora saga de un hombre que, durante los largos anos de su juventud y madurez, busca amor y aceptacion. Allende traza la pobreza y abandono de la ninez de su protagonista, la persecucion de las pandillas de un barrio de Los Angeles, el horror de sus experiencias en Vietnam, su vida frenetica como abogada en San Francisco..., una serie de frustraciones que por fin se resuelven en acogida y redencion.","Montaillou: The Promised Land of Error. In the early 1300's the village of Montaillou & the surrounding mountainous region of Southern France was full of heretics. When Jacquest Fournier, Bishop of Pamiers, launched an elaborate Inquisition to stamp them out, the peasants & shepherds he interrogated revealed, along with their position on official Catholicism, many details of their everyday life. Basing his absorbing study on these vivid, carefully recorded statements of peasants who lived more than 600 years ago--Pierre Clergue, the powerful village priest & shameless womanizer is even heard explaining his techniques of seduction--eminent historian Le Roy Ladurie reconstructs the economy & social structure of the community & probes the most intimate aspects of medieval life: love & marriage, gestures & emotions, conversations & gossip, clans & factions, crime & violence, concepts of time & space, attitudes to the past, animals, magic & folklore, death & beliefs about the other world.","The Nightmare Chronicles. It begins in an old tenement with a horrifying crime. It continues after midnight, when a young boy, held captive in a basement, is filled with unearthly visions of fantastic and frightening worlds. How could his kidnappers know that the ransom would be their own souls? For, as the hours pass, the boy's nightmares invade his captors like parasites-and soon, they become real. This audiobook also contains the short stories ""Underworld,"" ""O Rare and Most Esquisite,"" ""The Rendering Man,"" ""The Fruit of Her Womb,"" ""The Hurting Season,"" ""Chosen,"" ""The Night Before Alec Got Married,"" ""Only Connect,"" ""The Little Mermaid,"" ""Damned if You Do,"" and ""The Ripening Sweetness of Late Afternoon."" You can also listen to the acclaimed novelettes, ""White Chapel"" and ""I am Infinite, I Contain Multitudes.""","Choke. Victor Mancini has devised a complicated scam to pay for his mother's hospital care: pretend to be choking on a piece of food in a restaurant and the person who 'saves you' will feel responsible for you for the rest of their lives. Multiply that a couple of hundred times and you generate a healthy flow of cheques, week in, week out. Victor also works at a theme park with a motley group of losers, cruises sex addiction groups for action, and visits his mother, whose Alzheimer's disease now hides what may be the startling truth about his parentage.",Genres in Dialogue: Plato and the Construct of Philosophy.,"Primo Levi: A Life. Primo Levi wrote books that have been called ""the essential works of humankind,"" including Survival in Auschwitz and The Periodic Table. Yet he lived an unremarkable existence, remaining to his death in the house in which he'd been born; managing a paint and varnish factory for thirty years; and tending his invalid mother to the end. Now, in a matchless account, Ian Thomson unravels the strands of an influential life.","Code Orange. Walking around New York City was what Mitty Blake did best. He loved the city, and even after 9/11, he always felt safe. Mitty was a carefree guy: he didn't worry about terrorists or blackouts or grades or anything, which is why he was late getting started on his Advanced Bio report. Mitty does feel a little pressure to hand something in if he doesn't, he'll be switched out of Advanced Bio, which would be unfortunate since Olivia's in Advanced Bio. So he considers it good luck when he finds some old medical books in his family's weekend house that focus on something he could write about. But when he discovers an old envelope with two scabs in one of the books, the report is no longer about the grades: it's about life and death. His own.This edge-of-your-seat thriller will leave you breathless.","Easy French Reader. The fun and easy way to quickly enhance your French reading skills ""Easy French Reader"" is based on the premise that the best way to learn a language is to start reading it, immediately. Suitable for raw beginners to intermediate-level language learners, this popular title features engaging readings of progressive difficulty that allow you to rapidly build your comprehension. Find out what unfamiliar words and phrases mean with the book's helpful glossary Discover the nuances of French language and culture as well as the country's history through engaging texts Get a feel for authentic French society with readings from contemporary literature","The Analects of Confucius: A Philosophical Translation. Confucius is recognized as China's first and greatest teacher, and his ideas have been the fertile soil in which the Chinese cultural tradition has flourished. Now, here is a translation of the recorded thoughts and deeds that best remember Confucius -- informed for the first time by the manuscript version found at Dingzhou in 1973, a partial text dating to 55 BCE and only made available to the scholarly world in 1997. The earliest Analects yet discovered, this work provides us with a new perspective on the central canonical text that has defined Chinese culture -- and clearly illuminates the spirit and values of Confucius. Confucius (551-479 BCE) was born in the ancient state of Lu into an era of unrelenting, escalating violence as seven of the strongest states in the proto-Chinese world warred for supremacy. The landscape was not only fierce politically but also intellectually. Although Confucius enjoyed great popularity as a teacher, and many of his students found their way into pol","The Legacy of Luna: The Story of a Tree a Woman and the Struggle to Save the Redwoods. On December 18, 1999, Julia Butterfly Hill's feet touched the ground for the first time in over two years, as she descended from ""Luna,"" a thousandyear-old redwood in Humboldt County, California. Hill had climbed 180 feet up into the tree high on a mountain on December 10, 1997, for what she thought would be a two- to three-week-long ""tree-sit."" The action was intended to stop Pacific Lumber, a division of the Maxxam Corporation, from the environmentally destructive process of clear-cutting the ancient redwood and the trees around it. The area immediately next to Luna had already been stripped and, because, as many believed, nothing was left to hold the soil to the mountain, a huge part of the hill had slid into the town of Stafford, wiping out many homes. Over the course of what turned into an historic civil action, Hill endured El Nino storms, helicopter harassment, a ten-day siege by company security guards, and the tremendous sorrow brought about by an old-growth forest's destructi","The Wise Woman. Alys joins a nunnery to escape the poverty of her life on the moor with her foster mother, Morach, the local wise woman with whom she lives as an outcast, but she soon finds herself thrown back into the world when Henry VIII's wreckers destroy her sanctuary. Summoned to the castle as the old lord's scribe, she falls obsessively in love with his son Hugo, who is married to Catherine. Driven to desperation by her desire, she summons the most dangerous powers Morach has taught her, but soon the passionate triangle of Alys, Hugo, and Catherine begins to explode, launching them into uncharted sexual waters. The magic Alys has conjured now has a life of its own -- a life that is horrifyingly and disastrously out of control. Is she a witch? Since heresy means the stake, and witchcraft the rope, Alys is in mortal danger, treading a perilous path between her faith and her own female power. Synopsis from Barnes & Noble.",Critique of Pure Reason (Studies in the History of Philosophy).,Pop Goes the Weasel.,"Regeneration (Species Imperative #3). With the alien Dhryn helplessly following an instinct-driven migratory path through the inhabited spaceways--bringing about the annihilation of other races that lie along the star trail they are following--time is running out for all sentient life forms. Only Dr. Mackenzie Connor and her team stand any chance of solving the deadly puzzle of the Dhryn and the equally mysterious Ro. Are the Ro the universe's last hope of halting the deadly Dhryn migration? Or are they something far more sinister? As the only human accepted by the Dhryn as one of their own, Mac perhaps can intervene and open a line of communication to the Dhryn. And her friend and fellow researcher. Dr. Emily Mamani, may prove key to the process, for she is the only human who has survived possession by the Ro. Can these two biologists solve the riddle of the Dhryn and the Ro before their part of the galaxy becomes as dead as the region known as the Chasm?","Weetzie Bat (Weetzie Bat #1). In 1989 Francesca Lia Block made a dazzling entrance into the literary scene with what would become one of the most talked-about books of the decade; Weetzie Bat.This poetic roller coaster swoop has a sleek new design to match its new sister and brother books, Goat Girlsand Beautiful Boys.Rediscover the magic of Weetzie Bat,Ms. Block's sophisticated, slinkster-cool love song to L.A., the book that shattered the standard, captivated readers of all generations, and made Francesca Lia Block one of the most heralded authors of the last decade. This could be a book about cheap cheese and bean burritos, slinkster dogs, lanky lizards and rubber chickens ...Or strawberry sundaes with marshmallow toppings, surfing, stage-diving and sleeping on the beach ...It could even be a book about magic. But what it's definitely about is Weetzie Bat, her best friend Dirk and their search across L.A. for the most dangerous angel of all ...true love.","To the Nines (Stephanie Plum #9). Stephanie Plum's got rent to pay, people shooting at her, and psychos wanting her dead every day of the week (much to the dismay of her mother, her family, the men in her life, the guy who slices meat at the deli...oh, the list goes on). An ordinary person would cave under the pressure. But hey, she's from Jersey. Stephanie Plum may not be the best bounty hunter in beautiful downtown Trenton, but she's pretty darn good at turning bad situations her way...and she always gets her man. In To the Nines, her cousin Vinnie (who's also her boss) has posted bail on Samuel Singh, an illegal immigrant. When the elusive Mr. Singh goes missing, Stephanie is on the case. But what she uncovers is far more sinister than anyone imagines and leads to a group of killers who give new meaning to the word hunter. In a race against time that takes her from the Jersey Turnpike to the Vegas Strip, Stephanie Plum is on the chase of her life.","Ranma 1/2 Vol. 34 (Ranma ½ (US 2nd) #34). Ranma Saotome never thought a martial arts training mission to China would turn out like this An accidental dunk in a cursed spring changes boy Ranma into a young girl, every time he is splashed with cold water. Hot water reverses the effect - but only until next time. Akane Tendo is shocked when she wins a contest by being the 10,000th girl at the beach who isn't able to swim! The locals reward her with an enchanted jellyfish bathing suit that has the uncanny power to enable its wearer to swim. In return for this prize she must enter a long-distance swimming competition against a group of girls all wearing the same magical bathing suit. Akane takes the lead, but a dangerous surprise awaits her at the finish line! Will Ranma dive in and save her in time?","Alles ist erleuchtet. Der ukrainische Ubersetzer Alex liebt die Frauen und das Geld. Den Mann, den er spater liebevoll seinen ""Helden"" nennen soll, kann er am Anfang nicht gar so richtig leiden. Der ""Held"" ist in die Ukraine gekommen, um seine eigene Vergangenheit und die seines Grossvaters, der im Zweiten Weltkrieg hier von einer Frau gerettet worden war, aufzuspuren. Alex ""bekummert"" den ""verwohnten Juden"", fahrt mit ihm im Schlepptau seines Grossvaters und der Promenadenmischung Sammy Davis jr. jr. in einem klapprigen Auto durchs Land -- und lernt ihn wahrend dieser abenteuerlichen Fahrt als Freund und Kameraden kennen.So viel ist sicher: Jonathan Safran Foer ist ein Phanomen. Mit Alles ist erleuchtetnamlich ist ihm quasi aus dem Nichts ein ganz grosser Wurf gelungen. Denn Foer ist ein Autor, der sogar in den kleinen Ungenauigkeiten, die er seinem ukrainischen Protagonisten angedeihen lasst, ungemein prazise verfahrt. In seinen schlechtesten Momenten klingt Alles ist erleuchtetnach Paul Auster, T. C. Boy","Lonesome Dove. A love story, an adventure, and an epic of the frontier, Larry McMurtry's Pulitzer Prize-- winning classic, Lonesome Dove, the third book in the Lonesome Dove tetralogy, is the grandest novel ever written about the last defiant wilderness of America. Journey to the dusty little Texas town of Lonesome Dove and meet an unforgettable assortment of heroes and outlaws, whores and ladies, Indians and settlers. Richly authentic, beautifully written, always dramatic, Lonesome Dove is a book to make us laugh, weep, dream, and remember.","The Beach House. Jack Mullen is in law school in New York City when the shocking news comes that his brother Peter has drowned in the ocean off East Hampton. Jack knows his brother and knows this couldnt be an accident. Someone must have wanted his brother dead. But the powers that be say otherwise. As Jack tries to uncover details of his brothers last night, he confronts a barricade of lawyers, police, and paid protectors who separate the multibillionaire summer residents from local workers like Peter. And he learns that his brother wasnt just parking cars at the summer parties of the rich. He was making serious money satisfying the sexual needs of the richest women and men in town. The Beach Housereveals the secret lives of celebrities in a breathtaking drama of revengewith a finale so shocking it could only have come from the mind of James Patterson.","The Children of Henry VIII. At his death in 1547, King Henry VIII left four heirs to the English throne: his only son, the nine-year-old Prince Edward; the Lady Mary, the adult daughter of his first wife, Catherine of Aragon; the Lady Elizabeth, the daughter of his second wife, Anne Boleyn, and his young great-niece, the Lady Jane Grey. These are the players in a royal drama that ultimate led to Elizabeth's ascension to the throne--one of the most spectacularly successful reigns in English history.","Never Let Me Go. A tale of deceptive simplicity that slowly reveals an extraordinary emotional depth and resonance - and takes its place among Kazuo Ishiguro's finest work. From the acclaimed author of The Remains of the Day and When We Were Orphans, a moving new novel that subtly re-imagines our world and time in a haunting story of friendship and love. As a child, Kathy-now thirty-one years old-lived at Hailsham, a private school in the scenic English countryside where the children were sheltered from the outside world, brought up to believe that they were special and that their well-being was crucial not only for themselves but for the society they would eventually enter. Kathy had long ago put this idyllic past behind her, but when two of her Hailsham friends come back into her life, she stops resisting the pull of memory. And so, as her friendship with Ruth is rekindled, and as the feelings that long ago fueled her adolescent crush on Tommy begin to deepen into love, Kathy recalls their years at H","Three Greek Plays: Prometheus Bound/Agamemnon/The Trojan Women. Three classic Greek tragedies are translated and critically introduced by Edith Hamilton.","Last Chance Saloon. Ever since legwarmers were cool, best friends Tara, Katherine, and Fintan have survived small-town ennui, big-city heartbreak, and endless giddy nights out on the town. But now that they've graduated to their slightly more serious thirties, only Fintan has what can honestly be called a ""love life."" With Tara struggling daily with her eternal diet--and her dreadful, penny-pinching boyfriend--and Katherine keeping her single existence as organized as her drawer full of matching bra and panty sets, it seems they'll never locate the exit door out of the ""last chance saloon."" But it's always when you are least ready for change that fate insists on one. And when catastrophe inevitably follows crisis, the lives of three best friends are sure to change in unexpected ways ... and not necessarily for the worse. You devoured the hilarious antics of Claire in Watermelon. You laughed 'til you cried in Lucy Sullivan Is Getting Married. You took a vacation gone mad in Rachel's Holiday. You flew away",The Trail of Tears.,"Legacy of the Darksword (The Darksword #4). It is twenty years since the once-magical land of Thimhallan was shattered by the forging of the Darksword. The survivors of that catastrophe now live on Earth, bereft of magic and hope, forbidden to return home. Only Joram remains behind on the world ravaged by his Darksword. Although the magic weapon has been destroyed--and with it, Joram's power--rumors have risen that Joram has forged a second Darksword. Now, as a merciless alien race threatens Earth with annihilation, Earth's desperate leaders look to Joram as their only hope. But even as his old friend Saryon begins the perilous journey to seek his aid, the embittered Joram has his own plans for the weapon. And Joram is not the only one. Soon a new menace looms, foreshadowing betrayal, enslavement, and death to humans and Thimhallans alike. Returning to one of their best-loved fantasy series, Margaret Weis and Tracy Hickman bring alive a sweeping tale of intrigue and magic.","Ghost In the Shell 2: Innocence: After the Long Goodbye. Part man, but mostly machine, Batou is the toughest son of a bitch employed by a mysterious agency known as Section 9. When terrorists come to town, Batou straps on a battery of high-tech weaponry and goes to work. But even a hulking cyborg like Batou has a sensitive side. After all these years, he still mourns the loss of his partner, Maj. Motoko Kusanagi. And now his beloved basset hound Gabriel has mysteriously disappeared. To complicate matters even further, he's having reoccurring dreams about a son he never had. Combating violent insurgents is one thing; getting in touch with your feelings is totally different. Suddenly, Batou must grapple with the thing he understands the least: his own humanity! Expanding on the concepts explored in the movie, Ghost in the Shell 2: Innocence, Masaki Yamada's novel also stands as a wholly original piece of work not tethered directly to any Ghost in the Shell continuity. Say hello to After The Long Goodbye--highly recommended for readers lookin",Von Helden Und Schelmen: Tall Tales and Legends for Intermediate Students of German.,"Dodge Caravan/Plymouth Voyager/Chrysler Town & Country 96-02 (Haynes Manuals). Haynes offers the best coverage for cars, trucks, vans, SUVs and motorcycles on the market today. Each manual contains easy to follow step-by-step instructions linked to hundreds of photographs and illustrations. Included in every manual: troubleshooting section to help identify specific problems; tips that give valuable short cuts to make the job easier and eliminate the need for special tools; notes, cautions and warnings for the home mechanic; color spark plug diagnosis and an easy to use index.","Great Expectations. In what may be Dickens's best novel, humble, orphaned Pip is apprenticed to the dirty work of the forge but dares to dream of becoming a gentleman -- and one day, under sudden and enigmatic circumstances, he finds himself in possession of ""great expectations."" In this gripping tale of crime and guilt, revenge and reward, the compelling characters include Magwitch, the fearful and fearsome convict; Estella, whose beauty is excelled only by her haughtiness; and the embittered Miss Havisham, an eccentric jilted bride.","Coyote Dreams (Walker Papers #3). Much of the city can't wake up. And more are dozing off each day. Instead of powerful forces storming Seattle, a more insidious invasion is happening. Most of Joanne Walker's fellow cops are down with the blue flu--or rather the blue sleep. Yet there's no physical cause anyone can point to--and it keeps spreading. It has to be magical, Joanne figures. But what's up with the crazy dreams that hit her every time she closes her eyes? Are they being sent by Coyote, her still-missing spirit guide? The messages just aren't clear. Somehow Joanne has to wake up her sleeping friends while protecting those still awake, figure out her inner-spirit dream life and, yeah, come to terms with these ""other"" dreams she's having about her boss....",The Gettysburg Address. The words of President Abraham Lincoln in the Gettysburg Address are as relevant and meaningful today as they were in 1863. This magnificent book is a stunning exploration of some of the most powerful words ever spoken in American history.,The Ivy Tree.,"A Wild Sheep Chase (The Rat #3). A marvelous hybrid of mythology and mystery, A Wild Sheep Chaseis the extraordinary literary thriller that launched Haruki Murakami's international reputation. It begins simply enough: A twenty-something advertising executive receives a postcard from a friend, and casually appropriates the image for an insurance company's advertisement. What he doesn't realize is that included in the pastoral scene is a mutant sheep with a star on its back, and in using this photo he has unwittingly captured the attention of a man in black who offers a menacing ultimatum: find the sheep or face dire consequences. Thus begins a surreal and elaborate quest that takes our hero from the urban haunts of Tokyo to the remote and snowy mountains of northern Japan, where he confronts not only the mythological sheep, but the confines of tradition and the demons deep within himself. Quirky and utterly captivating, A Wild Sheep Chase is Murakami at his astounding best.",Folly and Glory (The Berrybender Narratives #4).,"The Body in the Lighthouse. Something was very wrong on Sanpere this summer . . . To escape the misery of a sweltering August in Aleford, Massachusetts, caterer and minister's wife Faith Fairchild and her family head for their cottage on Maine's peaceful Sanpere Island in Penobscot Bay. But things have changed since their last visit. An aggressive developer is moving forward on plans that will destroy the unique ambience of the island, infuriating residents. Tensions are running dangerously high, and soon murder rears its hideous head. Faith discovers a corpse while exploring the grounds of Sanpere's historic lighthouse. With fear running rampant and volatile emotions approaching the detonation point, the intrepid sleuth must track down a killer for the sake of a friend and the island she loves.","Maggie: A Girl of the Streets and Other Short Fiction. Not yet famous for his Civil War masterpiece, The Red Badge of Courage, Stephen Crane was unable to find a publisher for his brilliant Maggie: A Girl of the Streets, finally printing it himself in 1893. Condemned and misunderstood during Crane's lifetime, this starkly realistic story of a pretty child of the Bowery has since been recognized as a landmark work in American fiction. Now Crane's great short novel of life in turn-of-the-century New York is published in its original form, along with four of Crane's best short stories-The Blue Hotel, The Bride Comes to Yellow Sky, The Monster, and The Open Boat-stories of such remarkable power and clarity that they stand among the finest short stories ever written by an American.","The Glass Castle. The second child of a scholarly, alcoholic father and an eccentric artist mother discusses her family's nomadic upbringing from the Arizona desert, to Las Vegas, to an Appalachian mining town, during which her siblings and she fended for themselves while their parents outmaneuvered bill collectors and the authorities.",Race of Scorpions (The House of Niccolo #3).,Montaillou: Cathars and Catholics in a French Village 1294-1324.,"Shutter Island. The year is 1954. U.S. Marshal Teddy Daniels and his new -partner, Chuck Aule, have come to Shutter Island, home of Ashecliffe Hospital for the Criminally Insane, to investigate the disappearance of a patient. Multiple-murderess Rachel Solando is loose somewhere on this barren island, despite having been kept in a locked cell under constant surveillance. As a killer hurricane bears relentlessly down on them, a strange case takes on even darker, more sinister shades--with hints of radical experimentation, horrifying surgeries, and lethal countermoves made in the cause of a covert shadow war. No one is going to escape Shutter Island unscathed, because nothing at Ashecliffe Hospital is remotely what it seems","Der Richter und sein Henker. ""Der Richter und sein Henker"" ist einer seiner beruhmtesten Romane - die Geschichte eines Mordes. Mit den reisserischen Mitteln einer Detektivstory erzahlt er die Aufklarung einer Gewalttat an einem Polizeileutnant, den letzten Fall des totkranken Komissars Barlach - die Geschichte einer hintergrundigen Pointe.","The Story of Chicago May. A New York Times Bestselling AuthorAt nineteen, May ran away from her home in Ireland to experience life in America, eventually ending up in Chicago. Compellingly attractive to men, she became a prostitute and eventually was hailed as ""Queen of the Underworld."" Falling in love with a big league criminal, May followed him to Paris where they successfully robbed the American Express. Apprehended, tried and spending time in prison, May returns to her life in America. O'Faolain brings a sympathetic scrutiny to this extraordinary life, reaching across decades for points of connection and understanding.","Mission of Honor (Tom Clancy's Op-Center #9). The Ops-Center team faces untold chaos on a mission in Africa in the ninth novel in the #1 New York Timesbestselling series created by Tom Clancy and former Department of State official Steve Pieczenik.On the surface it seems a simple case: a group of African militiamen have kidnapped a priest and ordered all Catholic missionaries to leave the nation of Botswana. But the Vatican thinks otherwise. At its urging, Op-Center investigates--and finds out that the real purpose of the crime is a plan by outside forces to destabilize the government and seize the nation's diamond mines. With its military team, Striker, out of commission, Op-Center must reinvent itself--and head straight into the crossfire of an African war.","The Portable Thoreau. Henry David Thoreau dedicated his life to preserving his freedom as a man and an artist. Nature was the fountainhead of his inspiration and his refuge from what he considered the follies of society. Heedless of his friends' advice to live in a more orthodox manner, he determinedly pursued his own inner bent, which was that of a poet-philosopher, in prose and verse. Carl Bode brings together the best of Thoreau's works in The Portable Thoreau, a comprehensive collection of the writings of a unique and profoundly influential American thinker.","Peony in Love. In seventeenth-century China, three women become emotionally involved with The Peony Pavilion, a famed opera rumored to cause lovesickness and even death, including Peony, the cloistered daughter of a wealthy scholar, who succumbs to its spell only to return after her death as a ""hungry ghost"" to haunt her former fiance, who has married another.","A Simple Habana Melody. It is 1947, and Israel Levis, a Cuban composer whose life had once been a dream of music, love, and sadness, returns to Cuba after being mistakenly imprisoned during the Nazi occupation of France. When Levis arrives back in Habana, his mind returns to an unrequited romance with the alluring Rita Valladares, a singer for whom Levis had written his most famous song, ""Rosas Puras."" This 1928 composition became the most famous rumba in the world and changed American and European tastes in music and dance forever. A love story--of art, family, and country--A Simple Habana Melodyis a virtuoso performance from one of our most important writers.",Driving Force. The New York Times bestseller. Transporting racehorses is big business for ex-jockey Freddie Croft. But when one of his drivers breaks a cardinal rule--never pick up a hitchhiker--the results are fatal. Now strange nighttime stalkers and unseen conspirators are weaving a web of deceit and danger that Freddie might never escape.,"The Fountains of Paradise. In the 22nd century visionary scientist Vannevar Morgan conceives the most grandiose engineering project of all time, and one which will revolutionize the future of humankind of space: a Space Elevator, 36,000 kilometres high, anchored to an equatorial island in the Indian Ocean.",The Work of Mourning.,"Twenty Love Poems and a Song of Despair. Drawn from the most intimate and personal associations, Pablo Neruda's most beloved collection of poetry juxtaposes the exuberance of youthful passion with the desolation of grief, the sensuality of the body with the metaphorical nuances of nature. Pulitzer Prize-winning poet W. S. Merwin's masterly translation faces the original Spanish text. This edition also features an insightful Introduction by Cristina Garcia. More than eighty years after its publication, Twenty Love Poems and a Song of Despairstands as an essential collection that continues to inspire lovers and poets around the world.","The Gravedigger's Daughter. In 1936 the Schwarts, an immigrant family desperate to escape Nazi Germany, settle in a small town in upstate New York, where the father, a former high school teacher, is demeaned by the only job he can get: gravedigger and cemetery caretaker. After local prejudice and the family's own emotional frailty result in unspeakable tragedy, the gravedigger's daughter, Rebecca, begins her astonishing pilgrimage into America, an odyssey of erotic risk and imaginative daring, ingenious self-invention, and, in the end, a bittersweet - but very ""American"" - triumph. ""You are born here, they will not hurt you"" - so the gravedigger has predicted for his daughter, which will turn out to be true. In The Gravedigger's Daughter, Oates has created a masterpiece of domestic yet mythic realism, at once emotionally engaging and intellectually provocative: an intimately observed testimony to the resilience of the individual to set beside such predecessors as The Falls, Blonde, and We Were the Mulvaneys.","The End of Faith: Religion Terror and the Future of Reason. In The End of Faith, Sam Harris delivers a startling analysis of the clash between reason and religion in the modern world. He offers a vivid, historical tour of our willingness to suspend reason in favor of religious beliefs--even when these beliefs inspire the worst human atrocities. While warning against the encroachment of organized religion into world politics, Harris draws on insights from neuroscience, philosophy, and Eastern mysticism to deliver a call for a truly modern foundation for ethics and spirituality that is both secular and humanistic. Winner of the 2005 PEN/Martha Albrand Award for Nonfiction.","Sprig Muslin. Finding so young and pretty a girl as Amanda wandering unattended, Sir Gareth Ludlow knows it is his duty as a man of honour to restore her to her family. But it is to prove no easy task for the Corinthian. His captive in spring muslin has more than her rapturous good looks and bandboxes to aid her - she is also possessed of a runaway imagination... A typically enthralling historical novel, Sprig Muslinshows the skill which has kept Georgette Heyer a huge and devoted readership to this day.","Selected Poems. The one hundred and fifty-six poems here, arranged in twelve sections and introduced by E. E. Cummings's biographer, include his most popular poems, spanning his earliest creations, his vivacious linguistic acrobatics, up to his last valedictory sonnets. Also featured are thirteen drawings, oils, and watercolors by Cummings, most of them never before published. The selection includes most of the favorites plus many fresh and surprising examples of Cummings's several poetic styles. The corrected texts established by George J. Firmage have been used throughout.","100 Love Sonnets. Against the backdrop of Isla Negra - the sea and wind, the white sand with its scattering of delicate wild flowers, the hot sun and salty smells of the Pacific - the poet sets the poems in celebration of his love. The subject of that love is Matilde Urrutia de Neruda, the poet's 'beloved wife'.","The Coal Tattoo. Life isn't easy for twenty-two year old Easter and her teenage sister Anneth, who were left parentless as young children. While Easter, a devout Pentecostal, finds solace in the powerful music of her church, Anneth seeks comfort in the rougher edges of life found in dancing, drinking, and fast living. Easter believes in tradition and is intent on rearing her wild young sister properly, but it's only a matter of time before a wedge is driven between them-and threatens to undo their bond forever. . . .","Eat Right 4 Your Type. Ever wonder why one diet works for one person, but not for another? After decades of research, Dr. Peter D'Adamo has discovered the role one's blood type plays in determining which foods are best for an individual's diet. Eat Right 4 Your Typeteaches readers how to optimize their types to achieve the greatest state of health and well-being.","The Life of Charlotte Brontë. 'It is in every way worthy of what one great woman should have written of another.'Patrick Bronte Elizabeth Gaskell's The Life of Charlotte Bronte(1857) is a pioneering biography of one great Victorian woman novelist by another. Gaskell was a friend of Charlotte Bronte, and, having been invited to write the official life, determined both to tell the truth and to honour her friend. She contacted those who had known Charlotte and travelled extensively in England and Belgium to gather material. She wrote from a vivid accumulation of letters, interviews, and observation, establishing the details of Charlotte's life and recreating her background. Through an often difficult and demanding process, Gaskell created a vital sense of a life hidden from the world. This edition is based on the Third Edition of 1857, revised by Gaskell. It has been collated with the manuscript, and the previous two editions, as well as with Charlotte Bronte's letters, and thus offers fuller information about the pro","The Eclogues of Virgil. Virgil's great lyrics, rendered by the acclaimed translator of The Odes of Horaceand Gilgamesh The Eclogues of Virgilgave definitive form to the pastoral mode, and these magically beautiful poems, which were influential in so much subsequent literature, perhaps best exemplify what pastoral can do. ""Song replying to song replying to song,"" touchingly comic, poignantly sad, sublimely joyful, the various music that these shepherds make echoes in scenes of repose and harmony, and of hardship and trouble in work and love. A bilingual edition, The Eclogues of Virgilincludes concise, informative notes and an Introduction that describes the fundamental role of this deeply original book in the pastoral tradition.",Portrait Photographer's Handbook.,"Sanctuary (Dragon Jousters #3). In the third novel of the best-selling Dragon Jousters series, The Altan serf Vetch has escaped the enemy kingdom of Tia, only to find his homeland, Alta, enslaved by the evil Priest-Kings. With a small band of followers, Vetch must gather a secret army of dragon riders to rid their world of war and magical domination once and for all.","Murder in Amsterdam: The Death of Theo van Gogh and the Limits of Tolerance. Ian Buruma returns to his native land to explore the great dilemma of our time through the story of the brutal murder of controversial Dutch filmmaker Theo van Gogh at the hands of an Islamic extremist. It was the emblematic crime of our moment: On a cold November day in Amsterdam, an angry young Muslim man, Mohammed Bouyeri, the son of Moroccan immigrants, shot and killed the celebrated and controversial Dutch filmmaker Theo van Gogh, great-grandnephew of Vincent and iconic European provocateur, for making a movie with the vocally anti-Islam Somali-born Dutch politician Ayaan Hirsi Ali that ""blasphemed"" Islam. After Bouyeri shot van Gogh, he calmly stood over the body and cut his throat with a curved machete, as if performing a ritual sacrifice, which in a very real sense he was. The murder horrified quiet, complacent, prosperous Holland, a country that prides itself on being a bastion of tolerance, and sent shock waves across Europe and around the world. Shortly thereafter, Ian Burum","Hoodwinked. Drug-dealing blood-brothers Keith and Kevin Banks are sitting on top of the world with enough dough and honeys to last them for sure. Just when everything seems to be going their way, jealousy secretly takes hold of their close friend, Tee. Knowing that women are Keith's weakness and downfall, Tee goes out of his way to bring Keith's success to a devastating halt by using the stunning, sexy Selina to set him up. But his plan falls short when Selina and Keith fall for each other. Keith's down chick and baby mama, Tukey, attempts to regain Keith's love by taking a case for him and ending up behind bars, only for Keith to marry the home-wrecking Selina. Baffled, envious, and full of rage, Tukey plans and carries out a plot so vicious, all the money in the world can't help Keith recover.","Existential Meditation. In this three-part discourse, Simon Cleveland offers a perspective on life derived partly from the latest scientific theories in cosmology and quantum mechanics and partly from analysis on the works of some of the greatest writers and philosophers of the nineteenth and twentieth centuries. The book explores topics such as the meaning of time, consciousness and the development of the essence. The author also examines the genesis of the concept of immortality.","Dark Watch (Oregon Files #3). The author of the bestselling NUMA and Dirk Pitt series returns with an all-new novel of adventure and intrigue featuring his unbeatable hero of the high seas-Juan Cabrillo. Cabrillo and his motley crew aboard the clandestine spy ship Oregon have made a very comfortable and very dangerous living working for high-powered Western interests. But their newest clients have come from the Far East to ask for Cabrillo's special brand of assistance: a consortium of Japanese shipping magnates whose fortunes are being threatened by brutal pirates trolling the waters of Southeast Asia. Normally, such attacks on the high seas are limited to smaller ships and foreign-owned yachts-easy targets on the open ocean. Now, however, giant commercial freighters are disappearing. But when Cabrillo confronts the enemy, he learns that the pirates' predations hide a deadly international conspiracy-a scheme of death and slavery that Juan Cabrillo is going to blow out of the water.",The Guide to Dan Brown's the Solomon Key.,"Dark Star Safari: Overland from Cairo to Cape Town. In Dark Star Safari the wittily observant and endearingly irascible Paul Theroux takes readers the length of Africa by rattletrap bus, dugout canoe, cattle truck, armed convoy, ferry, and train. In the course of his epic and enlightening journey, he endures danger, delay, and dismaying circumstances. Gauging the state of affairs, he talks to Africans, aid workers, missionaries, and tourists. What results is an insightful mediation on the history, politics, and beauty of Africa and its people. In a new postscript, Theroux recounts the dramatic events of a return to Africa to visit Zimbabwe.","Carpe Demon (Demon-Hunting Soccer Mom #1). Kate Connor used to be a demon hunter: Now she's a stay-at-home mom, a ""glorified chauffeur for pep squad practice and Gymboree play dates."" But when a demonic assassin shows up at her suburban home minutes before an important dinner party, the retired Hunter is forced back into action to save her town -- and her freshly baked mini-quiches -- from the invading fiend and his army of the undead. Kate's husband and her two kids don't know anything about her demon-killing past -- and she wants to keep it that way. So while doing what supermoms do -- raising an inquisitive two-year old, dealing with a teenage girl's myriad of social issues, supporting an overworked husband running for county attorney, etc. -- Kate also finds time to unravel the mystery behind the sudden ghoulish invasion. It seems a master demon named Goramesh has come to town in search of an invaluable religious artifact secreted in a much-storied cathedral. But in order to obtain the relic, Goramesh must first find a suit","Cosmopolis. It is an April day in the year 2000 and an era is about to end -- those booming times of market optimism when the culture boiled with money and corporations seemed more vital and influential than governments. Eric Packer, a billionaire asset manager at age twenty-eight, emerges from his penthouse triplex and settles into his lavishly customized white stretch limousine. On this day he is a man with two missions: to pursue a cataclysmic bet against the yen and to get a haircut across town. His journey to the barbershop is a contemporary odyssey, funny and fast-moving. Stalled in traffic by a presidential motorcade, a music idol's funeral and a violent political demonstration, Eric receives a string of visitors -- his experts on security, technology, currency, finance and theory. Sometimes he leaves the car for sexual encounters and sometimes he doesn't have to. Cosmopolis, Don DeLillo's thirteenth novel, is both intimate and global, a vivid and moving account of a spectacular downfall. ""","Charlie and the Chocolate Factory (Abridged). Based on the upcoming film adaptation of Roald Dahl's beloved classic from Warner Bros. and Roadshow Pictures, in theaters in July, this joke book delivers 80 pages of laughs. Illustrations.","Walking the Bible: A Journey by Land Through the Five Books of Moses. Both a heart-racing adventure and an uplifting quest, Walking the Bibledescribes one man's epic odyssey--by foot, jeep, rowboat, and camel--through the greatest stories every told. From crossing the Red Sea to climbing Mount Sinai to touching the burning bush, Bruce Feiler's inspiring journey will forever change your view of some of history's most storied events.","Coraline. 'An electrifyingly creepy tale likely to haunt young readers for many moons.... a real bedtime-buster'. Read an exclusive excerpt at BookBrowse today. Reading age approx. 9 yrs +. The day after they moved in, Coraline went exploring.... In Coraline's family's new flat are twenty-one windows and fourteen doors. Thirteen of the doors open and close. The fourteenth is locked, and on the other side is only a brick wall, until the day Coraline unlocks the door to find a passage to another flat in another house just like her own. Only it's different. At first, things seem marvelous in the other flat. The food is better. The toy box is filled with wind-up angels that flutter around the bedroom, books whose pictures writhe and crawl and shimmer, little dinosaur skulls that chatter their teeth. But there's another mother, and another father, and they want Coraline to stay with them and be their little girl. They want to change her and never let her go. Other children are trapped there as well,","The House on Mango Street. The House on Mango Streettells the story of Esperanza Cordero, whose neighborhood is one of harsh realities and hard beauty. Esperanza doesn't want to belong--not to her rundown neighborhood, and not to the low expectations the world has for her. Esperanza's story is that of a young girl coming into her power, and inventing for herself what she will become. An unabridged recording on 2 CDs (2 hours), read by the author.","The Odyssey. A story encompassing the entirety of human emotion, ""The Odyssey"" remains one of the greatest literary works in the history of the world. It is the story of Odysseus and his ten-year journey to return home to his family and kingdom. Having angered the god Poseidon along the way, he finds him-self cast adrift at sea facing dangers beyond measure and trials beyond understanding. Truly a staple of literature and an epic adventure.","Savage Beauty: The Life of Edna St. Vincent Millay. Thomas Hardy once said that America had two great attractions: the skyscraper and the poetry of Edna St. Vincent Millay. The most famous poet of the Jazz Age, Millay captivated the nation: She smoked in public, took many lovers (men and women, single and married), flouted convention sensationally, and became the embodiment of the New Woman. Thirty years after her landmark biography of Zelda Fitzgerald, Nancy Milford returns with an iconic portrait of this passionate, fearless woman who obsessed America even as she tormented herself. Chosen by USA Todayas one of the top ten books of the year, Savage Beautyis a triumph in the art of biography. Millay was an American original--one of those rare characters, like Sylvia Plath and Ernest Hemingway, whose lives were even more dramatic than their art.","The Opposite of Fate. Born into a family who believed in fate, Amy Tan has always looked for alternative ways to make sense of the world. And now, in The Opposite of Fate, her first book of nonfiction, she shares her thoughts on how she escaped the expectations and curses of her past, and created her own destiny.Amy Tan tells of her family, of the ghosts that inhabit her computer, of specters of illness, ski trips, the pliability of memory, rock and roll, and the twinned mysteries of faith and fate. Whether she is remembering arguments with her mother in suburban California, recounting trips to an outdoor market in Shanghai, or describing her love-hate relationship with the CliffsNotes edition of her first book, The Joy Luck Club, her recollections offer an intimate glimpse of a bestselling writer whose own life story is as magical and hopeful as her fiction.",Maison Ikkoku Volume 9 (Maison Ikkoku #9).,The Innocents Abroad. The Innocents Abroad is one of the most prominent and influential travel books ever written about Europe and the Holy Land.,"Underworld (Star Wars: The Last of the Jedi #3). The search for survivors continues in this next adventure from bestselling author Jude Watson. The Empire has taken over the galaxy. Anakin Skywalker is now Darth Vader. Most of the Jedi are gone . . . . . . but a few remain. And it is up to former Jedi apprentice Ferus Olin and his streetsmart sidekick Trever to find them. No lead is too big or too small . . . even if it means walking into a trap set by the Empire.","The Fabric of the Cosmos: Space Time and the Texture of Reality. From the author of the Pulitzer Prize finalist The ELEGANT UNIVERSE comes the widely anticipated new book that unearths the strange and startling layers lying beneath the everyday world - and reality as we know it. In his characteristically witty and accessible prose, Greene explores the nature of space - from Newton's static realm, through Einstein's fusion of space and time, to recent breakthroughs suggesting that ours may be one of many island universes moving through the multi-dimensional fabric of space. We are introduced to the volatile world of quantum physics, paradoxical nature of time - which, according to the laws of physics, does not necessarily need to run in any one particular direction - and made to wonder: is there a unified theory of the universe?",Dominion.,"The Georgics of Virgil. John Dryden called Virgil's Georgics, written between 37 and 30 B.C.E., ""the best poem by the best poet."" The poem, newly translated by the poet and translator David Ferry, is one of the great songs, maybe the greatest we have, of human accomplishment in difficult--and beautiful--circumstances, and in the context of all we share in nature. The Georgicscelebrates the crops, trees, and animals, and, above all, the human beings who care for them. It takes the form of teaching about this care: the tilling of fields, the tending of vines, the raising of the cattle and the bees. There's joy in the detail of Virgil's descriptions of work well done, and ecstatic joy in his praise of the very life of things, and passionate commiseration too, because of the vulnerability of men and all other creatures, with all they have to contend with: storms, and plagues, and wars, and all mischance.","My Invented Country: A Nostalgic Journey Through Chile. Isabel Allende's first memory of Chile is of a house she never knew. The ""large old house"" on the Calle Cueto, where her mother was born and which her grandfather evoked so frequently that Isabel felt as if she had lived there, became the protagonist of her first novel, The House of the Spirits. It appears again at the beginning of Allende's playful, seductively compelling memoir My Invented Country, and leads us into this gifted writer's world. Here are the almost mythic figures of a Chilean family -- grandparents and great-grandparents, aunts, uncles, and friends -- with whom readers of Allende's fiction will feel immediately at home. And here, too, is an unforgettable portrait of a charming, idiosyncratic Chilean people with a violent history and an indomitable spirit. Although she claims to have been an outsider in her native land -- ""I never fit in anywhere, not into my family, my social class, or the religion fate bestowed on me"" -- Isabel Allende carries with her even today the","Rock 'n' Roll. Rock 'n' Rollis an electrifying collision of the romantic and the revolutionary. It is 1968 and the world is ablaze with rebellion, accompanied by a sound track of the Rolling Stones and Bob Dylan. Clutching his prized collection of rock albums, Jan, a Cambridge graduate student, returns to his homeland of Czechoslovakia just as Soviet tanks roll into Prague. When security forces tighten their grip on artistic expression, Jan is inexorably drawn toward a dangerous act of dissent. Back in England, Jan's volcanic mentor, Max, faces a war of his own as his free-spirited daughter and his cancer-stricken wife attempt to break through his walls of academic and emotional obstinacy. Over the next twenty years of love, espionage, chance, and loss, the extraordinary lives of Jan and Max spin and intersect until an unexpected reunion forces them to see what is truly worth the fight.","Jerusalem Inn (Richard Jury #5). A white Christmas couldn't make Newcastle any less dreary for Scotland Yard's Superintendent Richard Jury--until he met a beautiful woman in a snow-covered graveyard. Sensual, warm, and a bit mysterious, she could have put some life into his sagging holiday spirit. But the next time Jury saw her, she was cold--and dead. Melrose Plant. Jury's aristocratic sidekick wasn't faring much better. Snow bound at a stately mansion with a group of artists, critics, and idle-but-titled rich, he, too, encountered a lovely lady . . . or rather, stumbled over her corpse. What linked these two yuletide murders was a remote country pub where snooker, a Nativity scene, and an old secret would uncover a killer . . . or yet another death.",Tramps Like Us Volume 9.,"The Blind Watchmaker. Twenty years after its original publication, The Blind Watchmaker, framed with a new introduction by the author, is as prescient and timely a book as ever. The watchmaker belongs to the eighteenth-century theologian William Paley, who argued that just as a watch is too complicated and functional to have sprung into existence by accident, so too must all living things, with their far greater complexity, be purposefully designed. Charles Darwin's brilliant discovery challenged the creationist arguments; but only Richard Dawkins could have written this elegant riposte. Natural selection--the unconscious, automatic, blind, yet essentially nonrandom process Darwin discovered--has no purpose in mind. If it can be said to play the role of a watchmaker in nature, it is the blindwatchmaker in nature.","Murder Unleashed (Jack and Jamie #2). In this delightful second book in our wonderful new series created by veteran dog trainer Lee Charles Kelley, a clever kennel owner and his endearing canine companions once again work to solve baffling mysteries. Ex-New York cop turned kennel owner Jack Field is perfectly happy training dogs and living the simple life in the rustic woods of Maine. But once again, he and his girlfriend Jamie, the smart and sexy local coroner, are dragged into a mystery of remarkable proportions. When a prominent local judge is found dead in his car, his throat ripped open, with a ferocious boxer locked inside the car with him, all fingers point to the dog as the killer. But when Jack is called in to handle the growling beast, he soon realizes that this frightened boxer is no killer, and he's determined to find the real culprit before his doggy friend is put down for the judge's death. Soon, Jack and Jamie are immersed in a scandal that reaches throughout the town, involving the brazen local marijuana de","The Best of America's Test Kitchen 2007: The Year's Best Recipes Equipment Reviews and Tastings. With the debut of this four-color annual cookbook, the editors at America's Test Kitchen feature the best of the best--the recipes and culinary discoveries from a year's worth of cooking and testing for our books, magazines, and public television cooking show. No fan of our franchise should be without this collection. Featuring 150 of our favorite recipes from the nearly 1,000 developed last year, test cooks tell readers in their own words what they learned and what they learned. The Best of ATK provides a revealing, behind-the-scenes look at what goes on in our test kitchen. Each recipe features a write-up explaining why it was chosen as a ""best"" recipe. We also include make-ahead instructions, tips on how to avoid the mistakes we made, and step-by-step instructions.","Caribbean. In this acclaimed classic novel, James A. Michener sweeps readers off to the Caribbean, bringing to life the eternal allure and tumultuous history of this glittering string of islands. From the 1310 conquest of the Arawaks by cannibals to the decline of the Mayan empire, from Columbus's arrival to buccaneer Henry Morgan's notorious reign, from the bloody slave revolt on Haiti to the rise of Cuba's Fidel Castro, Caribbean packs seven hundred dramatic years into a tale teeming with revolution and romance, authentic characters and thunderous destinies. Through absorbing, magnificent prose, Michener captures the essence of the islands in all of their awe-inspiring scope and wonder. Praise for Caribbean ""Michener is a master.""--Boston Herald ""A grand epic . . . [James A. Michener] sympathizes with the struggles of the region's most oppressed, and succeeds in presenting the Caribbean in its rich diversity.""--The Plain Dealer ""Remarkable and praiseworthy . . . utterly engaging.""--The Washingt","The Life and Death of My Lord Gilles de Rais. A recreation of the Bluebeard story which follows a French Army captain, formerly in service to Saint Joan of Arc, executed in Brittany in 1440. The list of his crimes include witchcraft, heresy, sacrilege, sorcery, the evocations of demons and the practice of unnatural crime against children, ending with their murder for his delight.","Waterfront: A Walk Around Manhattan. East Side, West Side, from the Little Red Lighthouse to Battery Park City, the wonders of Manhattan's waterfront are both celebrated and secret -- hidden in plain sight. In his brilliant exploration of this defining yet neglected shoreline, personal essayist Philip Lopate also recovers a part of the city's soul. A native New Yorker, Lopate has embraced Manhattan by walking every inch of its perimeter, telling stories on the way of pirates (Captain Kidd) and power brokers (Robert Moses), the lowly shipworm and Typhoid Mary, public housing in Harlem and the building of the Brooklyn Bridge. He evokes the magic of the once bustling old port from Melville's and Whitman's day to the era of the longshoremen in On the Waterfront, while appraising today's developers and environmental activists, and probing new plans for parks and pleasure domes with river views. Whether escorting us into unfamiliar, hazardous crannies or along a Beaux Arts esplanade, Waterfrontis a grand literary ramble and def",Best of London (Lonely Planet Best Of).,Slaughterhouse Blues: The Meat and Poultry Industry in North America.,"The Da Vinci Code (Robert Langdon #2). A fascinating and absorbing thriller -- perfect for history buffs, conspiracy nuts, puzzle lovers or anyone who appreciates a great, riveting story. While in Paris on business, Harvard symbologist Robert Langdon receives an urgent late-night phone call: the elderly curator of the Louvre has been murdered inside the museum. Near the body, police have found a baffling cipher. While working to solve the enigmatic riddle, Langdon is stunned to discover it leads to a trail of clues hidden in the works of Da Vinci -- clues visible for all to see -- yet ingeniously disguised by the painter. Langdon joins forces with a gifted French cryptologist, Sophie Neveu, and learns the late curator was involved in the Priory of Sion -- an actual secret society whose members included Sir Isaac Newton, Botticelli, Victor Hugo, and Da Vinci, among others. In a breathless race through Paris, London, and beyond, Langdon and Neveu match wits with a faceless powerbroker who seems to anticipate their every move.","The Cod's Tale. What was it that fed the Viking expeditions, spurred the Pilgrims on to moneymaking success, drove the settlement of North America, and has also been a staple food in every cafeteria since the 1950s? That's right! The Codfish!",Elric of Melnibone: Bright Shadows.,"The Hand of Chaos (The Death Gate Cycle #5). The Hand of Chaos Chaos is everywhere as the Lord of the Nexus orders his servant Haplo and the human child known as Bane to further their master's work on Arianus, the realm of air. But their one time companion Alfred has been cast into the deadly Labyrinth. And somehow the assassin Hugh the Hand has been resurrected to complete his dark mission. More important, the evil force that Haplo and Alfred discovered on Arianus has escaped. As Haplo's doubts about his master grow deeper, he must decide whether to obey the Lord of the Nexus or betray the powerful Patryn...and endeavor to bring peace to the universe. The Death Gate Cycle Millennia ago a battle raged between the Sartan and the Patryn, and the Sartan sundered the world into four realms - air, fire, stone, and water - and then vanished. But now the two races have rediscovered each other through the magic of the Death Gate - and war is about to erupt anew.","The Waste Lands (The Dark Tower #3). Roland, The Last Gunslinger, moves ever closer to The Dark Tower of his dreams and nightmares--as he crosses a desert of damnation in a macabre world that is a twisted image of our own. With him are those he has drawn to this world: street-smart Eddie Dean and courageous wheelchair-bound Susannah. Ahead of him are mind-rending revelations about who and what is driving him. Against him is arrayed a swelling legion of foes--both more and less than human....","Lolita. Listening length: 12 hours Awe and exhiliration--along with heartbreak and mordant wit--abound in Lolita, Nabokov's most famous and controversial novel, which tells the story of the aging Humbert Humbert's obsessive, devouring, and doomed passion for the nymphet Dolores Haze. Lolita is also the story of a hypercivilized European colliding with the cheerful barbarism of postwar America. Most of all, it is a meditation on love--love as outrage and hallucination, madness and transformation.",The Quest for Longitude: The Proceedings of the Longitude Symposium Harvard University Cambridge Massachusetts November 4-6 1993.,Insights: Talks On The Nature Of Existence.,"Ender's Shadow (The Shadow Series #1). Welcome to Battleschool. Growing up is never easy. But try living on the mean streets as a child begging for food and fighting like a dog with ruthless gangs of starving kids who wouldn't hesitate to pound your skull into pulp for a scrap of apple. If Bean has learned anything on the streets, it's how to survive. And not with fists--He is way too small for that--But with brains. Bean is a genius with a magician's ability to zero in on his enemy and exploit his weakness. What better quality for a future general to lead the Earth in a final climactic battle against a hostile alien race, known as Buggers. At Battleschool Bean meets and befriends another future commander--Ender Wiggins--perhaps his only true rival. Only one problem: for Bean and Ender, the future is now.","Superman: Back in Action. Collecting ACTION COMICS 841-843! An alien race is collecting unique specimens from Earth-- and the Man of Steel is first on the list! Plus,Kurt Busiek introduces stories from DC COMICS PRESENTS #4, #17 and #24! Guest-starring Nightwing, Aquaman, Firestorm, the Metal Men, Deadman and more!","Ape and Essence. In February 2108, the New Zealand Rediscovery Expedition reaches California at last. It is over a century since the world was devastated by nuclear war, but the blight of radioactivity and disease still gnaws away at the survivors. The expedition expects to find physical destruction but they are quite unprepared for the moral degradation they meet. Ape and Essenceis Huxley's vision of the ruin of humanity, told with all his knowledge and imaginative genius.",God Created the Integers: The Mathematical Breakthroughs That Changed History.,Beyond Good and Evil: Prelude to a Philosophy of the Future. Represents Nietzsche's attempt to sum up his philosophy. In nine parts the book is designed to give the reader a comprehensive idea of Nietzche's thought and style. With an inclusive index of subjects and persons.,ヒカルの碁 9、本戦開始.,"You Can Draw: Star Wars. Feel the force of the pencil, get creative and bring your favourite 'Star Wars' characters to life. Follow expert tips, tracings, fold-out pages and stencils and draw body shapes which pack a punch (or a lightsabre), inspiring action poses, spectacular vehicles, out of this world clothes and futuristic equipment.","Dry. Revisit the second memoir in Augusten's bestselling trilogy of Running with Scissors, Dry,and Lust & Wonder. You may not know it, but you've met Augusten Burroughs. You've seen him on the street, in bars, on the subway, at restaurants: a twenty-something guy, nice suit, works in advertising. Regular. Ordinary. But when the ordinary person had two drinks, Augusten was circling the drain by having twelve; when the ordinary person went home at midnight, Augusten never went home at all. Loud, distracting ties, automated wake-up calls, and cologne on the tongue could only hide so much for so long. At the request (well, it wasn't really a request) of his employers, Augusten landed in rehab, where his dreams of group therapy with Robert Downey, Jr., are immediately dashed by the grim reality of fluorescent lighting and paper hospital slippers. But when Augusten is forced to examine himself, something actually starts to click, and that's when he finds himself in the worst trouble of all. Becau","The World's Last Night: And Other Essays. ""We are not the playwright, we are not the producer, we are not even the audience. We are on the stage. To play well the scenes in which we are ""on"" concerns us much more than to guess about the scenes that follow it."" In these seven witty, lucid, and tough-minded essays, the famous, infamous Screwtape makes a special appearance, proposing a toast that brilliantly explores the many opportunities for exploiting evil in the world. Lewis also considers the evidence for whether and how prayer works, plays with the meaning of the words ""I believe,"" and asks what happens to our concept of God when we send rockets into outer space. And, in a moving final piece, he forces us to wonder how we should live if any day might bring the world's last night. Anyone who ever appreciated his unique blend of humor, paradox, and searing insight will find these further thoughts from C.S. Lewis richly illuminating and remember that he is, as ever, one of the greatest writers and challengers of living faith.","The Cabinet of Curiosities (Pendergast #3). In downtown Manhattan, a gruesome discovery has just been made-an underground charnel house containing the bones of dozens of murder victims. Research reveals that a serial killer was at work in New York's notorious Five Points neighborhood in the 1880s, bent on prolonging his lifespan by any means. When a newspaper story on the old murders appears to ignite a new series of horrifyingly similar killings, panic overtakes New York City. Now, FBI agent Pendergast, journalist Bill Smithback, and archaeologist Nora Kelly join forces to protect themselves from a vicious killer...before they become the next victims.","Alexander Hamilton. Pulitzer Prize-winning author Ron Chernow presents a landmark biography of Alexander Hamilton, the Founding Father who galvanized, inspired, scandalized, and shaped the newborn nation. In the first full-length biography of Alexander Hamilton in decades, Ron Chernow tells the riveting story of a man who overcame all odds to shape, inspire, and scandalize the newborn America. According to historian Joseph Ellis, Alexander Hamiltonis ""a robust full-length portrait, in my view the best ever written, of the most brilliant, charismatic and dangerous founder of them all."" Few figures in American history have been more hotly debated or more grossly misunderstood than Alexander Hamilton. Chernow's biography gives Hamilton his due and sets the record straight, deftly illustrating that the political and economic greatness of today's America is the result of Hamilton's countless sacrifices to champion ideas that were often wildly disputed during his time. ""To repudiate his legacy,"" Chernow writes,","Rainforest Home Remedies: The Maya Way To Heal Your Body and Replenish Your Soul. Rainforest Healing from Your Home and Garden Find alternatives to chemical anti-depressants and painkillers in your spice rack. Learn about natural anti-itch salves for insect bites. Soothe and relieve envy, grief, sadness, and fear the Maya way. Rid your house of negative energy with a Maya cleansing ritual. Try the easy-to-make bronchitis remedy.",The Two Tocquevilles Father and Son.,"Three Guineas. Three Guineasis written as a series of letters in which Virginia Woolf ponders the efficacy of donating to various causes to prevent war. In reflecting on her situation as the ""daughter of an educated man"" in 1930s England, Woolf challenges liberal orthodoxies and marshals vast research to make discomforting and still-challenging arguments about the relationship between gender and violence, and about the pieties of those who fail to see their complicity in war-making. This pacifist-feminist essay is a classic whose message resonates loudly in our contemporary global situation. Annotated and with an introduction by Jane Marcus","Les petits chevaux de Tarquinia. Dans un petit village d'Italie, situe au pied d'une montagne au bord de la mer, dans la chaleur ecrasante du plein ete, deux couples passent des vacances comme chaque ete: Gina et Ludi, Jacques, Sarah et l'enfant. D'autres amis sont la, dont Diana. Ils se baignent, se parlent, s'ennuient...","Transcending the Levels of Consciousness: The Stairway to Enlightenment. Explores the ego's expressions and inherent limitations and gives detailed explanations and instructions on how to transcend them. It expands the understanding of the levels of consciousness as presented in the wiedely-acclaimed Map of Consciousness. The book focuses on the individual, and studies the experiential subjective blocks to the advancement of awareness, at each level of consciousness. This leads to progressive spiritual awareness and on to higher levels of consciousness, providing specific steps for transcending each level, preparatory to advanced states such as Enlightenment itself. By analyzing the various obstacles and levels to be transcended, certain principles that support spiritual evolution are self-revealing. This book si therefore a practical manual rather than a comprehensive analysis.",The Gospel of Filth: A Bible of Decadence & Darkness.,O Historiador.,"A Slipping-Down Life. 0345478959|9780345478955. 192 pages. Evie Decker is a shy, slightly plump teenager, lonely and silent. But her quiet life is shattered when she hears the voice of Drumstrings Casey on the radio and becomes instantly attracted to him. She manages to meet him, bursting out of her lonely shell--and into the attentive gaze of the intangible man who becomes all too real....","Like a Velvet Glove Cast in Iron. Like a Velvet Glove...collects all 10 chapters of the serialized story Eightball. As Clay Loudermilk attempts to unravel the mysteries behind a snuff film, he finds himself involved with an increasingly bizarre cast of characters, including a pair of sadistic cops who carve a strange symbol into the heel of Clay's foot; a horny over-the-hill suburban woman whose sexual encounter with a mysterious water creature produced a grotesquely misshapen, but no less horny, mutant daughter; a dog with no orifices whatsoever (it has to be fed by injection); two ominous victims of extremely bad hair implants; a charismatic Manson-like cult leader who plans to kidnap a famous advice columnist and many more! This edition has a brand new cover, new title and end pages -- plus: Clowes being the perfectionist that he is, there are tweaked and re-drawn panels that really make this a transcendent piece of storytelling art!","The Bone Collector's Son. It's 1907, and Bing's father makes a living in Chinatown by digging up the bones of the dead before sending them back to China for a proper burial. Bing hates helping his father with his work, and things go from bad to worse when father and son discover that Mr. Shum's skull is missing from his grave.","Yakitate!! Japan Volume 5. The drama escalates in the third round of the Pantasia Rookie Tournament when Kazuma's masked and muscle-bound opponent blows the judges away with his animal-themed bread in the shape of a magnificent dragon. Will Kazuma's contribution, a cute green turtle, be delicious enough to throw the judges into a deadlock? And just how many half-sisters does Tsukino actually have?! Yet another turns up, this one unapologetically evil, and begins to stir up a little mischief!","Darkness at Noon. Originally written in German, but the German manuscript was lost & only the manuscript of the English translation survived. Darkness At Noonstands as an unequaled fictional portrayal of the nightmare politics of our time. Its hero is an aging revolutionary, imprisoned & psychologically tortured by the Party to which he has dedicated his life. As the pressure to confess preposterous crimes increases, he relives a career that embodies the terrible ironies & human betrayals of a totalitarian movement masking itself as an instrument of deliverance. Almost unbearably vivid in its depiction of one man's solitary agony, Darkness At Noonasks questions about ends & means that have relevance not only for the past but for the perilous present. It is, as the Times Literary Supplementhas declared, ""a remarkable book, a grimly fascinating interpretation of the logic of the Russian Revolution, indeed of all revolutionary dictatorships, & at the same time a tense & subtly intellectualized drama"".","The Witching Hour (Lives of the Mayfair Witches #1). On the veranda of a great New Orleans house, now faded, a mute and fragile woman sits rocking. And the witching hour begins... Demonstrating once again her gift for spellbinding storytelling and the creation of legend, Anne Rice makes real for us a great dynasty of witches - a family given to poetry and incest, to murder and philosophy, a family that over the ages is itself haunted by a powerful, dangerous, and seductive being. A hypnotic novel of witchcraft and the occult across four centuries, by the spellbinding, bestselling author of The Vampire Chronicles.","Melville: His World and Work. If Dickens was nineteenth-century London personified, Herman Melville was the quintessential American. With a historian's perspective and a critic's insight, award-winning author Andrew Delbanco marvelously demonstrates thatMelville was very much a man of his era and that he recorded -- in his books, letters, and marginalia; and in conversations with friends like Nathaniel Hawthorne and with his literary cronies in Manhattan -- an incomparable chapter of American history. From the bawdy storytelling of Typeeto the spiritual preoccupations building up to and beyondMoby Dick, Delbanco brilliantly illuminates Melville's life and work, and his crucial role as a man of American letters.",Law of Enclosures.,"The Pure in Heart (Simon Serrailler #2). A boy disappears waiting for a lift to school. A child miles away in the North of England, is abducted while walking to swimming baths near home. A girl and her harassed single mother become close to their next door neighbor Ed. Simon Serailler has very distressing cases, while still raw after a close shocking bereavement.","Green Hills of Africa. Green Hills of Africa is Ernest Hemingway's lyrical journal of a month on safari in the great game country of East Africa, where he and his wife Pauline journeyed in December 1933. Hemingway's well-known interest in - and fascination with - big-game hunting is magnificently captured in this evocative account of his trip. It is an examination of the lure of the hunt and an impassioned portrait of the glory of the African landscape and of the beauty of a wilderness that was, even then, being threatened by the incursions of man.",The Lord of the Rings.,"Bad Boys In Black Tie (Watson Brothers #3). Some men you can't take anywhere. . .except the bedroom. Good With His Hands By New York Timesbestselling author Lori Foster As next-door neighbors and best friends, Pete Watson and Cassidy McClannahan have a ""no sex"" relationship. Until Pete decides he's ready to transform himself into the perfect ""black tie"" guy he thinks she wants. And once she's in his arms, he'll show her just what else that black tie can do. . . Miss Extreme Congeniality By New York Timesbestselling author Erin McCarthy CJ White knows there has to be a catch when Wyatt Maddock--her despised FBI partner--offers to transfer out of Chicago and far, far away from her: she has to spend one sexy night with the untamed playboy, wearing the outfit of his choice. . . Last Call by Morgan Leigh Tess Braeden is new in Justice, North Carolina, but there's no justice when she learns that her inherited home is about to be foreclosed on. Thank goodness for the sensual, mysterious Fletcher Graham. But will Mr. Right become Mr. Wr","Three Nights in August: Strategy Heartbreak and Joy Inside the Mind of a Manager. Three Nights in August captures the strategic and emotional complexities of baseball's quintessential form, the three-game series. As the St. Louis Cardinals battle their archrival Chicago Cubs, we watch from the dugout through the eyes of legendary manager Tony La Russa, considered by many to be the shrewdest mind in the game today. In his twenty-seven years of managing, La Russa has been named Manager of the Year a record-making five times and now stands as the third-winningest baseball manager of all time. A great leader, he's built his success on the conviction that ball games are won not only by the numbers but also by the hearts and minds of those who play. Drawing on unprecedented access to a major league manager and his team, Buzz Bissinger brings a revelatory intimacy to baseball and offers some surprising observations. Bissinger also furthers the debate on major league managerial style and strategy in his provocative new afterword.","The Soloist. At thirty-four, piano soloist Max Randal has hit a wall. It's been four years since his last live performance, and his manager is intent on revitalizing his career with a big concert at Carnegie Hall. As if that wouldn't be enough for Max to worry about, as he struggles to prepare, the ghosts of his failed relationships have come to haunt him -- his first ex-wife is dying, his second ex-wife wants to get back together, the mother of his child has taken off for Europe and unexpectedly left him to care for their nine-year-old, and his present girlfriend now wants to get serious. Believe it or not, the plot only gets thicker. Merging dozens of characters and events into a seamless narrative, gifted novelist and poet Nicholas Christopher delivers a compelling tale. Like an exhilarating performance, The Soloisttakes you on a brilliant adventure that resonates even once it's over.",Giraffes Can't Dance.,"The Little Book of Coaching: Motivating People to Be Winners. Are the people who report to you giving you their best? Is each individual on your team performing to his or her fullest potential?For more than thirty years, renowned business consultant and bestselling author Ken Blanchard and legendary NFL coach Don Shula have motivated teams to peak performances. In their classic, authoritative work on coaching, Everyone's a Coach,they distilled their rich collective experience down to its key elements and shared their secrets for inspiring others to greatness. Now, by popular demand, Blanchard and Shula have created The Little Book of Coaching,capturing the essence of their classic in this indispensable motivational gem--a gift to their readers and fans. At the heart of this book is a simple acronym that describes the qualities of an effective leader: Conviction-driven--Never compromise your beliefsOverlearning--Practice until it's perfect Audible-ready--Know when to change Consistency--Respond predictably to performance Honesty-based--Walk your t","The Worthing Saga (Worthing #1-3). Gathering every story about Jason Worthing, this volume includes ""The Worthing Chronicle,"" as well as all of the other stories set on Capitol and later on Jason's colonized planet. It was a miracle of science that permitted human beings to live, if not forever, then for a long, long time. Some people, anyway. The rich, the powerful--they lived their lives at the rate of one year every ten. Somec created two societies: that of people who lived out their normal span and died, and those who slept away the decades, skipping over the intervening years and events. It allowed great plans to be put in motion. It allowed interstellar Empires to be built. It came near to destroying humanity. After a long, long time of decadence and stagnation, a few seed ships were sent out to save our species. They carried human embryos and supplies, and teaching robots, and one man. The Worthing Saga is the story of one of these men, Jason Worthing, and the world he found for the seed he carried. Orson Scott C","Magic's Promise (Valdemar: Last Herald-Mage #2). The wild magic is taking its toll on the land, and even Vanyel, the most powerful Herald-Mage to ever walk the world, is almost at the end of his strength. But when his Companion, Yfandes, receives a call for help from neighboring Lineas, both Herald-Mage and Companion are drawn into a holocaust of dark magic that could be the end of them both.",Cervantes in Algiers: A Captive's Tale.,Numerical Recipes Example Book C++: The Art of Scientific Computing.,"Gifted Hands: The Ben Carson Story. Gifted Hands by and about Ben Carson, M.D., is the inspiring story of an inner-city kid with poor grades and little motivation, who, at age thirty-three, became director of pediatric neurosurgery at Johns Hopkins University Hospital. Gifted Hands will transplace you into the operating room to witness surgeries that made headlines around the world, and into the private mind of a compassionate, God-fearing physician who lives to help others. In 1987, Dr. Carson gained worldwide recognition for his part in the first successful separation of Siamese twins joined at the back of the head -- an extremely complex and delicate operation that was five months of planning and twenty-two hours of actual surgery, involving a surgical plan that Carson helped initiate. Gifted Hands reveals a man with humility, decency, compassion, courage, and sensitivity who serves as a role model for young people (and everyone else) in need of encouragement to attempt the seemingly impossible and to excel in whateve","The Bitten (Vampire Huntress #4). She is a woman who lives between pleasure and pain - the pure, scintillating pleasure of the flesh and the kind of pain that has rocked the world and left it strewn with chaos set to a hip-hop beat. Her name is Damali Richards. And when she makes love to a master vampire, it changes everything in a struggle between good and evil.","Exodus. Exodusis an international publishing phenomenon--the towering novel of the twentieth century's most dramatic geopolitical event. Leon Uris magnificently portrays the birth of a new nation in the midst of enemies--the beginning of an earthshaking struggle for power. Here is the tale that swept the world with its fury: the story of an American nurse, an Israeli freedom fighter caught up in a glorious, heartbreaking, triumphant era. Here is Exodus",Here We All Are.,Planet of the Apes Volume 1: Old Gods.,"Blind Willow Sleeping Woman. An alternate cover for this isbn can be found . From the bestselling author of Kafka on the Shore and The Wind-Up Bird Chronicle comes this superb collection of twenty-four stories that generously expresses Murakami's mastery of the form. From the surreal to the mundane, these stories exhibit his ability to transform the full range of human experience in ways that are instructive, surprising, and relentlessly entertaining. Here are animated crows, a criminal monkey, and an iceman, as well as the dreams that shape us and the things we might wish for. Whether during a chance reunion in Italy, a romantic exile in Greece, a holiday in Hawaii, or in the grip of everyday life, Murakami's characters confront grievous loss, or sexuality, or the glow of a firefly, or the impossible distances between those who ought to be closest of all.",Tomie 2 富江 Part 2.,"Rose Daughter. It is the heart of this place, and it is dying, says the Beast. And it is true; the center of the Beast's palace, the glittering glasshouse that brings Beauty both comfort and delight in her strange new environment, is filled with leafless brown rosebushes. But deep within this enchanted world, new life, at once subtle and strong, is about to awaken. Twenty years ago, Robin McKinley dazzled readers with the power of her novel Beauty. Now this extraordinarily gifted novelist returns to the story of Beauty and the Beast with a fresh perspective, ingenuity, and mature insight. With Rose Daughter, she presents her finest and most deeply felt work--a compelling, richly imagined, and haunting exploration of the transformative power of love.","Past Mortem. In romantic desperation, mild-mannered detective Edward Newson logged on to the ""Friends Reunited"" website searching for the girlfriends of his youth. As his old class begins to reassemble in cyberspace, the years slip away and old feuds and passions burn hot once more. A school reunion is planned, and as history begins to repeat itself, the past crashes headlong into the present. Past Mortemis both a heart-stopping thriller and a killer comic romance.","Snow Treasure. In the bleak winter of 1940, Nazi troops parachuted into Peter Lundstrom's tiny Norwegian village and held it captive. Nobody thought the Nazis could be defeated--until Uncle Victor told Peter how the children could fool the enemy. It was a dangerous plan. They had to slip past Nazi guards with nine million dollars in gold hidden on their sleds. It meant risking their country's treasure--and their lives. This classic story of how a group of children outwitted the Nazis and sent the treasure to America has captivated generations of readers. About the Author: The late Marie McSwigan wrote many novels for young readers, including All Aboard for Freedom.Originally published in 1942.","Interrupted Music: The Making of Tolkien's Mythology. The content of Tolkien's Mythology, the Silmarillion, has been the subject of considerable exploration and analysis for many years, but the logistics of its development have been mostly ignored and deserve closer investigation. Nineteenth-and twentieth-century scholars understood the term ""mythology"" as a gathering of song and story that derived from and described an identifiable world. Tolkien made a continuous effort over several years to construct a comprehensive mythology, to include not only the stories themselves but also the storytellers, scribes, and bards who were the offspring of his thought. In Interrupted MusicFlieger attempts to illuminate the structure of Tolkien's work, allowing the reader to appreciate its broad, overarching design and its careful, painstaking construction. She endeavors to ""follow the music from its beginning as an idea in Tolkien's mind through to his final but never-implemented mechanism for realizing that idea, for bringing the voices of his story t","Amazing Disgrace (Gerald Samper #2). Imagine a British John Waters crossed with David Sedaris.-The New York Times Book Review Set both in Tuscany and in the trendy haunts of London, this hilarious sequel to the popular Cooking with Fernet Branca is further evidence of Hamilton-Paterson's wit and comic inventiveness. The inimitable Gerald Samper is back, with his musings on the absurdities of modern life and his entertaining asides during which he comments on everything from publishing to penile implants, celebrity sportswomen to Australian media moguls. Plus, there's his marvelously eccentric recipes. A smart literary romp featuring a cavalcade of misadventures and memorable characters.","Count Zero (Sprawl #2). A corporate mercenary wakes in a reconstructed body, a beautiful woman by his side. Then Hosaka Corporation reactivates him, for a mission more dangerous than the one he's recovering from: to get a defecting chief of R&D--and the biochip he's perfected--out intact. But this proves to be of supreme interest to certain other parties--some of whom aren't remotely human...",Hegel's Phenomenology of Spirit. This brilliant study of the stages in the mind's necessary progress from immediate sense-consciousness to the position of a scientific philosophy includes an introductory essay and a paragraph-by-paragraph analysis of the text to help the reader understand this most difficult and most influential of Hegel's works.,"The Diary of Virginia Woolf Volume Five: 1936-1941. Virginia Woolf was fifty-four on January 25, 1936, some three weeks after this final volume of her diary opens. Its last page was written four days before she drowned herself on March 28, 1941. Edited by Anne Olivier Bell, assisted by Andrew McNeillie; Index; maps.","How to Make Money Like a Porn Star. Claudia Corvette. From her tousled bedroom hair to her name-all the porn stars in this world take their names from supermodels and sports cars-she is adult entertainment's prototypical femme fatale. Her life is the collision of countless troubled-childhood cliches and grown-up wet dreams, projected onto her as surely as her videos project their blue light onto lonely men around the world. From its first panel, How to Make Money Like a Porn Star draws the reader into the dark world of girls like Claudia, the men who fantasize about them, and the monsters who control them. In the hands of Rolling Stone writer Neil Strauss and illustrator Bernard Chang, this adult graphic novel weaves together black humor and blacker reality. Like all great American stories, it features humble beginnings, life-changing tragedy, stripping, abuse, implants, fame, addiction, bigger implants, abduction, gunplay, downfall, and even bigger implants. Not to mention a thousand shades of latex and L'Oreal. Part pa","Julius Caesar. No Fear Shakespeare gives you the complete text of Julius Caesaron the left-hand page, side-by-side with an easy-to-understand translation on the right. Each No Fear Shakespeare contains The complete textof the original play A line-by-line translationthat puts Shakespeare into everyday language A complete list of characterswith descriptions Plenty of helpful commentary","The Master Mind of Mars (Barsoom #6). Former Earthman Ulysses Paxton served Barsoom's greatest scientist, until his master's ghoulish trade in living bodies drove him to rebellion. Then, to save the body of the woman he loved, he had to attack mighty Phundahl, and its evil, beautiful ruler.","Collected Plays: Henry IV The Man with the Flower in His Mouth Right You Are. This is the first volume of a collected edition of the complete plays of Luigi Pirandello, one of the major playwrights of the early 20th century. Henry IV(1922) has always been one of the most performed and popular of Pirandello's works, both in Italy and in other countries. A study in the nature of reality and delusion, it has great dramatic impact and is intensely moving. The Man With the Flower(1923) is perhaps the best known of his shorter plays, poignant and devastating. Right You Are If You Think You Are(1917) is a major play that has had many successful productions and a strong message of live and let live. Lazarus(1929), although less known, remains one of Pirandello's most haunting creations.","Jane Eyre. A gothic masterpiece of tempestuous passions and dark secrets, Charlotte Bronte's Jane Eyreis edited with an introduction and notes by Stevie Davis in Penguin Classics. Charlotte Bronte tells the story of orphaned Jane Eyre, who grows up in the home of her heartless aunt, enduring loneliness and cruelty. This troubled childhood strengthens Jane's natural independence and spirit - which prove necessary when she finds employment as a governess to the young ward of Byronic, brooding Mr Rochester. As her feelings for Rochester develop, Jane gradually uncovers Thornfield Hall's terrible secret, forcing her to make a choice. Should she stay with Rochester and live with the consequences, or follow her convictions - even if it means leaving the man she loves? A novel of intense power and intrigue, Jane Eyredazzled readers with its passionate depiction of a woman's search for equality and freedom.","The Flood-Tide (Morland Dynasty #9). 1772 - George III; the American War of Independence England is peaceful under George III, and Morland Place flourishes under the careful tending of Jemima and her loyal husband Allen. Their seven children often bring them heartache, but they are sustained by their love for each other and their absorbing interest in improving the estate lands. But beyond England's shores things are not so calm. Morland cousins find themselves embroiled in the American war for independence, and the family's bastard offshoot, Henri, disports himself in the salons of Paris while outside revolution creeps closer.","The Lord of the Rings: A Reader's Companion. In The Lord of the Rings: A Reader's Companion internationally acclaimed scholars Wayne G. Hammond and Christina Scull examine Tolkien's masterpiece chapter by chapter, offering expert insights into its evolution, structure, and meaning. They discuss in close detail important literary and historical influences on the development of The Lord of the Rings, connections between that work and other writings by Tolkien, errors and inconsistencies, significant changes to the text during its fifty years of publication, archaic and unusual words used by Tolkien, and words and passages in his invented languages of Middle-earth. Thousands of notes, keyed to standard editions of The Lord of the Rings but universally accessible, reveal the richness and complexity of one of the most popular works of fiction in our time. In addition to their own expertise and that of other scholars and critics, Hammond and Scull frequently draw upon comments by Tolkien himself, made in letters to family, friends, and",If Chins Could Kill: Confessions of a B Movie Actor.,"Beauty is the Beast Vol. 4. When bubbly eleventh-grader Eimi Yamashita finds out that her parents are relocating for work, she decides to strike out on her own and move into a dormitory for girls. Little does Eimi suspect the exciting romantic adventures that await her there! As winter sets in at the dforms and the boys hog all the electricity, Shimonuki continues his quest to win Eimi's heart. She agrees to a date but they both end up confessing to Wanibuchi. Despite Wanibuchi's commitment to another woman, Eimi can't stop loving him. What will she do if Wanibuchi moves back to Mexico?!",Hot Chocolate for the Mystical Lover: 101 True Stories of Soul Mates Brought Together by Divine Intervention.,"Living to Tell the Tale. No writer of his time exerted the magical appeal of Gabriel Garcia Marquez. In this long-awaited autobiography, the great Nobel laureate tells the story of his life from his birth in1927 to the moment in the 1950s when he proposed to his wife. The result is as spectacular as his finest fiction. Here is Garcia Marquez's shimmering evocation of his childhood home of Aracataca, the basis of the fictional Macondo. Here are the members of his ebulliently eccentric family. Here are the forces that turned him into a writer. Warm, revealing, abounding in images so vivid that we seem to be remembering them ourselves, Living to Tell the Taleis a work of enchantment.","Lolita. Stanley Kubrick's version of Vladimir Nabokov's novel was one of the most controversial films of the 1960s. This analysis is written by Richard Corliss, editor of Film Comment. It features a brief production history and a detailed filmography.","Fear and Loathing on the Campaign Trail '72. Hilarious, terrifying, insightful, and compulsively readable, these are the articles that Hunter S. Thompson wrote for Rolling Stonemagazine while covering the 1972 election campaign of President Richard M. Nixon and his unsuccessful opponent, Senator George S. McGovern. Hunter focuses largely on the Democratic Party's primaries and the breakdown of the national party as it splits between the different candidates. With drug-addled alacrity and incisive wit, Thompson turned his jaundiced eye and gonzo heart to the repellent and seductive race for president, deconstructed the campaigns, and ended up with a political vision that is eerily prophetic","Stardust of Yesterday (de Piaget #9; de Paiget/MacLeod #1). Inheriting a castle--and a ghost to go with it--Genevieve Buchanan finds herself falling in love with the spectre of Kendrick de Piaget, an arrogant thirteenth-century knight.","The Rescue (Kidnapped #3). The startling conclusion to Gordon Korman's adventure trilogy. Aiden Falconer and FBI Agent Harris are closing in the people who kidnapped Aiden's sister, Meg. There's just one hitch: Meg is trying to escape from them on her own, and is never where she's supposed to be. As tension mounts and the net tightens, only one thing is clear: The kidnappers aren't going down without a fight. Before, it was Meg who was in trouble. Now both Meg and Aiden are in grave danger.",Psychonavigation: Techniques for Travel Beyond Time.,"War and Remembrance (The Henry Family #2). These two classic works capture the tide of world events even as they unfold the compelling tale of a single American family drawn into the very center of the war's maelstrom. The multimillion-copy bestsellers that capture all the drama, romance, heroism, and tragedy of the Second World War -- and that constitute Wouk's crowning achievement -- are available for the first time in trade paperback.","Story of a Girl. When she is caught in the backseat of a car with her older brother's best friend--Deanna Lambert's teenage life is changed forever. Struggling to overcome the lasting repercussions and the stifling role of ""school slut,"" she longs to escape a life defined by her past. With subtle grace, complicated wisdom and striking emotion, Story of a Girlreminds us of our human capacity for resilience, epiphany and redemption.","Tanequil (High Druid of Shannara #2). Dark magic has opened a gateway to the Forbidding and trapped within it Grianne Ohmsford, rightful High Druid of Shannara. Rescuing Grianne will be merely the beginning of the effort to return the Four Lands to some semblance of peace. Only her young nephew, Penderrin, has any hope of returning her to power. But to breach the Forbidding and bring Grianne back to the natural world, Pen must find the fabled Tanequil . . . and the talisman it alone can provide. That means journeying into the Inkrim-a dreaded region thick with shadows and haunted by harrowing legends. And there, Pen will strike a bargain more dire than he could ever imagine.","The Wonderful Story Of Henry Sugar and Six More. Meet the boy who can talk to animals, the man who can see with his eyes closed, and find out about the treasure, buried deep underground on Thistley Green.","The Land of Laughs. Have you ever loved a magical book above all others? Have you ever wished the magic were real? Welcome to The Land of Laughs.A novel about how terrifying that would be. Schoolteacher Thomas Abbey, unsure son of a film star, doesn't know who he is or what he wants--in life, in love, or in his relationship with the strange and intense Saxony Gardner. What he knows is that in his whole life nothing has touched him so deeply as the novels of Marshall France, a reclusive author of fabulous children's tales who died at forty-four. Now Thomas and Saxony have come to France's hometown, the dreamy Midwestern town of Galen, Missouri, to write France's biography. Warned in advance that France's family may oppose them, they're surprised to find France's daughter warmly welcoming instead. But slowly they begin to see that something fantastic and horrible is happening. The magic of Marshall France has extended far beyond the printed page...leaving them with a terrifying task to undertake.","Savage Anamoly: The Power of Spinoza’s Metaphysics and Politics. In this essential rereading of Spinoza's (1632-1677) philosophical and political writings, Negri positions this thinker within the historical context of the development of the modern state and its attendant political economy. Through a close examination of Spinoza, Negri reveals turn as unique among his contemporaries for his nondialectical approach to social organization in a bourgeois age.","Eating for Life: Your Guide to Great Health Fat Loss and Increased Energy!. Did you truly enjoy the food you ate today? Do you really like the way you look and feel? Are you consistently enjoying great health and high energy? Bill Phillips, author of the #1 New York Times bestseller Body-for-LIFE, believes your answer to all of the above questions should be, ""Yes!"" He feels that food should be a source of pure pleasure. A source of positive, abundant energy! A ""sure thing"" in a world of much uncertainty. Phillips, who's widely regarded as today's most successful fitness author, has firm beliefs which go against the grain of today's popular weight-loss methods. ""Diets, all of them, are potentially dangerous, most always dumb and ultimately a dead-end street!"" he insists. ""Eventually, anyone and everyone who's at all concerned with their health must learn how to feed their body, not how to starve it."" Instead, Phillips encourages a safe and sound solution which includes eating balanced, nutrient-rich meals, frequently throughout the day. ""This is what works in t","The Island of Doctor Moreau. Ranked among the classic novels of the English language and the inspiration for several unforgettable movies, this early work of H. G. Wells was greeted in 1896 by howls of protest from reviewers, who found it horrifying and blasphemous. They wanted to know more about the wondrous possibilities of science shown in his first book, The Time Machine, not its potential for misuse and terror. In The Island of Dr. Moreau, a shipwrecked gentleman named Edward Prendick, stranded on a Pacific island lorded over by the notorious Dr. Moreau, confronts dark secrets, strange creatures, and a reason to run for his life. While this riveting tale was intended to be a commentary on evolution, divine creation, and the tension between human nature and culture, modern readers familiar with genetic engineering will marvel at Wells's prediction of the ethical issues raised by producing ""smarter"" human beings or bringing back extinct species. These levels of interpretation add a richness to Prendick's advent","Iliad. Gripping. . . . Lombardo's achievement is all the more striking when you consider the difficulties of his task. . . . [He] manages to be respectful of Homer's dire spirit while providing on nearly every page some wonderfully fresh refashioning of his Greek. The result is a vivid and disarmingly hardbitten reworking of a great classic. --Daniel Mendelsohn, The New York Times Book Review",The Wheel of Darkness (Pendergast #8).,"Stranger in a Strange Land. NAME: Valentine Michael Smith ANCESTRY: Human ORIGIN: Mars Valentine Michael Smith is a human being raised on Mars, newly returned to Earth. Among his people for the first time, he struggles to understand the social mores and prejudices of human nature that are so alien to him, while teaching them his own fundamental beliefs in grokking, watersharing, and love.","A Wrinkle in Time: A Guide for Using ""A Wrinkle in Time"" in the Classroom.",Essentials of American and Texas Government: Continuity and Change.,"Amelia Bedelia Goes Camping. Amelia Bedelia has never been camping. She tries her best to do as the Rogers order, but pitching a tent is not the same as throwing it into the bushes, and catching a fish with bare hands does not mean keeping. Tent stakes are not the same as tent-shaped steaks. Starting a fire on the grill may take a match more than pine cones and coffee grounds. Shhh for sleeping bags.","The Short History of a Prince. Walter McCloud was constantly eclipsed by those around him - his beautiful, talented friends, his flamboyant relatives, his golden-boy brother, Daniel. He was always the outsider, never the star. But the summer of 1972 was a turning point in the life of fifteen-year-old Walter. It was the time when he realized that his great passion for dance would never be matched by his talent; the time when he discovered the funny agony of first love' and the time when he watched his brother declining into a cruel, untimely death. It is only when, twenty-four years later, Walter returns to fight for the survival of his childhood Eden, his family's lakeside summer home, that he finally discovers a way to reconcile himself to the past in a way that gives hope for the future.",Ecuador & the Galapagos Islands.,"The Gift. The Giftis the last of the novels Nabokov wrote in his native Russian and the crowning achievement of that period in his literary career. It is also his ode to Russian literature, evoking the works of Pushkin, Gogol, and others in the course of its narrative: the story of Fyodor Godunov-Cherdyntsev, an impoverished emigre poet living in Berlin, who dreams of the book he will someday write--a book very much like The Giftitself.",ヒカルの碁 12、新初段シリーズ.,"Elliott Erwitt: Snaps. Containing over 500 pictures, this is a comprehensive survey of the work of photographer Elliott Erwitt. It features his famous images like Nikita Kruschev and Richard Nixon arguing in Moscow in 1959 and Marilyn Monroe with the cast of the movie The Misfits, along with many more personal images of places, things, people and animals. Erwitt's unmistakable, often witty style gives us a snapshot of the famous and the ordinary, the strange and the mundane over a period of more than half a century. The foreword is written by Murray Sayle and there are chapter introductions by Charles Flowers. Both writers are personal friends and admirers of Erwitt. Broken into nine chapters with single word titles such as Read, Move, Play and Tell, the images in each chapter relate to the title, sometimes literally, sometimes obliquely, sometimes punningly and often ambiguously - in keeping with Erwitt's playful style.",The Feynman Lectures on Physics Vols 7-8.,"The Illuminati Papers. Is All of History a Vast Conspiracy? Cosmic Joke? Robert Anton Wilsondeveloped the story of the Illuminati, a conspiracy as old as time itself, as a vehicle to amuse and enlighten. His best-selling books, The Illuminati Trilogyand Cosmic Trigger, have delighted readers the world over and made the Illuminati conspiracy the perfect metaphor for our time. In the Illuminati Papers, Robert Anton Wilson speaks through characters from his novels and other realities and presents his views on our future way of life.","Waiting Sands. 'Dearest Raye, ' Decima had written.'I'm writing to ask if you can possibly come up to Ruthven for a few days. My twenty- first birthday falls next Sunday, and it would be such a relief if you could stay until after the celebration dinner party which Charles is giving for me on Saturday night. Please come, Raye. I may be behaving very stupidly by panicking like this, but I would feel so much less frightened if I knew you were beside me at Ruthven till after midnight on Saturday.' Dependable Rachel Lord hasn't heard from her friend Decima for over two years when out of the blue she is invited to Ruthven, the fairy tale Scottish castle that Decima will inherit on her coming of age. Her arrival is met with relief by Decima who is convinced her husband, Charles, means her harm. Is Decima in her right mind? Or is Rachel being duped by her worldlier friend? As the eve of the 21st birthday celebration approaches, a shocking event leaves Rachel in no doubt",On Rhetoric and Language: Four Key Dialogues.,"Double Love (Sweet Valley High #1). Will Jessica steal Todd from Elizabeth? Elizabeth and Jessica Wakefield are identical twins at Sweet Valley High. Theyre both popular, smart, and gorgeous, but that's where the similarity ends. Elizabeth is friendly, outgoing, and sincere -- nothing like her snobbish and conniving twin. Jessica gets what she wants -- at school, with friends, and especially with boys. This time, Jessica has set her sights on Todd Wilkins, the handsome star of the basketball team -- the one boy that Elizabeth really likes. Elizabeth doesn't want to lose him, but what Jessica wants, Jessica usually gets... even if it ends up hurting her sister. Meet the Wakefield twins, their guys, and the rest of the gang at Sweet Valley High....",The Hidden Hand.,"The Zanzibar Chest. Hartley, an acclaimed frontline reporter who covered the atrocities of 1990s Africa, embarks on a journey to unlock the mysteries and secrets of his own family's 150-year-colonial legacy in Africa. A beautiful, sometimes harrowing memoir of intrepid young men cut down in their prime, of forbidden love and its fatal consequences, and of family and history. and the collision of cultures over the enduring course of British colonialism in Africa that defined them both.","Dragons of Winter Night (Dragonlance: Chronicles #2). Now the people know that the dragon minions of Takhisis, Queen of Darkness, have returned. The people pf all nations prepare to fight to save their homes, their lives, and their freedom. But the races have long been divided by hatred and prejudice. Elven warriors and human knights fight among themselves. It seems the battle has been lost before it begins. The companions are separated, torn apart by war. A full season will pass before they meet again-if they meet again. As the darkness deepens, a disgraced knight, a pampered elfmaiden, and a rattle-brained kender stand alone in the pale winter sunlight. Not much in the way of heroes.",Call After Midnight & Under The Knife.,Why Is Sex Fun? The Evolution of Human Sexuality (Science Masters). Why are humans one of the few species to have sex in private? Why are human females the only mammals to go through menopause? Why is the human penis so unnecessarily large? There is no more knowledgeable authority than the award-winning author of The Third Chimpanzeeto answer these intriguing questions. Here is a delightfully entertaining and enlightening look at the unique sex lives of humans.,Fantastic Mr Fox.,"An American Childhood. A book that instantly captured the hearts of readers across the country, An American Childhoodis Pulitzer Prize-winning author Annie Dillard's poignant, vivid memoir of growing up in Pittsburgh in the 1950s.",Wolfskin (Saga of the Light Isles #1).,Fury.,"Ready or Not (All-American Girl #2). Top ten things Samantha Madison isn't ready for: 10. Spending Thanksgiving at Camp David 9. With her boyfriend, the president's son 8. Who appears to want to take their relationship to the Next Level 7. Which Sam inadvertently and shockingly announces live on MTV 6. While appearing to support the president's dubious policies on families, morals, and yes, sex 5. Juggling her new after-school job at Potomac Video 4. Even though she already has a job as teen ambassador to the UN (that she doesn't get paid for) 3. Riding the Metro and getting accosted because she's ""the redheaded girl who saved the president's life,"" in spite of her new, semipermanent Midnight Ebony tresses 2. Experiencing total role reversal with her popular sister Lucy, who for once can't get the guy she wants And the number-one thing Sam isn't ready for? 1. Finding out the hard way that in art class, ""life drawing"" means ""naked people.""","Julie and Julia: 365 Days 524 Recipes 1 Tiny Apartment Kitchen. With the humor of Bridget Jones and the vitality of Augusten Burroughs, Julie Powell recounts how she conquered every recipe in Julia Child's Mastering the Art of French Cooking and saved her soul! With the humor of Bridget Jones and the vitality of Augusten Burroughs, Julie Powell recounts how she conquered every recipe in Julia Child's Mastering the Art of French Cooking and saved her soul. Julie Powell is 30-years-old, living in a rundown apartment in Queens and working at a soul-sucking secretarial job that's going nowhere. She needs something to break the monotony of her life, and she invents a deranged assignment. She will take her mother's dog-eared copy of Julia Child's 1961 classic Mastering the Art of French Cooking, and she will cook all 524 recipes. In the span of one year. At first she thinks it will be easy. But as she moves from the simple Potage Parmentier (potato soup) into the more complicated realm of aspics and crepes, she realizes there's more to Mastering the Art",The Notebooks of Leonardo da Vinci.,Ukridge. The ten stories in Ukridge revolve around Stanley Featherstonehaugh Ukridge's none-too-successful schemes to make some money.,"Bulfinch's Mythology. A beautiful gift edition of Thomas Bulfinch's classic retelling of famous myths and folk legends, with interpretive essays by Princeton classics professor Richard P. Martin.","Field of Thirteen. A superbly crafted collection of thirteen tightly plotted tales that treats readers to murder, mystery, and mayhem in the world of horseracing.","Pale Fire. The urbane authority that Vladimir Nabokov brought to every word he ever wrote, and the ironic amusement he cultivated in response to being uprooted and politically exiled twice in his life, never found fuller expression than in Pale Firepublished in 1962 after the critical and popular success of Lolita had made him an international literary figure. An ingeniously constructed parody of detective fiction and learned commentary, Pale Fireoffers a cornucopia of deceptive pleasures, at the center of which is a 999-line poem written by the literary genius John Shade just before his death. Surrounding the poem is a foreword and commentary by the demented scholar Charles Kinbote, who interweaves adoring literary analysis with the fantastical tale of an assassin from the land of Zembla in pursuit of a deposed king. Brilliantly constructed and wildly inventive, this darkly witty novel of suspense, literary one-upmanship, and political intrigue achieves that rarest of things in literature: perfe","The Secretary of Dreams Volume One. Illustrated versions of ""Home Delivery"", ""Jerusalem's Lot"", and ""The Reach""; graphic story adaptations of ""The Road Virus Heads North"", ""Uncle Otto's Truck"", and ""Rainy Season"".",Data Structures and Algorithms in C++.,"A Framework for Understanding Poverty. People in poverty face challenges virtually unknown to those in middle class or wealth--challenges from both obvious and hidden sources. The reality of being poor brings out a survival mentality, and turns attention away from opportunities taken for granted by everyone else. If you work with people from poverty, some understanding of how different their world is from yours will be invaluable. Whether you're an educator--or a social, health, or legal services professional--this breakthrough book gives you practical, real-world support and guidance to improve your effectiveness in working with people from all socioeconomic backgrounds. Since 1995 A Framework for Understanding Poverty has guided hundreds of thousands of educators and other professionals through the pitfalls and barriers faced by all classes, especially the poor. Carefully researched and packed with charts, tables, and questionnaires, Framework not only documents the facts of poverty, it provides practical yet compassionat","Die Wahrheit der letzten Stunde. Die Ehe von Mariah und Colin White ist gescheitert. Die siebenjahrige Tochter Faith reagiert zunachst mit Schweigen. Nach einiger Zeit beginnt sie mit einer unsichtbaren Freundin zu reden und besitzt mit einem Male ubersinnliche Fahigkeiten. Als das Fernsehen davon erfahrt, werden Faith und ihre Mutter von einem gewaltigen Medienrummel erfasst, der das Kind zu erdrucken droht. Nur mit Hilfe von Ian, der sich Hals uber Kopf in Mariah verliebt hat, gelingt es ihnen, die Wahrheit und die Auseinandersetzung mit dem Glauben nicht zu einem Verhangnis werden zu lassen ...",Rebekah (Women of Genesis #2).,"Oathblood (Valdemar: Vows and Honor #3). This exciting new anthology includes a new novella featuring Mercedes Lackey's most popular heroines, Tarma (one of the sword-sworn and most feared of all warriors) and Kethry (who wields magic and weapons for the greater good), whose fates are suddenly bound together in blood by the powers that control their destinies. Also included in the unique volume is the complete collection of Lackey's short stories about these two brave sisters as they answer the call of their destinies with sword and sorcery!","Leonardo on Painting: An Anthology of Writings by Leonardo da Vinci; With a Selection of Documents Relating to his Career as an Artist. Leonardo's writings on painting--among the most remarkable from any era--were never edited by Leonardo himself into a single coherent book. In this anthology the authors have edited material not only from his so-called Treatise on Painting butalso from his surviving manuscripts and from other primary sources, some of which were here translated for the first time. The resulting volume is an invaluable reference work for art historians as well as for anyone interested in the mind and methods of one of the world's greatest creative geniuses. ""Highly readable. . . . Also included are documentary sources and letters illuminating Leonardo's career; the manuscript sources for all of Leonardo's statements are fully cited in the notes. The volume is skillfully translated and is illustrated with appropriate examples of drawings and paintings by the artist.""--Choice ""Certainly easier to read and . . . more convenient than previous compilations."" --Charles Hope, New York Review of Books ""A chaotic","The Bean Trees (Greer Family #1). Clear-eyed and spirited, Taylor Greer grew up poor in rural Kentucky with the goals of avoiding pregnancy and getting away. But when she heads west with high hopes and a barely functional car, she meets the human condition head-on. By the time Taylor arrives in Tucson, Arizona, she has acquired a completely unexpected child, a three-year-old American Indian girl named Turtle, and must somehow come to terms with both motherhood and the necessity for putting down roots. Hers is a story about love and friendship, abandonment and belonging, and the discovery of surprising resources in apparently empty places.","The Winthrop Woman. First published in 1958 and set in the early 17th century, this bestselling novel--and follow-up to Katherine--follows Elizabeth Winthrop, a courageous Puritan woman who finds herself at odds with her heritage and surroundings. A real historical figure, Elizabeth married into the family of Governor John Winthrop of the Massachusetts Bay Colony. In those times of hardship, famine, and Indian attacks, many believed that the only way to prosper was through the strong, bigoted, and theocratic government that John Winthrop favored. Defying the government and her family, Elizabeth befriends famous heretic Anne Hutchinson, challenges an army captain, and dares to love as her heart commanded. Through Elizabeth's three marriages, struggles with her passionate beliefs, and countless rebellions, a powerful tale of fortitude, humiliation, and ultimate triumph shines through.",Fundamentals of Heat and Mass Transfer [with IHT/FEHT 3.0 CD with User Guide Set].,Matilda.,"The Philosophy of Andy Warhol (From A to B and Back Again). A loosely formed autobiography by Andy Warhol, told with his trademark blend of irony and detachment In The Philosophy of Andy Warhol--which, with the subtitle ""(From A to B and Back Again),"" is less a memoir than a collection of riffs and reflections--he talks about love, sex, food, beauty, fame, work, money, and success; about New York, America, and his childhood in McKeesport, Pennsylvania; about his good times and bad in New York, the explosion of his career in the sixties, and his life among celebrities.","The Autobiography of Alice B. Toklas. A fascinating insight into the vibrant culture of Modernism, and the rich artistic world of Paris's Left Bank, Gertrude Stein's The Autobiography of Alice B. Toklasincludes an introduction by Thomas Fensch in Penguin Modern Classics. For Gertrude Stein and her wife Alice B. Toklas, life in Paris was based upon the rue de Fleurus and the Saturday evenings and 'it was like a kaleidoscope slowly turning'. Picasso was there with 'his high whinnying Spanish giggle', as were Cezanne and Matisse, Hemingway and Fitzgerald. As Toklas put it - 'The geniuses came and talked to Gertrude Stein and the wives sat with me'. A light-hearted entertainment, this is in fact Gertrude Stein's own autobiography and a roll-call of all the extraordinary painters and writers she met between 1903 and 1932. Audacious, sardonic and characteristically self-confident, this is a definitive account by American in Paris. Gertrude Stein (1874-1946), a writer of experimental prose, is one of the original American Moderni","Shattered Mirror. To the casual observer, Christopher Ravena and Sarah Vida look like normal high school students. But he's a vampire who has sworn off human blood, and she's a witch, a daughter of the most powerful vampire-hunting dynasty in history. Slowly, without meaning to, Sarah finds herself won over by his sensitivity, his gentleness, his kindness. But his past and her future collide when they both get tangled up with Nikolas, one of the most reviled vampires ever.","Crossing to Safety. Called a ""magnificently crafted story . . . brimming with wisdom"" by Howard Frank Mosher in ""The Washington Post Book World,"" ""Crossing to Safety"" has, since its publication in 1987, established itself as one of the greatest and most cherished American novels of the twentieth century. Tracing the lives, loves, and aspirations of two couples who move between Vermont and Wisconsin, it is a work of quiet majesty, deep compassion, and powerful insight into the alchemy of friendship and marriage.",鋼之鍊金術師 9.,"The Two Towers (The Lord of the Rings #2). The Fellowship was scattered. Some were bracing hopelessly for war against the ancient evil of Sauron. Some were contending with the treachery of the wizard Saruman. Only Frodo and Sam were left to take the accursed Ring of Power to be destroyed in Mordor-the dark Kingdom where Sauron was supreme. Their guide was Gollum, deceitful and lust-filled, slave to the corruption of the Ring. Thus continues the magnificent, bestselling tale of adventure begun in The Fellowship of the Ring, which reaches its soul-stirring climax in The Return of the King.","Monster: The Autobiography of an L.A. Gang Member. ""After pumping eight blasts from a sawed-off shotgun at a group of rival gang members, twelve-year-old Kody Scott was initiated into the L.A. gang the Crips. He quickly matured into one of the most formidable Crip combat soldiers, earning the name ""Monster"" for committing acts of brutality and violence that repulsed even his fellow gang members. When the inevitable jail term confined him to a maximum-security cell, a complete political and personal transformation followed: from Monster to Sanyika Shakur, black nationalist, member of the New Afrikan Independence Movement, and crusader against the causes of gangsterism. In a document that has been compared to The Autobiography of Malcolm X and Eldridge Cleaver's Soul on Ice, Shakur makes palpable the despair and decay of America's inner cities and gives eloquent voice to one aspect of the black ghetto experience today.""","On Friendship. Michel de Montaigne was the originator of the modern essay form; in these diverse pieces he expresses his views on relationships, contemplates the idea that man is no different from any animal, argues that all cultures should be respected, and attempts, by an exploration of himself, to understand the nature of humanity.","The Oak Apple (Morland Dynasty #4). 1630 - Charles I; the Civil War When civil war destroys the long years of peace in England, the clash between King and Parliament is echoed at Morland Place. Richard, the heir, brings home a Puritan bride, while his dashing brother Kit joins the Royalist cavalry under Prince Rupert, leaving their father, Edmund, desperately trying to steer a middle course. As the war grinds on, bitterness replaces early fervour and divisions grow deeper, and through it all Edmund struggles grimly to protect his inheritance and keep Morland Place intact.","A Spiritual Journey. Two classic audio programs from one of the world's most influential contemporary spiritual teachers, now available in one volume on cd In Part One: Finding and Exploring your Spiritual Path, Ram Dass speaks from the heart with wisdom gained from a lifetime spent on the path to enlightenment about the often rocky yet profoundly transforming road to living the spiritual life. With personal anecdotes and commentary, he illuminates a wide variety of ancient and contemporary philosophies, drawing from such sources as the Buddha, Russian philosopher Gurdjieff, Mahatma Ghandi, and many others. Here is down-to-earth advice for those on the path to spiritual fulfillment, the pleasures and pitfalls you will encounter en route, the value and potential dangers of teachers and gurus, and the importance of following your intuitive heart.In Part Two: Journey of Awakening, Ram Dass focuses on the moments crucial to the serious seeker of the spiritual path. Meditation is an essential part of that pract","On Becoming a Novelist. On Becoming a Novelistcontains the wisdom accumulated during John Gardner's distinguished twenty-year career as a fiction writer and creative writing teacher. With elegance, humor, and sophistication, Gardner describes the life of a working novelist; warns what needs to be guarded against, both from within the writer and from without; and predicts what the writer can reasonably expect and what, in general, he or she cannot. ""For a certain kind of person,"" Gardner writes, ""nothing is more joyful or satisfying than the life of a novelist."" But no other vocation, he is quick to add, is so fraught with professional and spiritual difficulties. Whether discussing the supposed value of writer's workshops, explaining the role of the novelist's agent and editor, or railing against the seductive fruits of literary elitism, On Becoming a Novelistis an indispensable, life-affirming handbook for anyone authentically called to the profession. ""A miraculously detailed account of the creative process.","CivilWarLand in Bad Decline. Six short stories and a novella. Set in a dystopian near-future in which America has become little more than a theme park in terminal disrepair, they constitute a searching and bitterly humorous commentary on the current state of the American Dream. Funny, sad, bleak, weird, toxic - the future of America as the Free Market runs rampant,the environment skids into disarray, and civilization dissolves into surreal chaos. These wacky, brilliant, hilarious and entirely original stories cue us in on George Saunder's skewed vision of the legacy we are creating. Against the backdrop of our devolvement, our own worst tendencies and greatest virtues are weirdly illuminated.","How Proust Can Change Your Life. Alain de Botton combines two unlikely genres--literary biography and self-help manual--in the hilarious and unexpectedly practical How Proust Can Change Your Life. Who would have thought that Marcel Proust, one of the most important writers of our century, could provide us with such a rich source of insight into how best to live life? Proust understood that the essence and value of life was the sum of its everyday parts. As relevant today as they were at the turn of the century, Proust's life and work are transformed here into a no-nonsense guide to, among other things, enjoying your vacation, reviving a relationship, achieving original and uncliched articulation, being a good host, recognizing love, and understanding why you should never sleep with someone on a first date. It took de Botton to find the inspirational in Proust's essays, letters and fiction and, perhaps even more surprising, to draw out a vivid and clarifying portrait of the master from between the lines of his work. He","His Dark Materials. With sales of three-quarters of a million copies last year alone, Philip Pullman's trilogy His Dark Materials is already acknowledged as a classic. A cunning blend of traditional children's adventure with sophisticated fantasy and science fiction, it follows the escapades of Lyra and Will in their parallel worlds. Dramatized by award-winning playwright Nicholas Wright for the National Theatre.",Jinx High (Diana Tregarde #3).,"Blindsighted (Grant County #1). A small Georgia town erupts in panic when a young college professor is found brutally mutilated in the local diner. But it's only when town pediatrician and coroner Sara Linton does the autopsy that the full extent of the killer's twisted work becomes clear. Sara's ex-husband, police chief Jeffrey Tolliver, leads the investigation -- a trail of terror that grows increasingly macabre when another local woman is found crucified a few days later. But he's got more than a sadistic serial killer on his hands, for the county's sole female detective, Lena Adams -- the first victim's sister -- wants to serve her own justice. But it is Sara who holds the key to finding the killer. A secret from her past could unmask the brilliantly malevolent psychopath .. or mean her death.","Blame! Vol. 8. Killy and Dhomochevsky don't trust each other, but they have a more pressing concern: retrieving Cibo's capsule of human genetic information. The capsule has been stolen by the Silicon Creatures, who will use it to attempt a provisional connection to the Netsphere. Older teens.","In Cold Blood. Truman Capote's In Cold Blood is both a masterpiece of journalism and a powerful crime thriller. Inspired by a 300-word article in The New York Times, Capote spent six years exploring and writing the story of Kansas farmer Herb Clutter, his family and the two young killers who brutally murdered them. In Cold Blood created a genre of novelistic non-fiction and made Capote's name with its unflinching portrayal of a comprehensible and thoroughly human evil.","How to Talk to Anyone: 92 Little Tricks for Big Success in Relationships. ""You'll not only break the ice, you'll melt it away with your new skills.""-- Larry King ""The lost art of verbal communication may be revitalized by Leil Lowndes.""-- Harvey McKay, author of ""How to Swim with the Sharks Without Being Eaten Alive"" What is that magic quality makes some people instantly loved and respected? Everyone wants to be their friend (or, if single, their lover!) In business, they rise swiftly to the top of the corporate ladder. What is their ""Midas touch?"" What it boils down to is a more skillful way of dealing with people. The author has spent her career teaching people how to communicate for success. In her book How to Talk to Anyone(Contemporary Books, October 2003) Lowndes offers 92 easy and effective sure-fire success techniques-- she takes the reader from first meeting all the way up to sophisticated techniques used by the big winners in life. In this information-packed book you'll find: 9 ways to make a dynamite first impression 14 ways to master small talk,","Heart of Darkness. Marlow, a seaman and wanderer, recounts his physical and psychological journey in search of the infamous ivory trader Kurtz. Travelling up river to the heart of the African continent, he gradually becomes obsessed by the enigmatic, wraith-like figure. Marlow's discovery of how Kurtz has gained his position of power over the local people involves him in a radical questioning, not only of his own nature and values, but those of Western civilization. A haunting and hugely influential Modernist masterpiece, Heart of Darkness(1899) explores the limits of human existence as well as the nightmarish realities of imperialism. Part of a major series of new editions of Conrad's most famous works in Penguin Classics, this volume contains Conrad's Congo Diary, a chronology, further reading, notes, a map of the Congo, a glossary and an introduction discussing the author's experiences of Africa, the narrative and symbolic complexities of Heart of Darknessand critical responses to the novel.","Gain. Richard Powers' novel is a fascinating and profound exploration of the interaction of an individual human life and a corporate one. It tells two stories: the first that of an American company, which starts as a small family soap and candle-making firm in the early 1800s, and ends as a vast pharmaceuticals-to-pesticides combine in the 1990s. The second is that of a contemporary woman, living in the company town, who during the course of the novel is diagnosed and then finally dies of cancer, a cancer that is almost certainly caused by exposure to chemical wastes from the company's factories. Richly intellectually stimulating, deeply moving and beautifully written, Gain is very much a 'Great American Novel', an exploration of the history, uniqueness and soul of America, in the tradition of Underworld. But it is most reminiscent of Graham Swift's Waterland, another novel that combines history, both public and private, with contemporary lives, showing how individuals are both the victims a","Robinson Crusoe. &&LDIV&&R&&LDIV&&R&&LI&&RRobinson Crusoe&&L/I&&R, by &&LB&&RDaniel Defoe&&L/B&&R, is part of the &&LI&&RBarnes & Noble Classics&&L/I&&R&&LI&&R &&L/I&&Rseries, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and pages of carefully crafted extras. Here are some of the remarkable features of &&LI&&RBarnes & Noble Classics&&L/I&&R: &&LDIV&&R New introductions commissioned from today's top writers and scholars Biographies of the authors Chronologies of contemporary historical, biographical, and cultural events Footnotes and endnotes Selective discussions of imitations, parodies, poems, books, plays, paintings, operas, statuary, and films inspired by the work Comments by other famous authors Study questions to challenge the reader's viewpoints and expectations Bibliographies for further reading Indices & Glossaries, when appropriate All editions are beautifully designed and are printed to superior specifi","The Ballet Companion: A Dancer's Guide to the Technique Traditions and Joys of Ballet. A New Classic for Today's Dancer The Ballet Companionis a fresh, comprehensive, and thoroughly up-to-date reference book for the dancer. With 150 stunning photographs of ballet stars Maria Riccetto and Benjamin Millepied demonstrating perfect execution of positions and steps, this elegant volume brims with everything today's dance student needs, including: Practical advice for getting started, such as selecting a school, making the most of class, and studio etiquette Explanations of ballet fundamentals and major training systems An illustrated guide through ballet class -- warm-up, barre, and center floor Guidelines for safe, healthy dancing through a sensible diet, injury prevention, and cross-training with yoga and Pilates Descriptions of must-see ballets and glossaries of dance, music, and theater terms Along the way you'll find technique secrets from stars of American Ballet Theatre, lavishly illustrated sidebars on ballet history, and tips on everything from styling a ballet","In a Sunburned Country. A CLASSIC FROM THE NEW YORK TIMESBESTSELLING AUTHOR OF ONE SUMMER Every time Bill Bryson walks out the door, memorable travel literature threatens to break out. His previous excursion along the Appalachian Trail resulted in the sublime national bestseller A Walk in the Woods. In A Sunburned Countryis his report on what he found in an entirely different place: Australia, the country that doubles as a continent, and a place with the friendliest inhabitants, the hottest, driest weather, and the most peculiar and lethal wildlife to be found on the planet. The result is a deliciously funny, fact-filled, and adventurous performance by a writer who combines humor, wonder, and unflagging curiousity. Despite the fact that Australia harbors more things that can kill you in extremely nasty ways than anywhere else, including sharks, crocodiles, snakes, even riptides and deserts, Bill Bryson adores the place, and he takes his readers on a rollicking ride far beyond that beaten tourist path. Wherev","The Secret School. More than anything, Ida Bidson wants to become a teacher. To do that, she must finish eighth grade, then go on to high school. But her dream falters when the one-room school in her remote Colorado town shuts down. Her only hope is to keep the school open without anyone finding out. Yet even a secretschool needs a teacher. Ida can't be it. . . . Or can she? In the spirit of The True Confessions of Charlotte Doyle,Newbery Medal winner Avi creates an inspiring story of a headstrong girl determined to control her own destiny.",Three Complete Xanth Novels (Xanth #1-3).,The Complete Tales of Nikolai Gogol Volume 1.,"Effigies (Faye Longchamp #3). Archaeologist Faye Longchamp and her friend, Joe Wolf Mantooth, have traveled to Neshoba County, Mississippi, to help excavate a site near Nanih Waiya, the sacred mound where tradition says the Choctaw nation was born. When farmer Carroll Calhoun refuses their request to investigate an ancient Native American mound, Faye and her colleagues are disappointed, but his next action breaks their hearts: he tries to bulldoze the huge relic to the ground. Faye and Joe rush to protect history--with their bodies, if necessary. Soon the Choctaws arrive to defend the mound and the farmer's white and black neighbors come to defend his property rights. Though a popular young sheriff That night, Calhoun is found dead, his throat sliced with a handmade stone blade. Was he killed by an archaeologist, angered by his wanton destruction of history? Neshoba County farmers have been plowing up stone tools like the murder weapon for centuries. Did one of them take this chance to even the score with an old ri","Rule #1: The Simple Strategy for Successful Investing in Only 15 Minutes a Week!. Before I became ""Phil Town, teacher of investing principles to more than 500,000 people a year,"" I was a lot like you: someone who viewed individual stock investing as way too hard to do successfully. As a guy who barely made a living as a river guide, I considered the whole process pretty impenetrable, and I was convinced that to do it right you had to make it a full-time job. Me, I was more interested in having full-time fun. So I was tempted to do what you're probably doing right now: letting some mutual fund manager worry about growing your nest egg. Let me tell you why that decision could one day make you absolutely miserable. The fact is, because of natural market cycles, the mutual fund industry is likely to soon be facing twenty years of flat returns. That means that if you've got your nest egg tucked away in funds--especially the type found in most 401ks--your egg won't get much bigger than it is now. Translation: Get ready for a retirement filled with lots of cold cuts, plent","The Invisible Heart: An Economic Romance. A love story that embraces the business and economic issues of the day? The Invisible Heart takes a provocative look at business, economics, and regulation through the eyes of Sam Gordon and Laura Silver, teachers at the exclusive Edwards School in Washington, D.C. Sam lives and breathes capitalism. He thinks that most government regulation is unnecessary or even harmful. He believes that success in business is a virtue. He believes that our humanity flourishes under economic freedom. Laura prefers Wordsworth to the Wall Street Journal. Where Sam sees victors, she sees victims. She wants the government to protect consumers and workers from the excesses of Sam's beloved marketplace. While Sam and Laura argue about how to make the world a better place, a parallel story unfolds across town. Erica Baldwin, the crusading head of a government watchdog agency, tries to bring Charles Krauss, a ruthless CEO, to justice. How are these two dramas connected? Why is Sam under threat of dismissal? W","Kitty Goes to Washington (Kitty Norville #2). Celebrity werewolf and late-night radio host Kitty Norville prefers to be heard and not seen. So when she's invited to testify at a Senate hearing on behalf of supernaturals, and her face gets plastered on national TV, she inherits a new set of friends, and enemies, including the vampire mistress of the city; an uber-hot Brazilian were-jaguar; and a Bible-thumping senator who wants to expose Kitty as a monster. Kitty quickly learns that in this city of dirty politicians and backstabbing pundits, everyone's itching for a fight.","A Very Long Engagement. During the First World War five French soldiers, accused of a cowardly attempt to evade duty, are bundled into no-man's land and certain death. Five bodies are later recovered, the families are notified that the men died in the line of duty and the whole, distasteful incident appears closed. After the war the fianc-e of one of the men receives a letter which hints at what might have happened. Mathilde Donnay determines to discover the fate of her beloved amid the carnage of battle. A Very Long Engagement turns into an unusual and engrossing thriller as she discovers an increasing number of people trying to put her off the scent. Japrisot's achievement is to have written a novel that is both a suspenseful thriller and one which transforms a single small incident into the epitome of all wartime atrocities. The d-nouement, when it finally happens, is moving and horribly convincing.","My Secret Garden: Women's Sexual Fantasies. When it first appeared, Nancy Friday's taboo-shattering bestseller ""My Secret Garden"" created a mixed storm of outrage and exhilaration. Those women who feared their erotic fantasies called it pornographic. Those women who read it recognized in its pages the hidden content of their own sexuality. More outspoken and graphic than any book before its time, ""My Secret Garden"" quickly became a classic study of female sexuality. Today, more than one million women hail this astonishing study as a groundbreaking book-- a liberating force adding a new dimension to their sexual fantasies and lives.","The Right Stuff (To Protect and Defend #3). IRRITATING. UNCOMPROMISING. AND DAMNED ATTRACTIVE. Six feet, two inches of pure marine male, Major Russ ""Mac"" McIver had the right stuff in spades. His by-the-book, black-or-white view of the world allowed no compromises. Which tended to ruffle Lieutenant Caroline Dunn's usually unrufflable temper. So when a dangerous mission threw them together, Cari vowed to lay down the law with the stubborn marine -- just as soon as she got her leaping heartbeat under control. They locked horns whenever they met. But Mac's one soft spot was Cari. Their battle of the sexes provided a perfect cover for his weakness, but could he keep his secret when they might not have tomorrow? TO PROTECT AND DEFEND They were trained to put their lives on the line, but their hearts were another matter....","The Return of the Dancing Master. When retired policeman Herbert Molin is found brutally slaughtered on his remote farm in the northern forests of Sweden, police find strange tracks in the snow -- as if someone had been practicing the tango. Stefan Lindman, a young police officer recently diagnosed with mouth cancer, decides to investigate the murder of his former colleague, but is soon enmeshed in a mystifying case with no witnesses and no apparent motives. Terrified of the disease that could take his life, Lindman becomes more and more reckless as he unearths the chilling links between Molin's death and an underground neo-Nazi network that runs further and deeper than he could ever have imagined.","Storm of the Century: An Original Screenplay. For the first time in Stephen King's remarkable publishing history, the master storyteller presents an all-new, original tale written expressly for the television screen. They're calling it the Storm of the Century, and it's coming hard. The residents of Little Tall Island have seen their share of nasty Maine Nor'easters, but this one is different. Not only is it packing hurricane-force winds and up to five feet of snow, it's bringing something worse. Something even the islanders have never seen before. Something no one wants to see. Just as the first flakes begin to fall, Martha Clarendon, one of Little Tall Island's oldest residents, suffers an unspeakably violent death. While her blood dries, Andre Linoge, the man responsible, sits calmly in Martha's easy chair holding his cane topped with a silver wolf's head...waiting. Linoge knows the townsfolk will come to arrest him. He will let them. For he has come to the island for one reason. And when he meets Constable Mike Anderson, his b","The Black Dahlia Files: The Mob the Mogul and the Murder That Transfixed Los Angeles. In 1946, Elizabeth Short traveled to Hollywood to become famous and see her name up in lights. Instead, the dark-haired beauty became immortalized in the headlines as the ""Black Dahlia"" when her nude and bisected body was discovered in the weeds of a vacant lot. Despite the efforts of more than four hundred police officers and homicide investigators, the heinous crime was never solved. Now, after endless speculation and false claims, bestselling author Donald H. Wolfe discovers startling new evidence--buried in the files of the Los Angeles District Attorney's Office for more than half a century. With the aid of archival photos, news clippings, and investigative reports, Wolfe documents the riveting untold story that names the brutal murderer--the notorious Mafia leader, Benjamin ""Bugsy"" Siegel--and the motive--an unwanted pregnancy resulting from Short's involvement with the most powerful figure in Los Angeles, Norman Chandler. But Wolfe goes even further to unravel the large-scale cov",ヒカルの碁 16、中国棋院.,"Bonecrack. In the middle of the night, two masked men break into Neil Griffon's home and abduct him. He quickly discovers that unless he agrees to their unreasonable demands, they will destroy his father's precious horses and racing stable--and, ultimately, Neil himself. Returned to his father's stables, he must find a way to bring down these criminals. Because having to choose between his integrity and his life is no choice at all...","The Constant Princess (The Plantagenet and Tudor Novels #6). ""I am Catalina, Princess of Spain, daughter of the two greatest monarchs the world has ever known...and I will be Queen of England."" Thus, bestselling author Philippa Gregory introduces one of her most unforgettable heroines: Katherine of Aragon. Known to history as the Queen who was pushed off her throne by Anne Boleyn, here is a Katherine the world has forgotten: the enchanting princess that all England loved. First married to Henry VIII's older brother, Arthur, Katherine's passion turns their arranged marriage into a love match; but when Arthur dies, the merciless English court and her ambitious parents -- the crusading King and Queen of Spain -- have to find a new role for the widow. Ultimately, it is Katherine herself who takes control of her own life by telling the most audacious lie in English history, leading her to the very pinnacle of power in England. Set in the rich beauty of Moorish Spain and the glamour of the Tudor court, The Constant Princess presents a woman whose cons","Grasping God's Word: A Hands-On Approach to Reading Interpreting and Applying the Bible. Grasping God's Word has proven itself in classrooms across the country as an invaluable help to students who want to learn how to read, interpret, and apply the Bible for themselves. The third edition, revised based on feedback from professors, will continue to serve college-level students and lay learners well in their quest to gain a firm grasp on the rock of God's word. Old Testament scholar J. Daniel Hays and New Testament expert J. Scott Duvall provide practical, hands-on exercises to guide students through the interpretive process. To emphasize the Bible's redemptive arc and encourage correlation across the canon, the authors have included a call to 'cross into the rest of Scripture' as an additional step in the Interpretive Journey. This edition has also been rearranged for clarity and includes updated illustrations, appendices, bibliography, and assignments. A website for professors offers extensive teaching materials, and an accompanying revised workbook (Grasping God's Word W","The Fourteen Sisters of Emilio Montez O'Brien. In The Fourteen Sisters of Emilio Montez O'Brien, Oscar Hijuelos brings to life the rambunctious Montez O'Brien family. In a small Pennsylvania town, Nelson O'Brien runs the Jewel Box Movie Theater, raising 14 daughters and a son with his wife, Mariela Montez. Through the eyes of Margarita, the eldest daughter, the lives, loves and tragedies of the Montez O'Briens and their complex family relationships unfold. While reflecting on the life of Emilio, her doggedly masculine brother, Margarita also ruminates on the nature of femininity, family, sex, love and earthly happiness. Her musings recall exhilarating adventures, eliciting tears and laughter, and tenderly reveal the bounteous heart of a warm, passionate family. At once lush, erotic and gorgeously written, The Fourteen Sisters of Emilio Montez O'Brienis a masterwork by one of America's greatest writers.",Call of Cthulhu: Horror Roleplaying (Call of Cthulhu RPG).,"Moby Dick. 'Command the murderous chalices!...Drink ye harpooners! drink and swear, ye men that man the deathful whaleboat's bow - Death to Moby Dick!'. So Captain Ahab binds his crew to fulfil his obsession - the destruction of the great white whale. Under his lordly but maniacal command the Pequod's commercial mission is perverted to one of vengeance. To Ahab, the monster that destroyed his body is not a creature, but the symbol of 'some unknown but still reasoning thing'. Uncowed by natural disasters, ill omens, even death, Ahab urges his ship towards 'the undeliverable, nameless perils of the whale'.","Tropic of Capricorn. Banned in America for almost 30 years because of its explicit sexual content, this companion volume to Miller's Tropic of Cancer chronicles his life in 1920s New York City. Famous for its frank portrayal of life in Brooklyn's ethnic neighborhoods & Miller's outrageous sexual exploits, Tropic of Capricorn is now considered a cornerstone of modern literature.",George Washington's Rules of Civility & Decent Behavior in Company and Conversation (Little Books of Wisdom).,"Use of Weapons. The man known as Cheradenine Zakalwe was one of Special Circumstances' foremost agents, changing the destiny of planets to suit the Culture through intrigue, dirty tricks and military action. The woman known as Diziet Sma had plucked him from obscurity and pushed him towards his present eminence, but despite all their dealings she did not know him as well as she thought. The drone known as Skaffen-Amtiskaw knew both of these people. It had once saved the woman's life by massacring her attackers in a particularly bloody manner. It believed the man to be a lost cause. But not even its machine intelligence could see the horrors in his past. Ferociously intelligent, both witty and horrific, USE OF WEAPONS is a masterpiece of science fiction.","The Culture of Fear: Why Americans Are Afraid of the Wrong Things. In this eye-opening examination of a pathology that has swept the country, the noted sociologist Barry Glassner reveals why Americans are burdened with overblown fears. He exposes the people and organizations that manipulate our perceptions and profit from our anxieties: politicians who win elections by heightening concerns about crime and drug use even as both are declining; advocacy groups that raise money by exaggerating the prevalence of particular diseases; TV news-magazines that monger a new scare every week to garner ratings.","At the Edge (Psychic Triplet Trilogy #1). Claire, Tempest, and Leona: triplets blessed--or cursed--each with a special extra sense that they would deny, given the chance . . . Claire, the youngest, finds solitude and escape in rural Montana. The descendant of an ancient Celtic seer, she struggles to conceal her unsettling power to sense what others feel--the good and the evil, the pain and the joy. When her peace is shattered by her new neighbor, Neil Olafson, Claire's shielded emotions start simmering. He's the opposite of everything she's ever wanted, a man who ignites her latent sensuality. And while her eerie powers have frightened others away, Neil isn't running. And when Claire comes face-to-face with danger, he becomes her protector--as well as her lover. Now, Claire and Neil must confront the past and save the life of a young innocent. But there is a killer lurking in the background who wants them both dead before they can unravel his dirty secrets. And he's been very busy . . .","The Hound of the Baskervilles. Alternate cover edition can be found . Holmes and Watson are faced with their most terrifying case yet. The legend of the devil-beast that haunts the moors around the Baskerville family's home warns the descendants of that ancient clan never to venture out in those dark hours when the power of evil is exalted. Now, the most recent Baskerville, Sir Charles, is dead and the footprints of a giant hound have been found near his body. Will the new heir meet the same fate?","Charlie and the Chocolate Factory: A Play. Roald Dahl's much-loved story about how Charlie Bucket wins a ticket to visit Willy Wonka's amazing chocolate factory is turned into a play for children to act. With tips about scenery, props and lighting, the play is easy to stage and there are lots of parts for everyone.","In Web Design for Libraries. This stand alone workbook is intended for individuals with an interest in developing professional-looking websites without having to learn HTML language. Using a typical Microsoft Windows environment with cut and paste templates and examples, the book helps users learn and understand some of the benefits and limitations of commercially available software. It will be a handy reference for busy librarians who need to refresh their memories when they make additions, deletions, or add new material to their websites. It may also be used as a handout when presenting a workshop on Web design. If your library has little, if any, technical support, and you have little, if any programming background, this stand-alone workbook will help you create a simple yet professional-looking website. Using a typical Microsoft Windows environment with cut and paste templates and examples, you will learn to understand some of the benefits and limitations of using commercially available software tools. (http:","The Criss Cross. Nikki Ling is half black and Japanese. She's independent, street-smart and the daughter of a prostitute. Living in the mean streets of East New York and Bedford Stuyvesant Brooklyn shes forced to make a living the only what she knows how. When a wealthy, South African diplomat asks for her hand in marriage things seem to get brighter. Until she realizes that the soft-spoken, reserved, gentleman is pathological, kinky, and sadistic. One day she meets a mysterious stranger who approaches her with The Criss Cross. Is The Criss Crossher ticket to a better life? Or will The Criss Crossultimately become the double cross? Wait! The Criss Crossisn't done yet! The old gang from Life, Love & Lonelinesshave some unfinished business to resolve. In this page-turning novel see how the drama unfolds for Lyric, Lacey, Madison, Joshua, and Estelle.","The Lost World (TV Tie-in). Irish athletic reporter Malone narrates tale of bold squat quarrelsome Professor Challenger seeking remote Amazonian plateau where ""the ordinary laws of Nature are suspended"" with prehistoric creatures and ape-men. Other armed British whites are spare skeptic Professor Summerlee, and ginger dead-shot Lord John, supported by colored bearers.","Brother Odd (Odd Thomas #3). Loop me in, odd one. The words, spoken in the deep of night by a sleeping child, chill the young man watching over her. For this was a favorite phrase of Stormy Llewellyn, his lost love, and Stormy is dead, gone forever from this world. In the haunted halls of the isolated monastery where he had sought peace, Odd Thomas is stalking spirits of an infinitely darker nature. Through two New York Timesbestselling novels Odd Thomas has established himself as one of the most beloved and unique fictional heroes of our time. Now, wielding all the power and magic of a master storyteller at the pinnacle of his craft, Dean Koontz follows Odd into a singular new world where he hopes to make a fresh beginning--but where he will meet an adversary as old and inexorable as time itself. St. Bartholomew's Abbey sits in majestic solitude amid the wild peaks of California's high Sierra, a haven for children otherwise abandoned, and a sanctuary for those seeking insight. Odd Thomas has come here to learn to","Moo Baa La La La!. Serious silliness for all ages. Artist Sandra Boynton is back and better than ever with completely redrawn versions of her multi-million selling board books. These whimsical and hilarious books, featuring nontraditional texts and her famous animal characters, have been printed on thick board pages, and are sure to educate and entertain children of all ages.",Selected Speeches and Writings.,"The Complete Plays. This stunning new translation presents the only truly complete edition of the playwright who is in the pantheon of the greatest dramatists in history. Anton Chekhov is a unique force in modern drama, his works interpreted and adapted internationally and beloved for their understanding of the human condition and their brilliant wit. This volume contains work that has never previously been translated including the newly discovered farce The Power of Hypnosis and the first version of Ivanov, as well as Chekhov's early humorous dialogues. No less important, Laurence Senelick, who has staged many of these plays, has freshly translated them to bring into English Chekhov's jokes, the deliberate repetitions of his dialogue, and his verbal characterizations. Senelick has also annotated the works to bring clarity for the general reader and has included variants of the plays. His translations infuse new life into such classics as The Cherry Orchard and Three Sisters.","Legends. Acclaimed writer and editor Robert Silverberg gathered eleven of the finest writers in Fantasy to contribute to this collection of short novels. Each of the writers was asked to write a new story based on one of his or her most famous series: from Stephen King's opening piece set in his popular Gunslingeruniverse to Robert Jordan's early look at his famed Wheel of Timesaga, these stories are exceptionally well written and universally well told. The authors include King, Jordan, and Silverberg himself, as well as Terry and Lyn Pratchett, Terry Goodkind, Orson Scott Card, Ursula K. Le Guin, Tad Williams, George R.R. Martin, Anne McCaffrey, and Raymond E. Feist.","Summer of my German Soldier. An emotional, thought-provoking book from multi-award-winning author Bette Greene. The summer that Patty Bergen turns twelve is a summer that will haunt her forever. When her small hometown in Arkansas becomes the site of a camp housing German prisoners during World War II, Patty learns what it means to open her heart. Even though she's Jewish, she begins to see a prison escapee, Anton, not as a Nazi, but as a lonely, frightened young man with feelings not unlike her own. In Anton, Patty finds someone who softens the pain of her own father's rejection and who appreciates her in a way her mother never will. While patriotic feelings run high, Patty risks losing family, friends -- even her freedom -- for this dangerous friendship. It is a risk she has to take and one she will have to pay a price to keep. ""An exceptionally fine novel."" --The New York Times ""Courageous and compelling!"" --Publishers Weekly A National Book Award Finalist An ALA Notable Book ANew York Times Outstanding Book of","Bill Bryson's African Diary. Bill Bryson goes to Kenya at the invitation of CARE International, the charity dedicated to working with local communities to eradicate poverty around the world. Kenya, generally regarded as the cradle of mankind, is a land of contrasts, with famous game reserves, stunning landscapes, and a vibrant cultural tradition. It also provides plenty to worry a traveller like Bill Bryson, fixated as he is on the dangers posed by snakes, insects and large predators. But on a more sober note, it is a country that shares many serious human and environmental problems with the rest of Africa: refugees, AIDS, drought and grinding poverty. Travelling around the country, Bryson casts his inimitable eye on a continent new to him, and the resultant diary, though short in length, contains the trademark Bryson stamp of wry observation and curious insight. All the author's royalties from Bill Bryson's African Diary, as well as all profits, will go to CARE International.","Bella y oscura. Bella y oscuraes el relato alegorico de lo que poseemos sin haber conquistado: la sabiduria de la infancia. Es la evocacion de un tiempo pasado, solitario, fermento necesario de la libertad esperada; es la belleza que la fantasia extrae de la crueldad y de los inocentes olvidos de la ninez. En Bella y oscura se cuenta la infancia vivida y sonada de una nina que viajara desde la soledad del orfanato hasta el marginal Barrio donde la acoge una singular familia: Dona Barbara, su abuela, mujer de poderosa presencia; Amanda, su tia, de caracter debil, sometida a Segundo, un marido egoista y pendenciero; Chico, su primo, taciturno observador y vigilante de la actividad del Barrio; y Airelai. Una obra distinta, de admirable contencion expositiva, que confirma no solo el pulso narrativo que reconocemos en Rosa Montero, sino tambien su voluntad radical de sustraerse a toda rutina literaria y su capacidad para crear un rico y maduro mundo propio.","The Burglar Who Thought He Was Bogart (Bernie Rhodenbarr #7). Bookseller Bernie Rhodenbarr's in love--with an exotic Eastern European beauty who shares his obsession with Humphrey Bogart movies. He's in heaven, munching popcorn with his new amour every night at a Bogart Film Festival--until their Casablanca-esque idyll is cut short by his other secret passion: burglary. When he's hired to pilfer a portfolio of valuable documents from a Park Avenue apartment, Bernie can hardly refuse. But the occupant's early return forces Bernie to flee empty-handed--and he soon finds himself implicated in a murder. Before you can say ""who stole the strawberries?"" he's hunting for a killer, up to his neck in the outrageous intrigues of a tiny Balkan nation . . . and menaced by more sinister fat men and unsavory toadies than the great Bogie himself butted heads with in pursuit of that darn bird!","School's Out—Forever (Maximum Ride #2). In this eagerly awaited follow-up, brave bird-kid Max and her flock are discovered by an FBI agent and forced to go to ""school."" There is no such thing as an ordinary day as Max deciphers how and when she's supposed to save the world, and she faces her greatest enemy--a clone of herself. Little, Brown and Company","The River. Harriet is between two worlds. Her sister is no longer a playmate, her brother is still a child. The comforting rhythm of her Indian childhood - the noise of the jute works, the festivals that accompany each season and the eternal ebb and flow of the river - is about to be shattered.","The Great and Secret Show (Book of the Art #1). Clive Barker's bestseller Weaveworldastonished readers with his visionary range, establishing him as a master of fabulist literature. Now, with The Great and Secret Showhe rises to new heights. In this unforgettable epic he wields the full power and sweep of his talents. ""Succinctly put,"" says Barker, ""it's about Hollywood, sex and Armageddon."" Memory, prophecy and fantasy; the past, the future, and the dreaming moment between are all one country living one immortal day. To know that is Wisdom. To use it is the Art. Armageddon begins with a murder in the Dead Letter Office in Omaha. A lake that has never existed falls from the clouds over Palomo Grove, CA. Young passion blossoms, as the world withers with war. The Great and Secret Show has begun on the stage of the world. Soon the final curtain must fall. In this, the First Book of the Art, Barker has created a masterpiece of the imagination that explores the uncharted territory within our secret lives and most private hearts. Sprawlin","King Lear. King Lear, widely considered Shakespeare's most deeply moving, passionately expressed, and intellectually ambitious play, has almost always been edited from the revised version printed in the First Folio of 1623, with additions from the quarto of 1608. Now for the first time, this new volume presents the full, scholarly edition to be based firmly on the quarto, now recognized as the base text from which all others derive. A thorough, attractively written introduction suggests how the work grew slowly in Shakespeare's imagination, fed by years of reading, thinking, and experience as a practical dramatist. This editition consists of a new, modern-spelling text; a full index to the introduction and commentary; production photographs and related art. The on-page commentary and detailed notes to this edition offer critical help in understanding the language and dramaturgy in relation to the theaters in which King Lear was first performed. Additional sections reprint the early ballad, which","QED: The Strange Theory of Light and Matter. Famous the world over for the creative brilliance of his insights into the physical world, Nobel Prize-winning physicist Richard Feynman also possessed an extraordinary talent for explaining difficult concepts to the nonscientist. QED--the edited version of four lectures on quantum electrodynamics that Feynman gave to the general public at UCLA as part of the Alix G. Mautner Memorial Lecture series--is perhaps the best example of his ability to communicate both the substance and the spirit of science to the layperson. The focus, as the title suggests, is quantum electrodynamics (QED), the part of the quantum theory of fields that describes the interactions of the quanta of the electromagnetic field-light, X rays, gamma rays--with matter and those of charged particles with one another. By extending the formalism developed by Dirac in 1933, which related quantum and classical descriptions of the motion of particles, Feynman revolutionized the quantum mechanical understanding of the natur","Krik? Krak!: Récits. When Haitians tell a story, they say ""Krik?"" and the eager listeners answer ""Krak!"" In Krik? Krak!In her second novel, Edwidge Danticat establishes herself as the latest heir to that narrative tradition with nine stories that encompass both the cruelties and the high ideals of Haitian life. They tell of women who continue loving behind prison walls and in the face of unfathomable loss; of a people who resist the brutality of their rulers through the powers of imagination. The result is a collection that outrages, saddens, and transports the reader with its sheer beauty.","The Late Mattia Pascal. Mattia Pascal endures a life of drudgery in a provincial town. Then, providentially, he discovers that he has been declared dead. Realizing he has a chance to start over, to do it right this time, he moves to a new city, adopts a new name, and a new course of life--only to find that this new existence is as insufferable as the old one. But when he returns to the world he left behind, it's too late: his job is gone, his wife has remarried. Mattia Pascal's fate is to live on as the ghost of the man he was. An explorer of identity and its mysteries, a connoisseur of black humor, Nobel Prize winner Luigi Pirandello is among the most teasing and profound of modern masters. The Late Mattia Pascal, here rendered into English by the outstanding translator William Weaver, offers an irresistible introduction to this great writer's work","My Perfect Life (Confessions of a Teenage Drama Queen #2). ""Captures teen angst with wit and poignancy. . . . Fans of DRAMA QUEEN will grab this right away."" --BOOKLIST (starred review) With perfect parents, perfect friends, and perfect poise, it seems like Ella Gerard has it all. But when her best friend, Lola, nominates her to run for school president against the wickedly popular Carla Santini, some of the less-than-perfect aspects of Ella's life come to light. How can Ella come out a winner without losing face?","Zur Genealogie der Moral. Friedrich Nietzsches brillante Streitschrift 'Zur Genealogie der Moral' (1887) zahlt zu den einflussreichsten seiner Werke: Von Sigmund Freud bis Michel Foucault reicht die Riege der grossen Denker, die sich von ihr faszinieren und anregen liessen. Ebenso wortgewaltig wie gedanklich prazise macht Nietzsche sich hier auf die Suche nach der Herkunft unserer moralischen Vorurteile, nach dem Ursprung jenes 'Gut und Bose', das bis heute unser privates, soziales, politisches Handeln entscheidend bestimmt. Seine Grundhaltung dabei ist stets emanzipatorisch denn wer seine Herkunft verkennt, kann keine Zukunft gestalten.","The Wizard (The Wizard Knight #2). Sir Able returns to Mythgathr on his steed Cloud, a great mare the color of her name. Able is filled with new knowledge of the ways of the seven-fold world and possessed of great magical secrets. His knighthood now beyond question, Able works to fulfill his vows to his king, his lover, his friends, his gods, and even his enemies. Able must set his world right, restoring the proper order among the denizens of all the seven worlds. The Wizardis a charming, riveting, emotionally charged tale of wonders, written with all the beauty one would expect from a writer whom Damon Knight called ""a national treasure.""","Complete Star Wars Trilogy Scrapbook Re-issue. The ultimate guide to the classic Star Wars trilogy, featuring amazing photos and fascinating facts, timed to tie in to the blockbuster DVD release of the classic Star Wars movies. The ultimate guide to the classic Star Wars trilogy, featuring amazing photos and fascinating facts, timed to tie in to the blockbuster DVD release of the classic Star Wars movies.","You are Being Lied To: The Disinformation Guide to Media Distortion Historical Whitewashes and Cultural Myths. ""You Are Being Lied To"" is a massive collection of articles that ruthlessly destroy the distortions, myths, and outright lies that are fed to us by the government, the media, corporations, history books, organized religion, science and medicine, and society in general. No one is spared, and all sacred cows are candidates for the grinder. Do you believe any of the following? Alcoholics Anonymous is effective.Hackers pose a grave threat to the nation.There's a hidden code in the Bible.The Big Bang is an airtight fact.Thousands of species have gone extinct because of deforestation. Licking certain toads will get you high.Most terrorists are Middle Eastern. Wake up! You're being lied to. This book acts as a battering ram against the distortions, myths, and outright lies that have been shoved down our throats by the government, the media, corporations, organized religion, the scientific establishment, and others who want to keep the truth from us. An unprecedented group of researchers--inve","Red: Passion and Patience in the Desert. The beloved author of Refuge, Terry Tempest Williams is one of the country's most eloquent and imaginative writers. The desert is her blood. In this potent collage of stories, essays, and testimony, Redmakes a stirring case for the preservation of America's Redrock Wilderness in the canyon country of southern Utah. As passionate as she is persuasive, Williams writes lyrically about the desert's power and vulnerability, describing wonders that range from an ancient Puebloan sash of macaw feathers found in Canyonlands National Park to the desert tortoise-an animal that can ""teach us the slow art of revolutionary patience"" as it extends our notion of kinship with all life. She examines the civil war being waged in the West today over public and private uses of land-an issue that divides even her own family. With grace, humor, and compassionate intelligence, Williams reminds us that the preservation of wildness is not simply a political process but a spiritual one. ""Lush elegies to the wil",Black Hole tome 4 : Reine des lézards.,"Men's Health: Book of Muscle - The World's Most Complete Guide to Building Your Body. Men's Health The Book of Muscle by Lou Schuler and Ian King is the World's Most AUTHORITATIVE Guide to Building Your Body You probably know a lot about building muscle. You know which curl is the best for your biceps, you do every possible exercise for your abdominals, and your 20-set bench-press routine is the envy of everyone in the gym. So why haven't you gotten the results you want? This book has the answer. In fact, it probably answers every question you've ever asked about how your muscles work: What makes them grow? What makes them show? Why didn't that champion bodybuilder's routine work for you? But The Book of Muscledoes more than just explain how your muscles work. It also gives you comprehensive muscle-building programs from a world-class trainer. Ian King has spent 2 decades as strength coach to world-champion and Olympic athletes. He is in wide demand as a lecturer on athletic preparation and physique development, and he is a popular contributor to Men's Healthmagazine an",How Dogs Think: What the World Looks Like to Them and Why They Act the Way They Do.,"So Far from God: The U.S. War With Mexico 1846-1848. The Mexican-American War of the 1840s, precipitated by border disputes and the U.S. annexation of Texas, ended with the military occupation of Mexico City by General Winfield Scott. In the subsequent treaty, the United States gained territory that would become California, Nevada, New Mexico, Arizona, Utah, and parts of Wyoming and Colorado. In this highly readable account, John S.D. Eisenhower provides a comprehensive survey of this frequently overlooked war.","The Great World. Every city, town and village has its memorial to war. Nowhere are these more eloquent than in Australia, generations of whose young men have enlisted to fight other people's battles - from Gallipoli and the Somme to Malaya and Vietnam. In THE GREAT WORLD, his finest novel yet, David Malouf gives a voice to that experience. But THE GREAT WORLD is more than a novel of war. Ranging over seventy years of Australian life, from Sydney's teeming King's Cross to the tranquil backwaters of the Hawkesbury River, it is a remarkable novel of self-knowledge and lost innocence, of survival and witness.","Cat Breaking Free (Joe Grey #11). The fur starts flying when a gang from L.A. comes up to tranquil Molena Point, California, and begins breaking into the village's quaint shops. The fur of Joe Grey, Feline P.I., that is. After all, Molena Point has been his home since he was a kitten eating scraps from the garbage behind the local delicatessen, and he doesn't take well to marauding strangers. Joe even wonders whether the blonde who's moved into next to his human companion Clyde could be a part of the gang--she's been acting pretty suspicious lately. But when the strangers start trapping and caging feral cats--speaking cats like Joe and his girlfriend Dulcie--it proves too much for the intrepid four-footed detective. And when one of the gang is murdered, and a second mysterious death comes to light, he has no choice but to try to stop the crimes. Joe, Dulcie, and their tattercoat friend Kit, who used to be a stray herself, are deep into the investigation when they are able to release the three trapped cats. But as Kit l","Thornhold (The Harpers #16; Songs & Swords #4). All is not well in the City of Splendors. A new Zhentarim threat lurkes in the shadows of Waterdeep. Roguish Harper Bronwyn is sent by Archmage Khelben Arunsun on a mission to meet her long-lost father and reclaim her bloodline's dangerous heritage. She uncovers a family secret that threatens to destroy not only Bronwyn, but the Harpers themselves!","The Outsiders. ""...the hand at the back of my neck was strong.I'm drowning, I thought..."" The Socs' idea of having a good time of beating up Greasers like Ponyboy. Ponyboy knows what to expect and knows he can count on his brothers and friends - until the night someone takes things too far. A ground-breaking, timeless story from a brilliant writer.","The Secrets of Harry Bright. Seventeen months ago the California desert revealed the remains of Jack Watson. The rich man's son was found incinerated in a Rolls-Royce, a bullet in his head. Now, a year and a half later, Los Angeles Police Department homicide detective Sidney Blackpool is called into the desert to take on the case. But what begins for Blackpool is an investigation sandwiched between golf games in nearby Palm Springs quickly becomes an obsession.","Classical Drawing Atelier: A Contemporary Guide to Traditional Studio Practice. Ateliers have produced the greatest artists of all time--and now that educational model is experiencing a renaissance. These studios, a return to classical art training, are based on the nineteenth-century model of teaching artists by pairing them with a master artist over a period of years. Students begin by copying masterworks, then gradually progress to painting as their skills develop. Classical Drawing Atelieris an atelier in a book--and the master is Juliette Aristides, a classically trained artist. On every page, Aristides uses the works of works of Old Masters and today's most respected realist artists to demonstrate and teach the principles of realist drawing and painting, taking students step by step through the learning curve yet allowing them to work at their own pace. Unique and inspiring, Classical Drawing Atelieris a serious art course for serious art students.","Sacrament. A boy has an encounter with a man who causes extinctions of other species, so he grows up to be a man who documents (and thus appeals for a halt to) those extinctions. This dark fantasy tale is unlike Clive Barker's other recent ones: it is more tightly plotted, and more of thisworld. In a sequence of well-executed stories within stories (comparable to Russian dolls), Barker unfolds a compelling examination of what it means to be human, to be a man, and to be a gay man--on a planet where aging, disease, and death bring ""the passing of things, of days and beasts and men he'd loved."" A satisfying long novel packed with vivid images, memorable characters, and a melancholy mood that reaches for hope.","X/1999 Volume 01: Prelude. As part of the X/1999 series, this volume features breathless action and stunning art. When Kamui returns to Tokyo, he learns that his childhood girlfriend Kotori and psychic Princess Hitoni are having strange dreams about his role in a coming apocalypse! Is he the angel of salvation, or the devil of destruction?","Everything Is Illuminated. With only a yellowing photograph in hand, a young man -- also named Jonathan Safran Foer -- sets out to find the woman who may or may not have saved his grandfather from the Nazis. Accompanied by an old man haunted by memories of the war; an amorous dog named Sammy Davis, Junior, Junior; and the unforgettable Alex, a young Ukrainian translator who speaks in a sublimely butchered English, Jonathan is led on a quixotic journey over a devastated landscape and into an unexpected past. By turns comic and tragic, but always passionate, wildly inventive, and touched with an indelible humanity, this debut novel is a powerful, deeply felt story of searching: for the past, family, and truth.","The Dew Breaker. A brilliant, deeply moving work of fiction that explores the world of a ""dew breaker""--a torturer--a man whose brutal crimes in the country of his birth lie hidden beneath his new American reality. From the universally acclaimed author of Breath, Eyes, Memory and Krik? Krak!, a brilliant, deeply moving work of fiction that explores the world of a ""dew breaker""--a torturer--a man whose brutal crimes in the country of his birth lie hidden beneath his new American reality. We meet him late in his life. He is a quiet man, a husband and father, a hardworking barber, a kindly landlord to the men who live in a basement apartment in his home. He is a fixture in his Brooklyn neighborhood, recognizable by the terrifying scar on his face. As the book unfolds, moving seamlessly between Haiti in the 1960s and New York City today, we enter the lives of those around him: his devoted wife and rebellious daughter; his sometimes unsuspecting, sometimes apprehensive neighbors, tenants, and clients. And w","Marjorie Morningstar. A starry-eyed young beauty, Marjorie Morgenstern is nineteen years old when she leaves New York to accept the job of her dreams-working in a summer-stock company for Noel Airman, its talented and intensely charismatic director. Released from the social constraints of her traditional Jewish family, and thrown into the glorious, colorful world of theater, Marjorie finds herself entangled in a powerful affair with the man destined to become the greatest-and the most destructive-love of her life. Rich with humor and poignancy, Marjorie Morningstaris a classic love story, one that spans two continents and two decades in the life of its heroine. This unforgettable paean to youthful love and the bittersweet sorrow of a first heartbreak endures as one of Herman Wouk's most beloved creations.","The Harlequin (Anita Blake Vampire Hunter #15). Anita Blake is about to face the challenge of her life. Into her world-a world already overflowing with power-have come creatures so feared that powerful, centuries-old vampires refuse to mention their names. It is forbidden to speak of The Harlequin unless you've been contacted. And to be contacted by The Harlequin is to be under sentence of death. Long-time rivals for Anita's affections, Jean-Claude, Master Vampire of the City, and Richard, alpha-werewolf, will need to become allies. Shapeshifters Nathaniel and Micah will have to step up their support. And then there's Edward. In this situation, Anita knows that she needs to call the one man who has always been there for her...","Evelina. Frances Burney's first and most enduringly popular novel is a vivid, satirical, and seductive account of the pleasures and dangers of fashionable life in late eighteenth-century London. As she describes her heroine's entry into society, womanhood and, inevitably, love, Burney exposes the vulnerability of female innocence in an image-conscious and often cruel world where social snobbery and sexual aggression are played out in the public arenas of pleasure-gardens, theatre visits, and balls. But Evelina's innocence also makes her a shrewd commentator on the excesses and absurdities of manners and social ambitions--as well as attracting the attention of the eminently eligible Lord Orville. Evelina, comic and shrewd, is at once a guide to fashionable London, a satirical attack on the new consumerism, an investigation of women's position in the late eighteenth century, and a love story. The new introduction and full notes to this edition help make this richness all the more readily availabl","Siddhartha. Un jour vient ou l'enseignement traditionnel donne aux brahmanes ne suffit plus au jeune Siddhartha. Quand des ascetes samanas passent dans la ville, il les suit, se familiarise avec toutes leurs pratiques mais n'arrive pas a trouver la paix de l'ame recherchee. Puis c'est la rencontre avec Gotama, le Bouddha. Tout en reconnaissant sa doctrine sublime, il ne peut l'accepter et commence une autre vie aupres de la belle Kamala et du marchand Kamaswani. Les richesses qu'il acquiert font de lui un homme neuf, materialiste, dont le personnage finit par lui deplaire. Il s'en va a travers la foret, au bord du fleuve. C'est la que s'accomplit l'ultime phase du cycle de son evolution. Dans le cadre d'une Inde recreee a merveille, ecrit dans un style d'une rare maitrise, Siddhartha, roman d'une initiation, est un des plus grands de Hermann Hesse, prix Nobel de litterature.",The Penguin Companion to European Literature.,"How to Write: Advice and Reflections. Uniquely fusing practical advice on writing with his own insights into the craft, Pulitzer Prize-winning author Richard Rhodes constructs beautiful prose about the issues would-be writers are most afraid to articulate: How do I dare write? Where do I begin? What do I do with this story I have to tell that fills and breaks my heart? Rich with personal vignettes about Rhode's sources of inspiration, How to Writeis also a memoir of one of the most original and celebrated writers of our day.","La Débâcle. The penultimate novel of the Rougon-Macquart cycle, La Debacle(1892) takes as its subject the dramatic events of the Franco-Prussian War and the Commune of 1870-1. During Zola's lifetime it was the bestselling of all his novels, praised by contemporaries for its epic sweep as well as for its attention to historical detail. La Debacleseeks to explain why the Second Empire ended in a crushing military defeat and revolutionary violence. It focuses on ordinary soldiers, showing their bravery and suffering in the midst of circumstances they cannot control, and includes some of the most powerful description Zola ever wrote. Zola skilfully integrates his narrative of events and the fictional lives of his characters to provide the finest account of this tragic chapter in the history of France. Often compared to War and Peace, La Debaclehas been described as a ""seminal"" work for all modern depictions of war.",Bloodlines.,"The Tenants of Moonbloom. Norman Moonbloom is a loser, a drop-out who can't even make it as a deadbeat. His brother, a slumlord, hires him to collect rent in the buildings he owns in Manhattan. Making his rounds from apartment to apartment, Moonbloom confronts a wildly varied assortment of brilliantly described urban characters, among them a gay jazz musician with a sideline as a gigolo, a Holocaust survivor, and a brilliant young black writer modeled on James Baldwin. Moonbloom hears their cries of outrage and abuse; he learns about their secret sorrows and desires. And as he grows familiar with their stories, he finds that he is drawn, in spite of his best judgment, into a desperate attempt to improve their lives. Edward Lewis Wallant's astonishing comic tour de force is a neglected masterpiece of 1960s America.","Unlimited Power: The New Science Of Personal Achievement. By making personal achievement a science, Robbins guarantees results; his unique fusion of mind and body has led thousands to self-confidence and inner strength, professionally and personally.","Long Day's Journey into Night. Eugene O'Neill's autobiographical play Long Day's Journey into Night is regarded as his finest work. First published by Yale University Press in 1956, it won the Pulitzer Prize in 1957 and has since sold more than one million copies. This edition includes a new foreword by Harold Bloom. The action covers a fateful, heart-rending day from around 8:30 am to midnight, in August 1912 at the seaside Connecticut home of the Tyrones - the semi-autobiographical representations of O'Neill himself, his older brother, and their parents at their home, Monte Cristo Cottage. One theme of the play is addiction and the resulting dysfunction of the family. All three males are alcoholics and Mary is addicted to morphine. They all constantly conceal, blame, resent, regret, accuse and deny in an escalating cycle of conflict with occasional desperate and half-sincere attempts at affection, encouragement and consolation.",Manliness.,"Republic. One of the greatest works of philosophy, political theory, and literature ever produced, Plato's Republichas shaped Western thought for thousands of years, and remains as relevant today as when it was written during the fourth century B.C. Republicbegins by posing a central question: ""What is justice, and why should we be just, especially when the wicked often seem happier and more successful?"" For Plato, the answer lies with the ways people, groups, and institutions organize and behave. A brilliant inquiry into the problems of constructing the perfect state, and the roles education, the arts, family, and religion should play in our lives, Republicemploys picturesque settings, sharply outlined characters, and conversational dialogue to drive home the philosopher's often provocative arguments. It has been said that the entire history of Western philosophy consists of nothing more than ""a series of footnotes to Plato."" Vastly entertaining, occasionally shocking, and always stimulating, R","The Leader In You: How to Win Friends Influence People and Succeed in a Changing World. Cum sa-ti faci prieteni, sa ii influentezi pe oameni si sa reusesti intr-o lume aflata in permanenta schimbare Vremea directorului ascuns in spatele unui birou impunator, a angajatului lipsit de initiativa, care asteapta sa primeasca sarcini de sus, a trecut. Dale Carnegie a fost un vizionar. El a cautat si a gasit solutia prin care puteti deveni echilibrati intr-o lume nesigura. E timpul sa comunicam. E timpul sa asezam in centrul preocuparilor noastre relatiile cu oamenii. Sa ne afirmam si sa ne confirmam valoarea, prin initiativele si faptele noastre. Daca sunteti in impas, dar vreti sa schimbati ceva in viata dumneavoastra, a familiei, a firmei pentru care lucrati, aplicati principiile lui Dale Carnegie. Autorii acestei carti va provoaca sa deveniti dumneavoastra insiva un conducator. Un lider! Bestseller in Europa Dale Carnegie (pe numele lui real Dale Carnagey) s-a nascut pe 24 noiembrie 1888, intr-o ferma saraca din Missouri, si s-a stins din viata pe 1 noiembrie 1955, in Forest","Love Is Blind. THERE'S MANY A SLIP... He'd been warned that Lady Clarissa Crambray was dangerous. Stomping on toes and burning piffles, the chestnut haired beauty was clearly a force with which to be reckoned. But for Adrian Montfort, Earl of Mowbray, veteran of the Napoleonic wars, this was just the challenge he needed. He could handle one woman and her ""unfortunate past."" Could any woman handle him? 'TWIXT THE CHIT & HIS LIPS Lady Clarissa Crambray wanted a husband, but maybe not as much as her mother wanted one for her. Really! Doffing her spectacles might make a girl prettier, but how would she see? She'd already caused enough mayhem to earn a rather horrible nickname. Yet, as all other suitors seemed to shy away in terror, there came a man to lead her to the dance floor. A dark, handsome blur of a man. Clumsy Clarissa was about to stumble onto true love.",Aeneid: Selections from Books 1 2 4 6 10 12.,"Smart Love. Smart Love shows how putting a child's inner happiness first, not his outward behavior, actually will make hima better behaved, and in the long run, more confident and responsible.",Practical Philosophy.,"Emma. 'I never have been in love; it is not my way, or my nature; and I do not think I ever shall.' Beautiful, clever, rich - and single - Emma Woodhouse is perfectly content with her life and sees no need for either love or marriage. Nothing, however, delights her more than interfering in the romantic lives of others. But when she ignores the warnings of her good friend Mr. Knightley and attempts to arrange a suitable match for her protegee Harriet Smith, her carefully laid plans soon unravel and have consequences that she never expected. With its imperfect but charming heroine and its witty and subtle exploration of relationships, Emma is often seen as Jane Austen's most flawless work. This edition includes a new chronology and additional suggestions for further reading.","Confederates in the Attic: Dispatches from the Unfinished Civil War. When prize-winning war correspondent Tony Horwitz leaves the battlefields of Bosnia and the Middle East for a peaceful corner of the Blue Ridge Mountains, he thinks he's put war zones behind him. But awakened one morning by the crackle of musket fire, Horwitz starts filing front-line dispatches again this time from a war close to home, and to his own heart. Propelled by his boyhood passion for the Civil War, Horwitz embarks on a search for places and people still held in thrall by America's greatest conflict. The result is an adventure into the soul of the unvanquished South, where the ghosts of the Lost Cause are resurrected through ritual and remembrance. In Virginia, Horwitz joins a band of 'hardcore' reenactors who crash-diet to achieve the hollow-eyed look of starved Confederates; in Kentucky, he witnesses Klan rallies and calls for race war sparked by the killing of a white man who brandishes a rebel flag; at Andersonville, he finds that the prison's commander, executed as a war","Living Faith. For almost three decades, President Carter has regularly spent part of each Sunday reading from scripture and sharing his personal faith with neighbors, friends, and visitors at his Baptist church in Plains, Georgia. In ""Living Faith,"" he draws on this experience, exploring the values closest to his heart and the personal beliefs that have nurtured and sustained him. For President Carter, faith finds its deepest expression in a life of compassion, reconciliation, and service to others. ""Living Faith"" is filled with stories of people whose lives have touched his--some from the world stage, more from modest walks of life. We see how President Carter learned about other faiths from Prime Minister Menachim Begin and President Anwar Sadat; learned a lesson in forgiveness from a clash with commentator George Will; how he was inspired by the simple theology of preacher Ely Cruz, ""Love God and the person in front of you""; and how the cheerful strength of family friend Annie Mae Rhodes taught h","If I Have a Wicked Stepmother Where's My Prince?. Wicked stepmother? Check. Evil stepsisters? Check. Miserable life? Check. Lucy Norton's life has all the makings of a Cinderella story. Her dad's always away on business, leaving Lucy with her cruel stepmother and bratty stepsisters. She's burdened with chores, and has a hard time fitting in at her new school. So when she sees Connor Pearson, the star player on the varsity basketball team, Lucy hopes her destiny has finally changed. With everything else going on in her life, doesn't she at least deserve to get the handsome prince? Melissa Kantor's enchanting novel proves that sometimes the happy ending isn't quite the one you'd expect. Lucy's about to discover the truth about finding her real Prince Charming... and finding herself.","Dates from Hell. 1 Undead in the Garden of Good and Evilby Kim Harrison - Ivy and vampire Art are partners on homicide case for Inderland Security. 2 The Claire Switch Projectby Lynsay Sands - Claire, new shapeshifter, accepts dates for school reunion with crush Kyle and his sister Jill. 3 Chaoticby Kelley Armstrong - Half-demon Hope is sent to museum gala by mentor Tristan to catch werewolf thief Mateson. 4 Dead Man Datingby Lori Handeland - On their first date, Kit goes too far with Eric, shot by bystander Chavez, then wakes to no blood, no body.",April May und June.,"What Life Was Like Amid Splendor and Intrigue: Byzantine Empire AD 330-1453. Drawing on art, artifacts, and literature that was left behind, these richly illustrated volumes recount captivating tales of everyday life in long-ago vanished worlds.","African Origins of the Major ""Western Religions"".","World War One British Poets: Brooke Owen Sassoon Rosenberg and Others. Ironically, the horrors of World War One produced a splendid flowering of British verse as young poets, many of them combatants, confronted their own morality, the death of dear friends, the loss of innocence, the failure of civilization, and the madness of war itself. This volume contains a rich selection of poems from that time by Rupert Brooke, Wilfred Owen, Siegfried Sassoon, Isaac Rosenberg, and others known especially for their war poetry -- as well as poems by such major poets as Robert Graves, Thomas Hardy, A. E. Housman, Robert Bridges, and Rudyard Kipling. Included among a wealth of memorable verses are Rupert Brooke's ""The Soldier,"" Wilfred Owen's ""Anthem for Doomed Youth,"" ""In the Pink"" by Siegfried Sassoon, ""In Flanders Fields"" by Lieut. Col. McCrae, Robert Bridges' ""To the United States of America,"" Thomas Hardy's ""In Time of 'The Breaking of Nations,'"" as well as works by Walter de la Mare, May Wedderburn Cannan, Ivor Gurney, Alice Meynell, and Edward Thomas. Moving and","Bleach Volume 14. White Tower Rocks Ichigo and Yoruichi race to save Ichigo's friends from Rukia's cold-blooded brother, Byakuya Kukichi. They arrive to find Ganju in tatters, and Rukia with him. Ichigo is bent on defeating her brother this time, but he is nowhere near prepared. Can he learn decades' worth of skill in just a matter of days?","Nobody Loves a Centurion (SPQR #6). Like so many young men in later generations, Roman playboy/detective Decius Caecilius Metellus the Younger is faced with the necessity of serving in his country's armed forces. Since a dangerous enemy has become powerful in the politics of Rome, Decius is just as well out of the city for a while. He sets out to join Caesar in Gaul (where the general has come and seen, but has as yet not been able to conquer. The occupying Roman army is at a standstill. When Decius shows up in full parade regalia (much to the amusement of the more informally uniformed veterans) and accompanied only by his young personal slave. Caesar sets him the task of discovering who murdered one of his centurions, a cruel and unfair officer feared and hated by every man of the one hundred soldiers under him. A further prod to Decius is that the main suspect is a youth whose father is a close friend of the Metellus family. With Caesar's decree that another killer be found in a matter of hours or the young man dies, D",Robin Williams Web Design Workshop.,"River of Blue Fire (Otherland #2). Otherland. In many ways it is humankind's most stunning achievement: a private, multidimensional universe built over two generations by the greatest minds of the twenty-first century. But this most exclusive of places is also one of the world's best kept secrets, created and controlled by an organization made up of the world's most powerful and ruthless individuals, a private cartel known--to those who know of their existence at all--as The Grail Brotherhood. Though their purpose in creating Otherland is still a mystery, it may not remain so for long. For they have exacted a terrible price from humanity in the process, and even their highly organized global conspiracy cannot hide the nature of their crimes forever. And now a small band of adventurers has penetrated the veil of secrecy that prevents the uninitiated from entering Otherland. But having broken into the amazing worlds within worlds that make up this universe, they are trapped, unable to escape back to their own flesh-and-bl","The Devil in the White City: Murder Magic and Madness at the Fair That Changed America. Erik Larson's gifts as a storyteller are magnificently displayed in this rich narrative of the master builder, the killer, and the great fair that obsessed them both. Two men, each handsome and unusually adept at his chosen work, embodied an element of the great dynamic that characterized America's rush toward the twentieth century. The architect was Daniel Hudson Burnham, the fair's brilliant director of works and the builder of many of the country's most important structures, including the Flatiron Building in New York and Union Station in Washington, D.C. The murderer was Henry H. Holmes, a young doctor who, in a malign parody of the White City, built his ""World's Fair Hotel"" just west of the fairgrounds--a torture palace complete with dissection table, gas chamber, and 3,000-degree crematorium. Burnham overcame tremendous obstacles and tragedies as he organized the talents of Frederick Law Olmsted, Charles McKim, Louis Sullivan, and others to transform swampy Jackson Park into the","When Santa Fell to Earth. When Twinklestar bolts, the mischievous reindeer leaves Niklas, his Santa Claus, to fall from the sky. Luckily, Niklas crash-lands his caravan in a neighbourhood where he makes friends with two local children called Ben and Charlotte.",The Hound of the Baskervilles (Sherlock Holmes #5). The award-winning Sherlock Holmes narrator David Timson leads us through Conan Doyle's most famous tale. This extended story brings the archetypal detective to the moors with his friend and biographer Dr. Watson to investigate the mystery of a beast terrorising the neighbourhood.,"The Undomestic Goddess. Workaholic attorney Samantha Sweeting has just done the unthinkable. She's made a mistake so huge, it'll wreck any chance of a partnership. Going into utter meltdown, she walks out of her London office, gets on a train, and ends up in the middle of nowhere. Asking for directions at a big, beautiful house, she's mistaken for an interviewee and finds herself being offered a job as housekeeper. Her employers have no idea they've hired a lawyer-and Samantha has no idea how to work the oven. She can't sew on a button, bake a potato, or get the #@%# ironing board to open. How she takes a deep breath and begins to cope-and finds love-is a story as delicious as the bread she learns to bake. But will her old life ever catch up with her? And if it does...will she want it back?","Sam Walton: Made In America. Meet a genuine American folk hero cut from the homespun cloth of America's heartland: Sam Walton, who parlayed a single dime store in a hardscrabble cotton town into Wal-Mart, the largest retailer in the world. The undisputed merchant king of the late twentieth century, Sam never lost the common touch. Here, finally, inimitable words. Genuinely modest, but always sure if his ambitions and achievements. Sam shares his thinking in a candid, straight-from-the-shoulder style.In a story rich with anecdotes and the ""rules of the road"" of both Main Street and Wall Street, Sam Walton chronicles the inspiration, heart, and optimism that propelled him to lasso the American Dream. Table Of Contents Acknowledgments Foreword 1. Learning to Value a Dollar 2. Starting on a Dime 3. Bouncing Back 4. Swimming Upstream 5. Raising a Family 6. Recruiting the Team 7. Taking the Company Public 8. Rolling Out the Formula 9. Building the Partnership 10. Stepping Back 11. Creating a Culture 12. Making the Custo","Phaedo. This is an English translation of one of Plato's great dialogues of Socrates talking about death, dying, and the soul due to his impending execution. Included is an introduction and glossary of key terms.Focus Philosophical Library translations are close to and are non-interpretative of the original text, with the notes and a glossary intending to provide the reader with some sense of the terms and the concepts as they were understood by Plato's immediate audience.","The Return of Lum Volume 3: Sweet Revenge (Urusei Yatsura #4). Poor Ataru's life has never returned to normal since extraterrestrial, bikini-clad princess Lure fell for him! And the cast of friends and foes that comes with her makes things even worse. In this installment, Lum's exotic mother challenges another mom on Parent's Day at Tomobiki High, a field trip leads to a meeting with a ninja, and Lum's childhood friend Ran comes to Earth to avenge herself for some long-forgotten jealousies and slights. What's the best way for her to get to Lure? Through Ataru of course!","Medea. The Greek Tragedy in New Translationsseries is based on the conviction that only translators who write poetry themselves, or who work in collaboration with poets, can properly re-create the celebrated and timeless tragedies of the great Greek writers. These new translations are more than faithful to the original text, going beyond the literal meaning in order to evoke the poetic intensity and rich metaphorical texture of the Greek language. Euripides was one of the most popular and controversial of all the Greek tragedians, and his plays are marked by an independence of thought, ingenious dramatic devices, and a subtle variety of register and mood. Medea, is a story of betrayal and vengeance. Medea, incensed that her husband Jason would leave her for another after the many sacrifices she has made for him, murders both his new bride and their own children in revenge. It is an excellent example of the prominence and complexity that Euripides gave to female characters. This new translatio",Drina Ballerina.,"The Communist Manifesto (Great Ideas). The perfect books for the true book lover, Penguin's Great Ideas series features twelve more groundbreaking works by some of history's most prodigious thinkers. Each volume is beautifully packaged with a unique type-driven design that highlights the bookmaker's art. Offering great literature in great packages at great prices, this series is ideal for those readers who want to explore and savor the Great Ideas that have shaped our world.The Communist Manifestochanged the face of the twentieth century beyond recognition, inspiring millions to revolution, forming the basis of political systems that still dominate countless lives and continuing to ignite violent debate about class and capitalism today.","Like Water for Chocolate. Earthy, magical, and utterly charming, this tale of family life in turn-of-the-century Mexico became a best-selling phenomenon with its winning blend of poignant romance and bittersweet wit. The number one bestseller in Mexico and America for almost two years, and subsequently a bestseller around the world, Like Water For Chocolateis a romantic, poignant tale, touched with moments of magic, graphic earthiness, bittersweet wit - and recipes. A sumptuous feast of a novel, it relates the bizarre history of the all-female De La Garza family. Tita, the youngest daughter of the house, has been forbidden to marry, condemned by Mexican tradition to look after her mother until she dies. But Tita falls in love with Pedro, and he is seduced by the magical food she cooks. In desperation, Pedro marries her sister Rosaura so that he can stay close to her, so that Tita and Pedro are forced to circle each other in unconsummated passion. Only a freakish chain of tragedies, bad luck and fate finally reu","Kingsblood Royal. A neglected tour de force by the first American to win the Nobel Prize in literature, Kingsblood Royalis a stirring and wickedly funny portrait of a man who resigns from the white race. When Neil Kingsblood a typical middle-American banker with a comfortable life makes the shocking discovery that he has African-American blood, the odyssey that ensues creates an unforgettable portrayal of two Americas, one black, one white. As timely as when it was first published in 1947, one need only open today's newspaper to see the same issues passionately being discussed between blacks and whites that we find inKingsblood Royal, says Charles Johnson. Perhaps only now can we fully appreciate Sinclair Lewis's astonishing achievement.","Plum Island (John Corey #1). The hair-raising suspense of The General's Daughter... the wry wit of The Gold Coast...this is vintage Nelson DeMille at the peak of his originality and the height of his powers.Wounded in the line of duty, NYPD homicide cop John Corey is convalescing in rural eastern Long Island when an attractive young couple he knows is found shot to death on the family patio. The victims were biologists at Plum Island, a research site rumored to be an incubator for germ warfare.Suddenly, a local double murder takes on shattering global implications -- and thrusts Corey and two extraordinary women into a dangerous search for the secret of PLUM ISLAND....","Fear and Trembling. Soren Kierkegaard was a Danish philosopher, theologian and religious author interested in human psychology. He is regarded as a leading pioneer of existentialism and one of the greatest philosophers of the 19th Century. In Fear and Trembling, Kierkegaard wanted to understand the anxiety that must have been present in Abraham when God commanded him to offer his son as a human sacrifice. Abraham had a choice to complete the task or to forget it. He resigned himself to the loss of his son, acting according to his faith. In other words, one must be willing to give up all his or her earthly possessions in infinite resignation and must also be willing to give up whatever it is that he or she loves more than God. Abraham had passed the test -- his love for God proved greater than anything else in him. And because a good and just Creator would not want a father to kill his son, God intervened at the last moment to prevent the sacrifice.","When I Was Puerto Rican. Esmeralda Santiago's story begins in rural Puerto Rico, where her childhood was full of both tenderness and domestic strife, tropical sounds and sights as well as poverty. Growing up, she learned the proper way to eat a guava, the sound of tree frogs in the mango groves at night, the taste of the delectable sausage called morcilla, and the formula for ushering a dead baby's soul to heaven. As she enters school we see the clash, both hilarious and fierce, of Puerto Rican and Yankee culture. When her mother, Mami, a force of nature, takes off to New York with her seven, soon to be eleven children, Esmeralda, the oldest, must learn new rules, a new language, and eventually take on a new identity. In this first volume of her much-praised, bestselling trilogy, Santiago brilliantly recreates the idyllic landscape and tumultuous family life of her earliest years and her tremendous journey from the barrio to Brooklyn, from translating for her mother at the welfare office to high honors at Harv","The Queen of Attolia (The Queen's Thief #2). Revenge When Eugenides, the Thief of Eddis, stole Hamiathes's Gift, the Queen of Attolia lost more than a mythical relic. She lost face. Everyone knew that Eugenides had outwitted and escaped her. To restore her reputation and reassert her power, the Queen of Attolia will go to any length and accept any help that is offered...she will risk her country to execute the perfect revenge. ...but Eugenides can steal anything. And he taunts the Queen of Attolia, moving through her strongholds seemingly at will. So Attolia waits, secure in the knowledge that the Thief will slip, that he will haunt her palace one too many times. ...at what price? When Eugenides finds his small mountain country at war with Attolia, he must steal a man, he must steal a queen, he must steal peace. But his greatest triumph, and his greatest loss, comes in capturing something that the Queen of Attolia thought she had sacrificed long ago...","The Truelove (Aubrey & Maturin #15). A British whaler has been captured by an ambitious chief in the sandwich islands at French instigation, and Captain Aubrey, R. N., Is dispatched with the Surpriseto restore order. But stowed away in the cable-tier is an escaped female convict. To the officers, Clarissa Harvill is an object of awkward courtliness and dangerous jealousies. Aubrey himself is won over and indeed strongly attracted to this woman who will not speak of her past. But only Aubrey's friend, Dr. Stephen Maturin, can fathom Clarissa's secrets: her crime, her personality, and a clue identifying a highly placed English spy in the pay of Napoleon's intelligence service. In a thrilling finale, Patrick O'Brian delivers all the excitement his many readers expect: Aubrey and the crew of the Surpriseimpose a brutal pax Britannicaupon the islanders in a pitched battle against a band of headhunting cannibals.","The Five People You Meet in Heaven. 'All endings are also beginnings. We just don't know it at the time...' On his eighty-third birthday, Eddie, a lonely war veteran, dies in a tragic accident trying to save a little girl from a falling cart. With his final breath, he feels two small hands in his - and then nothing. He awakens in the afterlife, where he learns that heaven is not a lush Garden of Eden but a place where earthly life is explained to you by five people who were in it. These people may have been loved ones or distant strangers. Yet each of them changed your path forever.","Crime and Punishment. Dostoyevsky's epic masterpiece, unabridged, with an afterword by Robin Feuer Miller One of the world's greatest novels, Crime and Punishmentis the story of a murder and its consequences--an unparalleled tale of suspense set in the midst of nineteenth-century Russia's troubled transition to the modern age. In the slums of czarist St. Petersburg lives young Raskolnikov, a sensitive, intellectual student. The poverty he has always known drives him to believe that he is exempt from moral law. But when he puts this belief to the test, he suffers unbearably. Crime and punishment, the novel reminds us, grow from the same seed. ""No other novelist,"" wrote Irving Howe of Dostoyevsky, ""has dramatized so powerfully the values and dangers, the uses and corruptions of systematized thought."" And Friedrich Nietzsche called him ""the only psychologist I have anything to learn from."" With an Introduction by Leonard J. Stanton and James D. Hardy Jr. and an Afterword by Robin Feuer Miller","The Rana Look. The author of forty-five New York Timesbestselling novels, Sandra Brown is one of the romance world's most acclaimed writers. Rendezvous magazine has praised her as a novelist whose ""larger than life heroes and heroines make you believe all the warm, wonderful, wild things in life."" Now, in the classic romantic tradition her fans have come to love, here is another sexy and extraordinary tale of passion--the story of a woman who gives up fame and fortune...and discovers true love in the last place she expected to find it. The Rana Look The modeling world called it the Rana Look...the exotic, one-of-a-kind allure that only supermodel Rana Ramsey could deliver. With her green eyes, olive skin, and wildly lustrous auburn hair, Rana posed for ad campaigns and strutted down runways all over the world, naming her own price to sell everything from cosmetics to women's lingerie. But all of that suddenly ended one day when she looked her demanding mother-manager in the eye and said, ""Enough."" Th","Lords of the Sky. Angus Wells carved a place for himself on the shelves of hundreds of thousands of fantasy readers. Now, with ""Lords Of The Sky,"" it is clear that he has saved his most sweeping and imaginative tale for an epic more powerful than anything he has written before. For centuries, the Dhar have had to face the Ahn, fierce warriors who would lay claim to Dharbek, the land they call their ancestral home. Now, in fantastic airships powered by magic, the Ahn have begun their greatest campaign yet. In preparation for the coming onslaught, Storymen like Daviot travel the land collecting tales and sharing the history it's their responsibility to safeguard. But Daviot's travels show him the dark side of Dharbek, and inspire him to be a catalyst for change, to overcome doubt and fear, and pursue the one dream that has eluded Dharbek. Using his special gifts for storytelling and world-building, Angus Wells reaches new heights with a story as ambitious as it is broad in scope. ""Lords Of The Sky"" has al","When the Siren Wailed. Suddenly there were no secrets anymore. Everyone knew there was going to be a war, which meant that all children in danger areas like London were to be sent to the country. Then on Friday 1st 1939, it happened. As war was about to be declared, Laura, Andy and Tim Clark with their name and address pinned to them, joined the straggling procession of evacuees to the station. Operation Pied Piper was under way.","Three Plays: Involuntary Homicide / The Green Stockings / The Ghost is Here. Kobo Abe (1924-1993) was one of Japan's most prominent contemporary writers. Born in Japan but raised in Manchuria, he is perhaps best known for his 1962 novel, The Woman in the Dunes, though he was also a prominent screenwriter, producer and director. Like the works of Beckett and Ionesco, Abe's plays address universal and contemporary concerns, often with an eye for the absurd.","Yakitate!! Japan Volume 2. Budding bakers Kazuma and Kawachi prepare for their first assignment at Pantasia's South Tokyo branch, but their afro-sporting manager's initial challenge is anything but a piece of cake--they must create French bread that not only tastes good to humans, but to horsesas well. Kazuma's used to baking unusual bread for tough customers, but how on earth is he going to come up with some equine edibles that transcend the boundaries of taste and species?!","Reading the Bible Again for the First Time: Taking the Bible Seriously but Not Literally. Many Christians mistakenly believe that their only choice is either to reconcile themselves to a fundamentalist reading of scripture (a ""literal-factual"" approach) or to simply reject the Bible as something that could bring meaning and value into their lives. In Reading the Bible Again for the First Time, Marcus Borg shows how instead we can freshly appreciate all the essential elements of the Old and New Testaments--from Genesis to Revelation--in a way that can open up a new world of intelligent faith. In Reading the Bible Again for the First Time, Borg reveals how it is possible to reconcile a scientific and critical way of thinking with our deepest spiritual needs, leading to an insightful experience of ancient text. This unique book invites every reader--whatever his or her religious background--to engage the Bible, to wrestle with its meaning, to explore its mysteries, and to understand its relevance. Reading the Bible Again for the First Timeshows us how to encounter the Bible in","Here Is New York. Perceptive, funny, and nostalgic, E.B. White's stroll around Manhattan remains the quintessential love letter to the city, written by one of America's foremost literary figures. The New York Timeshas named Here is New Yorkone of the ten best books ever written about the metropolis, and The New Yorkercalls it ""the wittiest essay, and one of the most perceptive, ever done on the city.","Bad (Fearless #13). I FINALLY HAVE SAM.I FINALLY HAVE A FAMILY. I FINALLY HAVE A WAY OUT. WHAT'S SO BAD ABOUT THAT?","Where the Bluebird Sings to the Lemonade Springs. Nominated for a National Book Critics Circle award, Where the Bluebird Sings to the Lemonade Springsgathers together Wallace Stegner's most important and memorable writings on the American West: its landscapes, diverse history, and shifting identity; its beauty, fragility, and power. With subjects ranging from the writer's own ""migrant childhood"" to the need to protect what remains of the great western wilderness (which Stegner dubs ""the geography of hope"") to poignant profiles of western writers such as John Steinbeck and Norman Maclean, this collection is a riveting testament to the power of place. At the same time it communicates vividly the sensibility and range of this most gifted of American writers, historians, and environmentalists.","Battle Angel Alita - Last Order : Angel's Vision Vol. 08. Master manga creater Yukito Kishiro returns, accompanid by his most celebrated character, cyborg sweetheart Battle Angel Alita. Meet Kishiro's latest bevy of bizarre and tormented characters and catch up with your favorite and foes!","Metro Girl (Alex Barnaby #1). Buckle your seat belts. Number-one New York Timesbestselling author Janet Evanovich is moving into the fast lane with Metro Girl, a thrilling, high-octane misadventure with high stakes, hot nights, cold-blooded murder, sunken treasure, a woman with a chassis built for speed, and one very good, very sexy NASCAR driver who's along for the ride. ""Wild"" Bill Barnaby's dropped off the face of the earth and big sister Alex heads for Miami, Bill's last known sighting, on a harrowing hunt to save her brother...and maybe the world. Alex blasts through the bars of South Beach and points her search south to Key West and Cuba, laying waste to Miami hit men, dodging Palmetto bugs big enough to eat her alive, and putting the pedal to the metal with NASCAR driver Sam Hooker. Engaged in a deadly race, Wild Bill's ""borrowed"" Hooker's sixty-five-foot Hatteras and sailed off into the sunset...just when Hooker has plans for the boat. Hooker figures he'll attach himself to Alex and maybe run into scumbag B","The Mothman Prophecies. The Mothman Prophecies is a '75 book by John A. Keel & an '02 movie of the same name. Its subject matter mostly concerns events in Point Pleasant, WV, during '66/7, focusing on sightings of a creature dubbed Mothman. It includes theories about UFOs, aliens, Men in Black, angels, demons, mutants, ghosts & other paranormal phenomena, as well as the 12/15/67 collapse of the Silver Bridge across the Ohio River from Pt Pleasant to Gallipolis, OH. It also deals with strange occurences around the time that Mothman was sighted, such as odd phone calls, disasters & mutilated pets. Keel claims that Mothman caused these events. The book involves Keel as a journalist, direct observer of some events & also presents some fragments of memoir. It's been seen as an innovative work of creative nonfiction. The writing style combines reportage & understated humor with fragments of the vivid cinematic approach used by Capote in In Cold Blood. The Mothman Prophecies raises issues with creative nonfiction, a",The Brooklyn Bridge (Wonders of the World).,Leaving the 20th Century: The Incomplete Work of the Situationist International.,"New X-Men Volume 1: E Is for Extinction. The threat of the mutant menace has reached a point where ordinary citizens must take of the fight on which the governments of the world have been lax! An evolutionary biologist and a dentist travel to South America and uncover a city population unlike any the world has seen ... and unleash its deadly force on an unsuspecting mutant population. All in a day's work for the X-Men, right? Dead Wrong. In the critically-acclaimed debut of writer Grant Morrison (The Invisibles) and penciler Frank Quietly (The Authority), the X-Men will face an opponent unlike any before, and be forced to make some of the most difficult decisions they've ever faced. Can even some of the most powerful beings on the planet withstand the coming storm? Collecting: New X-Men114-117","The Eden Express: A Memoir of Insanity. The Eden Express describes from the inside Mark Vonnegut's experience in the late '60s and early '70s--a recent college grad; in love; living communally on a farm, with a famous and doting father, cherished dog, and prized jalopy--and then the nervous breakdowns in all their slow-motion intimacy, the taste of mortality and opportunity for humor they provided, and the grim despair they afforded as well. That he emerged to write this funny and true book and then moved on to find the meaningful life that for a while had seemed beyond reach is what ultimately happens in The Eden Express. But the real story here is that throughout his harrowing experience his sense of humor let him see the humanity of what he was going through, and his gift of language let him describe it in such a moving way that others could begin to imagine both its utter ordinariness as well as the madness we all share.","The Man Who Watched Trains Go By. Kees Popinga is an average man, a solid citizen who might enjoy a game of chess in the evening. But one night, this model husband and devoted father discovers his boss is bankrupt and that his own carefully tended life is in ruins. Before, he had watched impassively as the trains swept by; now he catches the first one out of town and soon commits murder before the night is out. How reliable is even the most reliable man's identity? Georges Simenon (1903-1989) was born in Liege, Belgium. He went to work as a reporter at the age of fifteen and in 1923 moved to Paris, where under various pseudonyms he became a highly successful and prolific author of pulp fiction while leading a dazzling social life. In the early 1930s, Simenon emerged as a writer under his own name, gaining renown for his detective stories featuring Inspector Maigret. He also began to write his psychological novels, or romans durs - books in which he displays a sympathetic awareness of the emotional and spiritual pain un","You Know You Love Me (Gossip Girl #2). In You Know You Love Me, the sequel to Gossip Girl, it's brunette vixen Blair Waldorf's seventeenth birthday, and she knows exactly what she wants-- Nate, her studly troubles boyfriend of three years. But Blair's been too busy filling out Ivy League college applications to notice that Nate has found himself another playmate.",'Salem's Lot.,"Anti-Semite and Jew: An Exploration of the Etiology of Hate. With a new preface by Michael Walzer Jean-Paul Sartre's book is a brilliant portrait of both anti-Semite and Jew, written by a non-Jew and from a non-Jewish point of view. Nothing of the anti-Semite either in his subtle form as a snob, or in his crude form as a gangster, escapes Sartre's sharp eye, and the whole problem of the Jew's relationship to the Gentile is examined in a concrete and living way, rather than in terms of sociological abstractions.","A Hat Full of Sky (Discworld #32; Tiffany Aching #2). The Heroine:Tiffany Aching, incipient witch and cheese maker extraordinaire. Once saved world from Queen of the Elves. Is about to discover that battling evil monarchs is child's play compared to mortal combat with a Hiver (see below). At eleven years old, is boldest heroine ever to have confronted the Forces of Darkness while armed with a frying pan. The Threat: A Hiver, insidious disembodied presence drawn to powerful magic. highly dangerous, frequently lethal. Cannot be stopped with iron or fire. Its target: Tiffany Aching (see above). The Nac Mac Feegle:A.k.a. the Wee Free Men. Height: six inches. Color: blue. Famed for drinking, stealing, and fighting. Will attack anything larger than themselves. Members include: Rob Anybody, Daft Wullie, and Awfully Wee Billy Bigchin. Allies to Tiffany Aching (see above). The Book:Hilarious, breathtaking, spine-tingling sequel to the acclaimed Wee Free Men.","The Friday Night Knitting Club (Friday Night Knitting Club #1). Once a week, an eclectic group of women comes together at a New York City yarn shop to work on their latest projects - and share the stories of their lives... At the center of Walker and Daughter is the shop's owner, Georgia, who is overwhelmed with juggling the store and single-handedly raising her teenage daughter. Happy to escape the demands of her life, she looks forward to her Friday Night Knitting Club, where she and her friends - Anita, Peri, Darwin, Lucie, and K.C. - exchange knitting tips, jokes, and their deepest secrets. But when the man who once broke Georgia's heart suddenly shows up, demanding a role in their daughter's life, her world is shattered. Luckily, Georgia's friends are there for encouragement, sharing their own tales of intimacy, heartbreak, and miracle making. And when the unthinkable happens, these women will discover that what they've created isn't just a knitting club; its a sisterhood.","Pippi in the South Seas. ""Any reappearance of the irrepressible Pippi Longstocking is cause for celebration. This installment is no exception."" -The New York Times",Tolstoy: Anna Karenina. This exploration of the subtle psychology in Tolstoy's characterization avoids complex terminology and assumes a readership studying the text in English translation.,"Cities of Salt (مدن الملح #1). Set in an unnamed Persian Gulf kingdom in the 1930s, this remarkable novel tells the story of the disruption and diaspora of a poor oasis community following the discovery of oil there. The meeting of Arabs and the Americans who, in essence, colonized the remote region is a cultural confrontation in which religion, history, superstition, and mutual incomprehension all play a part. Powerful political fiction that it is, Cities of Salthas been banned in several Arab countries, including Saudi Arabia. The novel, the first volume in a trilogy, has been translated from the Arabic to English by Peter Theroux.","Come to Grief (Sid Halley #3). When ex-jockey Sid Halley becomes convinced that one of his closest friends--and one of the racing world's most beloved figures--is behind a series of shockingly violent acts, he faces the most troubling case of his career.",Novels 1896–1899: The Other House / The Spoils of Poynton / What Maisie Knew / The Awkward Age.,Complete Works of Tacitus.,Into a Paris Quartier: Reine Margot's Chapel and Other Haunts of St. Germain. Looks at the history of the Paris neighborhood of St.-Germain and its many notable inhabitants and haunts.,"The Valkyries. A Magical Tale About Forgiving Our Past and Believing in Our Future The enchanting, true story of The Valkyries begins in Rio de Janeiro when author Paulo Coelho gives his mysterious master J., the only manuscript for his book The Alchemist. Haunted by a devastating curse, Coelho confesses to J., ""I've seen my dreams fall apart just when I seemed about to achieve them."" In response, J. gives Coelho a daunting task: He must find and speak with his guardian angel. ""The curse can be broken,"" he replies, ""if you complete the task."" Rising to the challenge, Paulo and his wife, Cristina, drop everything, pack their bags, and take off on a forty day adventure into the starkly beautiful and sometimes dangerous Mojave Desert where they encounter more than they bargained for. A masterful blend of the exotic locales, dramatic adventure, and magical storytelling, for which Coelho's fictional works are renowned, this true-life account is at once a modern-day adventure and a metaphysical odyssey.","The Men Who Stare at Goats. From the bestselling author of The Psychopath Test: A Journey Through the Madness Industryand So You've Been Publicly Shamed. In 1979 a secret unit was established by the most gifted minds within the U.S. Army. Defying all known accepted military practice -- and indeed, the laws of physics -- they believed that a soldier could adopt a cloak of invisibility, pass cleanly through walls, and, perhaps most chillingly, kill goats just by staring at them. Entrusted with defending America from all known adversaries, they were the First Earth Battalion. And they really weren't joking. What's more, they're back and fighting the War on Terror. With firsthand access to the leading players in the story, Ronson traces the evolution of these bizarre activities over the past three decades and shows how they are alive today within the U.S. Department of Homeland Security and in postwar Iraq. Why are they blasting Iraqi prisoners of war with the theme tune to Barney the Purple Dinosaur? Why have 100 de","Death of a Salesman. Will Loman, the sixty-year-old Brooklyn salesman who says, 'I still feel - kind of temporary about myself' has become an archetypal image of devouring insecurity, of the human capacity for self-deception and, through the drama of his family quarrels, of the ways in which the flaws of one generation are imprinted on the next.","Assembling California. At various times in a span of fifteen years, John McPhee made geological field surveys in the company of Eldridge Moores, a tectonicist at the University of California at Davis. The result of these trips is Assembling California, a cross-section in human and geologic time, from Donner Pass in the Sierra Nevada through the golden foothills of the Mother Lode and across the Great Central Valley to the wine country of the Coast Ranges, the rock of San Francisco, and the San Andreas family of faults. The two disparate time scales occasionally intersect--in the gold disruptions of the nineteenth century no less than in the earthquakes of the twentieth--and always with relevance to a newly understood geologic history in which half a dozen large and separate pieces of country are seen to have drifted in from far and near to coalesce as California. McPhee and Moores also journeyed to remote mountains of Arizona and to Cyprus and northern Greece, where rock of the deep-ocean floor has been tran","The Complete ACOA Sourcebook: Adult Children of Alcoholics at Home at Work and in Love. When they were first released in the 1980s, Janet Woititz's groundbreaking works, Adult Children of Alcoholics, Struggle for Intimacyand The Self-Sabotage Syndrome, provided a new message of hope to adult children who had grown up in the shadow of alcoholic parents. Their message today is as profound and timeless as it was two decades ago. Now, in this complete collection, readers will learn again the insight and healing power of Janet Wotitiz's words. The Complete ACoA Sourcebookis a compilation of three of Dr. Woititz's classic books, addressing head-on the symptoms of The Adult Children of Alcoholics syndrome and providing strategies for living a normal life as an adult. Readers will find help for themselves: at home, in intimate relationships and on the job. They will discover the reasons for the way they think, believe and feel about themselves; ACoAs often feel isolated, have difficulty in relationships, in the workplace and in feeling good about themselves. Readers who are famil","Oh The Places You’ll Go!. In this classic Seussian tale, the good doctor primes his readers against all the little mishaps and misadventures that can befall even the best of us - from bang-ups and hang-ups to lurches and slumps - encouraging us to take life in our stride! With his unique combination of hilarious stories, zany pictures and riotous rhymes, Dr. Seuss has been delighting young children and helping them learn to read for over fifty years. Creator of the wonderfully anarchic Cat in the Hat, and ranked among the UK's top ten favourite children's authors, Seuss is firmly established as a global best-seller, with nearly half a billion books sold worldwide. As the first step in a major rebrand programme, HarperCollins is relaunching 17 of Dr. Seuss's best-selling books, including such perennial favourites as The Cat in the Hat, Green Eggs and Ham and Fox in Socks. In response to consumer demand, the bright new cover designs incorporate much needed guidance on reading levels, with the standard paperbacks",Curries Without Worries.,The Rapture: Who Will Face the Tribulation.,"'Salem's Lot. Something strange is going on in Jerusalem's Lot ... but no one dares to talk about it. By day, 'Salem's Lot is a typical modest New England town; but when the sun goes down, evil roams the earth. The devilishly sweet insistent laughter of a child can be heard echoing through the fields, and the presence of silent looming spirits can be felt lurking right outside your window. Stephen King brings his gruesome imagination to life in this tale of spine-tingling horror.","The Collected Stories of Arthur C. Clarke. Author of 2001: A Space Odyssey, Childhood's End, The City and the Stars, and the Hugo and Nebula Award-winning Rendezvous with Rama, Arthur C. Clarke is the most celebrated science fiction author alive. He is--with H. G. Wells, Isaac Asimov, and Robert A. Heinlein--one of the writers who define science fiction in our time. Now Clarke has cooperated in the preparation of a massive, definitive edition of his collected shorter works. From early work like ""Rescue Party"" and ""The Lion of Comarre,"" through classics like ""The Star,"" ""Earthlight,"" ""The Nine Billion Names of God,"" and ""The Sentinel"" (kernel of the later novel, and movie, 2001: A Space Odyssey), all the way to later work like ""A Meeting with Medusa"" and ""The Hammer of God,"" this immense volume encapsulates one of the great SF careers of all time.","Witches Abroad (Discworld #12). 'Things have to come to an end, see. That's how it works when you turn the world into stories. You should never have done that. You shouldn't treat people like they was characters, like they was things. But if you do, then you've got to know where the story ends.' That's the problem when you let real life get in the way of a good story. You shouldn't let it happen. Especially when a good story involves three witches, including a fairy godmother, travelling to a faraway land to make sure that a servant girl doesn'tmarry a prince. It looks as though a happy ending may be averted before catastrophe strikes. But unfortunately the forces of good are up against a Godmother who has made Destiny an offer it can't refuse...","Dostoevsky: The Years of Ordeal 1850-1859. The description for this book, Dostoevsky: The Years of Ordeal, 1850-1859, will be forthcoming.",End Game (Dreamland #8).,"Horton Hears a Who!. Surely among the most lovable of all Dr. Seuss creations, Horton the Elephant represents kindness, trustworthiness, and perseverance - all wrapped up, thank goodness, in a comical and even absurd package. Horton hears a cry for help from a speck of dust, and spends much of the book trying to protect the infinitesimal creatures who live on it from the derision and trickery of other animals, who think their elephant friend has gone quite nutty. But worse is in store: an eagle carries away the clover in which Horton has placed the life-bearing speck, and ""let that small clover drop somewhere inside/of a great patch of clovers a hundred miles wide!"" Horton wins in the end, after persuading the ""Who's"" to make as much noise as possible and prove their existence. This classic is not only fun, but a great way to introduce thoughtful children to essentially philosophical questions. How, after all, are we so sure there aren't invisible civilizations floating by on every mote? (Ages 4 to 8) - Ri","Dime Store Magic (Women of the Otherworld #3). alternate cover edition for this ISBN can be found  From one of today's most original writers comes the mesmerizing tale of an exceptional young woman caught up in an otherworldly realm where some will stop at nothing to get what they want. Paige Winterbourne was always either too young or too rebellious to succeed her mother as leader of one of the world's most powerful elite organizations--the American Coven of Witches. Now that she is twenty-three and her mother is dead, the Elders can no longer deny her. But even Paige's wildest antics can't hold a candle to those of her new charge--an orphan who is all too willing to use her budding powers for evil...and evil is all too willing to claim her. For this girl is being pursued by a dark faction of the supernatural underworld. They are a vicious group who will do anything to woo the young, malleable, and extremely powerful neophyte, including commit murder--and frame Paige for the crime. It's an initiation into adulthood, womanhood, an","Le Petit Prince. Imaginez-vous perdu dans le desert, loin de tout lieu habite, et face a un petit garcon tout blond, surgi de nulle part. Si de surcroit ce petit garcon vous demande avec insistance de dessiner un mouton, vous voila plus qu'etonne ! A partir de la, vous n'aurez plus qu'une seule interrogation : savoir d'ou vient cet etrange petit bonhomme et connaitre son histoire. S'ouvre alors un monde etrange et poetique, peuple de metaphores, decrit a travers les paroles d'un ""petit prince"" qui porte aussi sur notre monde a nous un regard tout neuf, empli de naivete, de fraicheur et de gravite. Tres vite, vous decouvrez d'etranges planetes, peuplees d'hommes d'affaires, de buveurs, de vaniteux, d'allumeurs de reverberes. Cette evocation onirique, a laquelle participent les aquarelles de l'auteur, a tout d'un parcours initiatique, ou l'enfant apprendra les richesses essentielles des rapports humains et le secret qui les regit : ""On ne voit bien qu'avec le coeur, l'essentiel est invisible pour les yeu","The Burning (Guardians of Ga'Hoole #6). A great battle is on the horizon and drawing near. In preparation, Soren and his band must fly to the mysterious Northern Kingdoms to find allies and study the grim art of war. Meanwhile, St. Aggie's has fallen to the Pure Ones. If they are not stopped, they will launch another, more deadly attack against the great tree. And without allies from the north, Ga'Hoole will surely fall. Soren's mission must succeed. And the final battle must be won. The coming conflagration will demand wisdom, bravery, and sacrifice from all the owls of the great tree, and from Soren and the band, nothing less the heroism.","Ariel: The Restored Edition. Sylvia Plath's famous collection, as she intended it. When Sylvia Plath died, she not only left behind a prolific life but also her unpublished literary masterpiece, Ariel. When her husband, Ted Hughes, first brought this collection to life, it garnered worldwide acclaim, though it wasn't the draft Sylvia had wanted her readers to see. This facsimile edition restores, for the first time, Plath's original manuscript -- including handwritten notes -- and her own selection and arrangement of poems. This edition also includes in facsimile the complete working drafts of her poem ""Ariel,"" which provide a rare glimpse into the creative process of a beloved writer. This publication introduces a truer version of Plath's works, and will no doubt alter her legacy forever. This P.S. edition features an extra 16 pages of insights into the book, including author interviews, recommended reading, and more.","The Iliad. An Iliad for the twenty-first century, this magnificent new translation by Stephen Mitchell sets the highest standards for beauty, accuracy, and aliveness. The power and the beauty of The Iliad resound again across 2,700 years in Stephen Mitchell's exciting new translation, as if the life blood of its heroes Achilles and Patroclus, Hector and Priam flowed in every word. And we are there with them amid the horror and ecstasy of war, carried along by a poetry that lifts even the most devastating human events into the realm of the beautiful. Based on the recent, superb M.L. West edition of the Greek, this Iliad is more readable and moving than any previous version. Whether it is his exciting recent version of Gilgamesh, with more than 150,000 copies sold, or his unmatched translation of the poet Rilke, still the standard after twenty-nine years, or his Tao Te Ching, which has sold more than 900,000 copies and itself been translated into six languages, Stephen Mitchell's books are internat","The Talking Horse and the Sad Girl and the Village Under the Sea: Poems. From the phenomenally bestselling author of The Curious Incident of the Dog in the Night-timecomes Mark Haddon's first collection of poems. That Mark Haddon's first book after The Curious Incident of the Dog in the Night-timeis a book of poetry may surprise his many fans; that it is also one of such virtuosity and range will not. The Talking Horse and the Sad Girl and the Village Under the Seareveals a poet of great versatility and formal talent. All the gifts so admired in Haddon's prose are in strong evidence here - the humanity, the dark humour, and the uncanny ventriloquism - but Haddon is also a writer of considerable seriousness, lyric power, and surreal invention. This book will consolidate his reputation as one of the most imaginative writers in contemporary literature.","Great Expectations: Authoritative Text Backgrounds Contexts Criticism. Great Expectations charts the progress of Pip from childhood through often painful experiences to adulthood, as he moves from the Kent marshes to busy, commercial London, encountering a variety of extraordinary characters ranging from Magwitch, the escaped convict, to Miss Havisham, locked up with her unhappy past and living with her ward, the arrogant, beautiful Estella. Pip must discover his true self, and his own set of values and priorities. Whether such values allow one to prosper in the complex world of early Victorian England is the major question posed by Great Expectations, one of Dickens's most fascinating, and disturbing, novels. This edition includes the original, discarded ending, Dickens's brief working notes, and the serial instalments and chapter divisions in different editions. It also uses the definitive Clarendon text.",Desiring God: Meditations of a Christian Hedonist.,"Stormy Weather. NEW YORK TIMESBESTSELLER ""Hysterically funny...Hiaasen at his satirical best."" - USA Today Two honeymooners wake up early, make love twice, and brace themselves for a spectacle they won't be watching from the sidelines. A seductive con artiste stumbles into a scam that promises more cool cash than the lottery. A shotgun-toting mobile home salesman is about to close a deal with disaster. A law school dropout will be chasing one Gaboon viper, a troop of storm-shocked monkeys, and a newfound love life, while tourists by the thousands bail from the Florida Keys. We're now entering the hurricane zone, where hell and hilarity rule. And in the hands of the masterful, merciless Carl Hiaasen, we're going to have some weather.","Lincoln at Gettysburg: The Words That Remade America. In a masterly work, Garry Wills shows how Lincoln reached back to the Declaration of Independence to write the greatest speech in the nation's history. The power of words has rarely been given a more compelling demonstration than in the Gettysburg Address. Lincoln was asked to memorialize the gruesome battle. Instead he gave the whole nation ""a new birth of freedom"" in the space of a mere 272 words. His entire life and previous training and his deep political experience went into this, his revolutionary masterpiece. By examining both the address and Lincoln in their historical moment and cultural frame, Wills breathes new life into words we thought we knew, and reveals much about a president so mythologized but often misunderstood. Wills shows how Lincoln came to change the world and to effect an intellectual revolution, how his words had to and did complete the work of the guns, and how Lincoln wove a spell that has not yet been broken.",Enchanted Evening.,Terry Jones' Fairy Tales.,"The Roses of No Man's Land. ""On the face of it,"" writes Lyn Macdonald, ""no one could have been less equipped for the job than these gently nurtured girls who walked straight out of Edwardian drawing rooms into the manifest horrors of the First World War..."" Yet the volunteer nurses rose magnificently to the occasion. In leaking tents and drafty huts they fought another war, a war against agony and death, as men lay suffering from the pain of unimaginable wounds or diseases we can now cure almost instantly. It was here that young doctors frantically forged new medical techniques -- of blood transfusion, dentistry, psychiatry and plastic surgery -- in the attempt to save soldiers shattered in body or spirit. And it was here that women achieved a quiet but permanent revolution, by proving beyond question they could do anything. All this is superbly captured in The Roses of No Man's Land, a panorama of hardship, disillusion and despair, yet also of endurance and supreme courage. ""Lyn Macdonald writes splendidly and t",Gray Matter and Other Stories from Night Shift.,"The Mystical Poems of Rumi 1: First Selection Poems 1-200. Rumi, who wrote and preached in Persia during the thirteenth century, was inspired by a wandering mystic, or dervish, named Shams al-Din. Rumi's vast body of poetry includes a lengthy poem of religious mysticism, the Mathnavi, and more than three thousand lyrics and odes. A.J. Arberry, who selected four hundred of the lyrics for translation, calls Rumi ""one of the world's greatest poets. In profundity of thought, inventiveness of image, and triumphant mastery of language, he stands out as the supreme genius of Islamic mysticism."" ""An excellent introduction to Rumi, the greatest mystical poet of Islam. . . . Rumi's scope, like that of all great poets, is universal--reaching from sensuous luxuriance to the driest irony.""--Sherman Goldman, East-West Journal","How the García Girls Lost Their Accents. Uprooted from their family home in the Dominican Republic, the four Garcia sisters - Carla, Sandra, Yolanda, and Sofia - arrive in New York City in 1960 to find a life far different from the genteel existence of maids, manicures, and extended family they left behind. What they have lost - and what they find - is revealed in the fifteen interconnected stories that make up this exquisite novel from one of the premier novelists of our time.","The Leadership Challenge. When it was initially written in 1987, few could have predicted that The Leadership Challenge would become one of the best-selling leadership books of all time. Now, faced with the new challenges of our unpredictable global business environment, Jim Kouzes and Barry Posner--two of the country's premier leadership experts--have completely revised and updated their classic book. Building on the knowledge base of their previous books, the third edition of The Leadership Challenge is grounded in extensive research and based on interviews with all kinds of leaders at all levels in public and private organizations from around the world. In this edition, the authors emphasize that the fundamentals of leadership are the same today as they were in the 1980s, and as they've probably been for centuries. In that sense, nothing's new. Leadership is not a fad. While the content of leadership has not changed, the context has-and in some cases, changed dramatically.","Dreaming in Pictures: The Photography. Lewis Carroll was the pen-name of the Reverend Charles Lutwidge Dodgson, the author of ""Alice's Adventures in Wonderland"" and other beloved children's books. But before achieving fame as an author, Carroll was a prolific and sophisticated photographer, acutely engaged in the art world of Victorian England. This illustrated volume examines Carroll's photographs not as the sideline of a celebrated writer, but as the creations of a serious photographic artist, and demonstrates their importance to the history of photography. Douglas Nickel traces the evolution in thought about Carroll's photography in the period since his death, demonstrating the ways it has been viewed largely through the filter of his literary reputation. Key to this have been certain preconceptions built up around Carroll's attitudes toward children, especially Alice Liddell, the inspiration for his first book and the subject of a number of his photographs. Nickel demonstrates how, by overturning the modern myths that h","Blind Willow Sleeping Woman. Collection of twenty-four stories that generously expresses Murakami's mastery of the form. From the surreal to the mundane, these stories exhibit his ability to transform the full range of human experience in ways that are instructive, surprising, and relentlessly entertaining. Here are animated crows, a criminal monkey, and an iceman, as well as the dreams that shape us and the things we might wish for. Whether during a chance reunion in Italy, a romantic exile in Greece, a holiday in Hawaii, or in the grip of everyday life, Murakami's characters confront grievous loss, or sexuality, or the glow of a firefly, or the impossible distances between those who ought to be closest of all.","Forever . . .. Katherine and Michael meet at a New Year's Eve party. They're attracted to each other, they grow to love each other. And once they've decided their love is forever, they make love. It's the beginning of an intense and exclusive relationship, with a future all planned. Until Katherine's parents insist that she and Michael put their love to the test with a summer apart... Foreveris written for an older age group than Judy Blume's other novels for children. It caused a storm of controversy when it was first published because of its explicit sexual content.","March. Winner of the 2006 Pulitzer Prize For Fiction. From the author of the acclaimed YEAR OF WONDERS, an historical novel and love story set during a time of catastrophe, on the front lines of the American Civil War. Acclaimed author Geraldine Brooks gives us the story of the absent father from Louisa May Alcott's Little Women - and conjures a world of brutality, stubborn courage and transcendent love. An idealistic abolitionist, March has gone as chaplain to serve the Union cause. But the war tests his faith not only in the Union - which is also capable of barbarism and racism - but in himself. As he recovers from a near-fatal illness, March must reassemble and reconnect with his family, who have no idea of what he has endured. A love story set in a time of catastrophe, March explores the passions between a man and a woman, the tenderness of parent and child, and the life-changing power of an ardently held belief.",Cognitive Behavioral Treatment of Insomnia: A Session-By-Session Guide.,"The Switch. When a joke turns into tragedy, leaving Gillian Lloyd dead, Melina vows to stop at nothing to learn the truth and avenge her twin's death. But Gillian's murder has a far-reaching impact that no one suspected or could even fathom.","The Day the Leader Was Killed. AN ANCHOR PAPERBACK ORIGINAL From the Nobel Prize laureate and author of the acclaimed Cairo Trilogy, a beguiling and artfully compact novel set in Sadat's Egypt. ""[Mahfouz] is not only a Hugo and a Dickens, but also a Galsworthy, Zola and a Jules Romain.""--Edward Said The time is 1981, Anwar al-Sadat is president, and Egypt is lurching into the modern world. Set against this backdrop, The Day the Leader Was Killedrelates the tale of a middle-class Cairene family. Rich with irony and infused with political undertones, the story is narrated alternately by the pious and mischievous family patriarch Muhtashimi Zayed, his hapless grandson Elwan, and Elwan's headstrong and beautiful fiancee Randa. The novel reaches its climax with the assassination of Sadat on October 6, 1981, an event around which the fictional plot is skillfully woven. The Day the Leader Was Killedbrings us the essence of Mahfouz's genius and is further proof that he has, in the words of the Nobel citation, ""formed an Ara","The Wheel of Time: The Shamans of Mexico Their Thoughts About Life Death & the Universe. World-renowned bestselling author Carlos Castaneda's Selection of his wrtings on the shamans of ancient Mexico. Originally drawn to Yaqui Indian spiritual leader don Juan Matus for his knowledge of mind-altering plants, bestselling author Carlos Castaneda soon immersed himself in the sorcerer's magical world entirely. Ten years after his first encounter with the shaman, Castaneda examines his field notes and comes to understand what don Juan knew all along--that these plants are merely a means to understanding the alternative realities that one cannot fully embrace on one's own. In Journey to Ixtlan, Carlos Castaneda introduces readers to this new approach for the first time and explores, as he comes to experience it himself, his own final voyage into the teachings of don Juan, sharing with us what it is like to truly ""stop the world"" and perceive reality on his own terms.","The White Lioness (Kurt Wallander #3). The execution-style murder of a Swedish housewife looks like a simple case even though there is no obvious suspect. But then Wallander learns of a determined stalker, and soon enough, the cops catch up with him. But when his alibi turns out to be airtight, they realize that what seemed a simple crime of passion is actually far more complex--and dangerous. Combining compelling insights into the sinister side of modern life with a riveting tale of international intrigue, The White Lioness keeps you on the knife-edge of suspense.","Chilly Scenes of Winter. This is the story of a love-smitten Charles; his friend Sam, the Phi Beta Kappa and former coat salesman; and Charles' mother, who spends a lot of time in the bathtub feeling depressed.",Winter (Four Seasons #4).,The Metamorphosis And Other Stories.,"The Occult: A History. Topics include Aleister Crowley, G.I. Gurdjieff, Helena Petrovna Blavatsky, Kabbalah, primitive magic, Franz Anton Mesmer, Gregor Rasputin, Daniel Dunglas Home, Paracelsus, P.D. Ouspensky, Wm Blake, Giovanni Jacopo Casanova, Cornelius Agrippa etc. Acknowledgments Preface Introduction Part 1: A Survey of the Subject Magic-The Science of the Future The Dark Side of the Moon The Poet as Occultist Part 2: A History of Magic The Evolution of Man The Magic of Primitive Man Adepts & Initiates The World of the Kabbalists Adepts & Imposters The 19th Century--Magic & Romanticism The Beast Himself Two Russian Mages Part 3: Man's Latent Powers Witchcraft & Lycanthropy The Realm of Spirits Glimpses Bibliography Index","Hunger. Nominated for numerous awards, including the Los Angeles Times Book Prize and PEN Center USA-West's annual literary award, this debut collection by a young Chinese-American writer has garnered stellar reviews and invited comparisons to Amy Tan and Maxine Hong Kingston. These stories reveal the lives of immigrant families haunted by lost loves: a ghost seduces a young girl into a flooded river; a mother commands a daughter to avenge her father's death; and a woman speaks from beyond the grave about her tragic marriage to a man whose own disappointments nearly destroy their two daughters. In luminous prose Lan Samantha Chang weaves the forces of war and magic, food and desire, ghosts and family, into haunting tales that signal the arrival of an exciting new writer and ""a work of gorgeous, enduring prose"" (The Washington Post).",Desire and Duty: A Sequel to Jane Austen's Pride and Prejudice.,The Keeper's Companion Vol. 1 (Call of Cthulhu RPG).,"Holy Cows and Hog Heaven: The Food Buyer's Guide to Farm Friendly Food. Holy Cows and Hog Heavenis written by an honest-to-goodness-dirt-under-the-fingernails, optimistic clean good farmer. His goal is to: Empower food buyers to pursue positive alternatives to the industrialized food system Bring clean food farmers and their patrons into a teamwork relationship Marry the best of western technology with the soul of eastern ethics Educate food buyers about productions Create a food system that enhances nature's ecology for future generations Holy Cows and Hog Heavenhas an overriding objective of encouraging every food buyer to embrace the notion that menus are a conscious decision, creating the next generation's world one bite at a time.","Gold: The Final Science Fiction Collection. Goldis the final and crowning achievement of the fifty-year career of science fiction's transcendent genius, the world-famous author who defined the field of science fiction for its practitioners, its millions of readers, and the world at large. The first section contains stories that range from the humorous to the profound, at the heart of which is the title story, ""Gold,"" a moving and revealing drama about a writer who gambles everything on a chance at immortality: a gamble Asimov himself made -- and won. The second section contains the grand master's ruminations on the SF genre itself. And the final section is comprised of Asimov's thoughts on the craft and writing of science fiction.",Beef.,programming.java: An Introduction to Programming Using Java: An Introduction to Programming Using Java.,"The Elements of Typographic Style. This lovely, well-written book is concerned foremost with creating beautiful typography and is essential for professionals who regularly work with typographic designs. Author Robert Bringhurst writes about designing with the correct typeface; striving for rhythm, proportion, and harmony; choosing and combining type; designing pages; using section heads, subheads, footnotes, and tables; applying kerning and other type adjustments to improve legibility; and adding special characters, including punctuation and diacritical marks. The Elements of Typographic Styleteaches the history of and the artistic and practical perspectives on a variety of type families that are available in Europe and America today.The last section of the book classifies and displays many type families, offers a glossary of typography terms, and lists type designers and type foundries. The book briefly mentions digital typography, but otherwise ignores it, focusing instead on general typography and page- and type-desi","Charlotte's Web. Fern loves a little pig named Wilbur and Wilbur's dear friend, Charlotte A Cavatica, a large grey spider who lived with Wilbur in the barn. With the help of Templeton the rat, who never did anything for anybody unless there was something in it for him, and a wonderfully clever plan of her own, Charlotte saved the life of Wilbur.","Flags of Our Fathers. Captures the glory, the triumph, the heartbreak, and the legacy of the six men who raised the flag at Iwo Jima and the story of the 3 who survived - including Bradley's father. In this unforgettable chronicle of perhaps the most famous moment in American military history, James Bradley has captured the glory, the triumph, the heartbreak, and the legacy of the six men who raised the flag at Iwo Jima. Here is the true story behind the immortal photograph that has come to symbolize the courage and indomitable will of America. In February 1945, American Marines plunged into the surf at Iwo Jima--and into history. Through a hail of machine-gun and mortar fire that left the beaches strewn with comrades, they battled to the island's highest peak. And after climbing through a landscape of hell itself, they raised a flag. Now the son of one of the flag raisers has written a powerful account of six very different men who came together in a moment that will live forever. To his family, John Bradl","Twelfth Night. Set in a topsy-turvy world like a holiday revel, this comedy devises a romantic plot around separated twins, misplaced passions, and mistaken identity. Juxtaposed to it is the satirical story of a self-deluded steward who dreams of becoming ""Count Malvolio"" only to receive his comeuppance at the hands of the merrymakers he wishes to suppress. The two plots combine to create a farce touched with melancholy, mixed throughout with seductively beautiful explorations on the themes of love and time, and the play ends, not with laughter, but with a clown's sad song.",Such a Good Girl and Other Crime Stories.,Merrick (Crónicas Vampíricas #7).,Escape on Venus (Venus #4).,"McCarthy's Bar: A Journey of Discovery in Ireland. The #1 Irish Bestseller Despite the many exotic places Pete McCarthy has visited, he finds that nowhere else can match the particular magic of Ireland, his mother's homeland. In McCarthy's Bar, his journey begins in Cork and continues along the west coast to Donegal in the north. Traveling through spectacular landscapes, but at all times obeying the rule, ""never pass a bar that has your name on it,"" he encounters McCarthy's bars up and down the land, meeting fascinating people before pleading to be let out at four o'clock in the morning. Written by someone who is at once an insider and an outside, McCarthy's Baris a wonderfully funny and affectionate portrait of a rapidly changing country.","Paradiso (The Divine Comedy #3). Dorothy L. Sayers's landmark translation follows Dante's terza rimastanza's and brings his poetry vividly to life. Her work was completed after her death by Barbara Reynolds, who provides a foreword on the importance of the translation and an introduction on Dante's view of Heaven. This edition also includes a new foreword, updated further reading, notes, appendices, a glossary, diagrams and genealogical tables.",Falling Angels (Luc Actar #1).,"The Changeling (Daughters of England #15). Rebecca Mandeville The story of The Changelingis told by Angelet's daughter, Rebecca, who was born in Benedict Lansdon's grandfather's house in an Australian gold-mining township. Before Rebecca was born, her father had died saving another man's life. She had always looked up to him as a great hero and when she heard that her mother was to marry Benedict Lansdon, she was deeply shocked. The prolific British author of historical romances (The Pool of St. Branok) continues her lavishly entwined narrative of the families connected to Benedict Lansdon, now a recently bereaved widower, absentee father and wealthy seeker of a Parliament seat. Narrated by Benedict's aggrieved stepdaughter, Rebecca, this complex tale of love and betrayal concerns a three-cornered sibling relationship involving Rebecca, her half-sister, Belinda, and Lucie, a country waif informally adopted by Rebecca. Aware that her father blames her for her mother's death in childbirth, Belinda takes refuge in michievous behav","Take on Me (Secret Lives of Daytime Divas #1). On prom night, Dylan Anderson caused the biggest humiliation of Sadie Post's life. Getting over her crush on him took a while, but now she's grown up and moved on. Until Dylan moves into her workplace, that is. Suddenly it's high school revisitedcomplete with her lustful thoughts about him. But she's his boss and finally has the upper handshe won't let her sexy fantasies change that. Too bad the tension spiking between them is so high, it's inevitable they hit the sheetsor the nearest desk. And once they do, Dylan is better than she'd ever imagined. She promised herself to leave him begging for morebut does she really want to?",Aristophanes and His Theatre of the Absurd.,Inattentional Blindness.,"Hard Drive: Bill Gates and the Making of the Microsoft Empire. The true story behind the rise of a tyrannical genius, how he transformed an industry, and why everyone is out to get him.In this fascinating expose, two investigative reporters trace the hugely successful career of Microsoft founder Bill Gates. Part entrepreneur, part enfant terrible,Gates has become the most powerful -- and feared -- player in the computer industry, and arguably the richest man in America. In Hard Drive,investigative reporters Wallace and Erickson follow Gates from his days as an unkempt thirteen-year-old computer hacker to his present-day status as a ruthless billionaire CEO. More than simply a ""revenge of the nerds"" story though, this is a balanced analysis of a business triumph, and a stunningly driven personality. The authors have spoken to everyone who knows anything about Bill Gates and Microsoft -- from childhood friends to employees and business rivals who reveal the heights, and limits, of his wizardry. From Gates's singular accomplishments to his equally ex",The Republic.,Paws Before Dying (A Dog Lover's Mystery #4).,"The Hedgehog the Fox & the Magister's Pox: Mending the Gap Between Science & the Humanities. In his final book and his first full-length original title since Full Housein 1996, the eminent paleontologist Stephen Jay Gould offers a surprising and nuanced study of the complex relationship between our two great ways of knowing: science and the humanities, twin realms of knowledge that have been divided against each other for far too long. In building his case, Gould shows why the common assumption of an inescapable conflict between science and the humanities is false, mounts a spirited rebuttal to the ideas that his intellectual rival E. O. Wilson set forth in his book Consilience, and explains why the pursuit of knowledge must always operate upon the bedrock of nature' s randomness. The Hedgehog, the Fox, and the Magister's Poxis a controversial discourse, rich with facts and observations gathered by one of the most erudite minds of our time.","What Color Is Your Parachute? A Practical Manual for Job-Hunters and Career-Changers. A favourite of job hunters and career changers for more than three decades, it continues to be a mainstay on best-seller lists, from Amazon.com to BusinessWeek to the New York Times, where it has spent five and a half years.","Complete Idiot's Guide to The Beatles. You're no idiot, of course. You know Rubber Soul, Revolver, Sgt. Pepper's Lonely Hearts Club Band, and Abbey Road are considered among the best rock albums of all time; you've seen the classic films A Hard Day's Night and Help ; and you've witnessed the #1 success of all three Anthology CDs and their TV/video counterparts. But now you're wondering...why all this fuss about the Fab Four more than a quarter century after their breakup? Don't pass us by yet The Complete Idiot's Guide to The Beatles takes you on a yellow submarine ride through The Beatles phenomenon, from their early skiffle days in Liverpool to Anthology and solo projects. In this Complete Idiot's Guide you get:",Asimov's New Guide to Science.,"Museum of Terror Vol. 3: The Long Hair in the Attic. Museum of Terror volumes one and two introduced readers to the horrific, beautiful creature Tomie... the woman no man could resist. Now Junji Ito, creator and curator of this horrible museum, brings a new type of exhibit to thrill and chill your senses First, his lovely violinists will escort you to dinner in a vampire den. Next, in a classroom full of grotesquely masked students, which one is a demon in disguise? A musician's possessed arm attacks a schoolgirl by way of his mouth, and another young man listens to the tape recording left behind by a suicide victim. Why did she kill herself, and is he safe from its influence? Swordplay, monk-ridden ruins, halls of upright corpses, infectious radio broadcasts, and murderous ceiling hair are among Ito's beastly offerings in this volume Find out why Junji Ito is Japan's foremost creator of horror manga","Hands of Light: A Guide to Healing Through the Human Energy Field. With the clarity of a physicist and the compassion of a gifted healer with more than twenty years of professional experience observing 5,000 clients and students, Barbara Ann Brennan presents the first in-depth study of the human energy field for people who seek happiness and health, and who wish to achieve their full potential. Our physical bodies exist within a larger 'body' , a human energy field or aura, which is the vehicle through which we create our experience or reality, including health and illness. It is through this energy field that we have the power to heal ourselves.This energy body - only recently verified by scientists, but long known to healers and mystics - is the starting point of an illness. Here, our most powerful and profound human interactions take place, the precursor and healer of all physiological and emotional disturbances. Hands of Light offers: * a new paradigm for the human in health, relationships and disease * an understanding of how the human energy fie","Yakitate!! Japan Volume 1. Azuma Kazuma, an energetic and dense young man, was introduced to the art of bread making when he was six. He decides to take the path of bread-making and become a baker right after graduating from middle school. Through his travels, he encounters many rivals and found work at the branch store of the most famous bread maker brand, the Phantasia.","Why I Write. Whether puncturing the lies of politicians, wittily dissecting the English character or telling unpalatable truths about war, Orwell's timeless, uncompromising essays are more relevant, entertaining and essential than ever in today's era of spin.",Ghost Hunters: William James and the Search for Scientific Proof of Life After Death.,The Enemy (Jack Reacher #8).,"Dragon's Treasure. Karadur Atani, the Dragon of Chingura, has survived his father's madness and his brother's treachery. Firmly ensconced in the castle at Dragon Keep, he has won the loyalty of his people and the respect of the other lords. Yet legends never die. He is of dragon blood. And when stoked, his fury burns without mercy. No wars threaten Karadur's domain, though the politics of the kingdom and the daily intrigues of neighboring fiefdoms threaten the peace he has found within himself. Still, his fierceness has been tempered by love, for the men who serve him and for one human woman. Maia Unamira is a poor herbalist from a family of outlaws. Her heart fears neither the golden dragon Karadur becomes, nor the nearly human man who sets her blood on fire. Her love will make Karadur a man of compassion as well as strength --- and transform the future of both humans and dragons...","Year's Happy Ending. Could she settle for less than love? Professor Gideon Beaufort tried Deborah's good nature severely. He scorned her future as a trained nanny destined to spend her life caring for other people's children. Yet was his proposal any more enticing? All he wanted was a substitute nanny for his young daughter and nothing more. Deborah found herself wishing the sultry skies of Portugal's exotic Algarve weren't wasted on such a cynical widower and a dedicated nanny with stars in her eyes.","Dante: Poet of the Secular World. Erich Auerbach's Dante: Poet of the Secular Worldis an inspiring introduction to one of world's greatest poets as well as a brilliantly argued and still provocative essay in the history of ideas. Here Auerbach, thought by many to be the greatest of twentieth-century scholar-critics, makes the seemingly paradoxical claim that it is in the poetry of Dante, supreme among religious poets, and above all in the stanzas of his Divine Comedy, that the secular world of the modern novel first took imaginative form. Auerbach's study of Dante, a precursor and necessary complement to Mimesis, his magisterial overview of realism in Western literature, illuminates both the overall structure and the individual detail of Dante's work, showing it to be an extraordinary synthesis of the sensuous and the conceptual, the particular and the universal, that redefined notions of human character and fate and opened the way into modernity. CONTENTS I. Historical Introduction; The Idea of Man in Literature II. D","God Emperor of Dune (Dune Chronicles #4). Centuries have passed on Dune, and the planet is green with life. Leto, the son of Dune's savior, is still alive but far from human, and the fate of all humanity hangs on his awesome sacrifice...""Rich fare...heady stuff.""--Los Angeles Times","Jeeves in the Offing (Jeeves #12). Anyone who involves himself with Roberta Wickham is asking for trouble, so naturally Bertie Wooster finds himself in just that situation when he goes to stay with his Aunt Dahlia at Brinkley Court. So much is obvious. Why celebrated loony-doctor Sir Roderick Glossop should be there too, masquerading as a butler, is less clear. As for Bertie's former headmaster, the ghastly Aubrey Upjohn, the dreadful novelist, Mrs Homer Cream and her eccentric son Wilbert, their presence is entirely perplexing. Without Jeeves to help him solve these mysteries, Bertie nearly comes unstuck. It is only when that peerless manservant returns from his holiday that the resulting tangle of problems is sorted out to everyone's satisfaction - except Bertie's.","Blink: The Power of Thinking Without Thinking. In his landmark bestseller The Tipping Point, Malcolm Gladwell redefined how we understand the world around us. Now, in Blink, he revolutionizes the way we understand the world within. Blinkis a book about how we think without thinking, about choices that seem to be made in an instant--in the blink of an eye--that actually aren't as simple as they seem. Why are some people brilliant decision makers, while others are consistently inept? Why do some people follow their instincts and win, while others end up stumbling into error? How do our brains really work-in the office, in the classroom, in the kitchen, and in the bedroom? And why are the best decisions often those that are impossible to explain to others?In Blinkwe meet the psychologist who has learned to predict whether a marriage will last, based on a few minutes of observing a couple; the tennis coach who knows when a player will double-fault before the racket even makes contact with the ball; the antiquities experts who recognize","Observations on the Feeling of the Beautiful and Sublime. When originally published in 1960, this was the first complete English translation since 1799 of Kant's early work on aesthetics. More literary than philosophical, Observations shows Kant as a man of feeling rather than the dry thinker he often seemed to readers of the three Critiques.","The Complete Anne of Green Gables Boxed Set (Anne of Green Gables #1-8). Favorites for nearly 100 years, these classic novels follow the adventures of the spirited redhead Anne Shirley, who comes to stay at Green Gables and wins the hearts of everyone she meets. Includes Anne of Green Gables, Anne of Avonlea, Anne of the Island, Anne of Windy Poplars, Anne's House of Dreams, Anne of Ingleside, Rainbow Valley and Rilla of Ingleside - the whole collection. Each book includes: The original, unabridged text; a specially commissioned biography of L.M. Montgomery; a map of Prince Edward Island.","A Practical Guide to Dragons. This lavishly illustrated guide showcases the wide array of fantastic dragons encountered on the world of Krynn. Sindri Suncatcher-wizard's apprentice-opens up his personal notebooks to share his knowledge of these awe-inspiring creatures, from the life cycle of a kind copper dragon to the best way to counteract a red dragon's fiery breath. The perfect companion to the Dragonlance: The New Adventures series, this beautifully illustrated title introduces readers to the looks and habits of dragons of the Dragonlance world. With tips and tricks every new adventurer can use on imaginary encounters with dragons, this book will enchant readers with both pictures and words. About the Author Sindri Suncatcher is a three-and-a-half foot tall kender, who enjoys storytelling, collecting magical tokens, and fighting dragons. He lives in Solamnia and is currently studying magic under the auspices of the black-robed wizard Maddoc. You can catch Sindri in the midst of his latest adventure in The Wayw","Velvet Elvis: Repainting the Christian Faith. We have to test everything.I thank God for anybody anywhere who is pointing people to the mysteries of God. But those people would all tell you to think long and hard about what they are saying and doing and creating.Test it. Probe it.Do that to this book.Don't swallow it uncritically. Think about it. Wrestle with it.Just because I'm a Christian and I'm trying to articulate a Christian worldview doesn't mean I've got it nailed. I'm contributing to the discussion. God has spoken, and the rest is commentary, right?","Case Closed: Lee Harvey Oswald and the Assassination of JFK. The assassination of John F. Kennedy on November 22, 1963, continues to inspire interest ranging from well-meaning speculation to bizarre conspiracy theories and controversial filmmaking. But in this landmark book,reissued with a new afterword for the 40th anniversary of the assassination, Gerald Posner examines all of the available evidence and reaches the only possible conclusion: Lee Harvey Oswald acted alone. There was no second gunman on the grassy knoll. The CIA was not involved. And although more than four million pages of documents have been released since Posner first made his case, they have served only to corroborate his findings. Case Closedremains the classic account against which all books about JFK's death must be measured.",The Karma Of Brown Folk.,"Augustine: A Very Short Introduction. Augustine was arguably the greatest early Christian philosopher. His teachings had a profound effect on Medieval scholarship, Renaissance humanism, and the religious controversies of both the Reformation and the Counter-Reformation. Here, Henry Chadwick places Augustine in his philosophical and religious context and traces the history of his influence on Western thought, both within and beyond the Christian tradition. A handy account to one of the greatest religious thinkers, this Very Short Introduction is both a useful guide for the one who seeks to know Augustine and a fine companion for the one who wishes to know him better. About the Series: Combining authority with wit, accessibility, and style, Very Short Introductions offer an introduction to some of life's most interesting topics. Written by experts for the newcomer, they demonstrate the finest contemporary thinking about the central problems and issues in hundreds of key topics, from philosophy to Freud, quantum theory to Isl","Movie Shoes (Shoes #6). Life is tough for the Winter family in London, with little money and Dad out of work. Luckily Aunt Cora comes to the rescue with an invitation to live in California. From that moment on, talented Rachel and Tim dream of stardom in America. The family couldn't be more surprised when a movie producer picks plain peevish Jane for the lead part of Mary in The Secret Garden. No one's ever noticed Jane before. Could this be the chance of a lifetime? Alternate Title: The Painted Garden","The Inheritors. When the spring came the people - what was left of them - moved back by the old paths from the sea. But this year strange things were happening, terrifying things that had never happened before. Inexplicable sounds and smells; new, unimaginable creatures half glimpsed through the leaves. What the people didn't, and perhaps never would, know, was that the day of their people was already over. From the author of Lord of the Flies, The Inheritorsis a startling recreation of the lost world of the Neanderthals, and a frightening vision of the beginning of a new age.","Pygmalion. George Bernard Shaw's witty comedy of manners, Pygmalionincludes an introduction by Nicholas Grene in Penguin Classics. Pygmalionboth delighted and scandalized its first audiences in 1914. A brilliantly witty reworking of the classical tale of the sculptor Pygmalion, who falls in love with his perfect female statue, it is also a barbed attack on the British class system and a statement of Shaw's feminist views. In Shaw's hands, the phoneticist Henry Higgins is the Pygmalion figure who believes he can transform Eliza Doolittle, a cockney flower girl, into a duchess at ease in polite society. The one thing he overlooks is that his 'creation' has a mind of her own. Adapted into the Oscar-winning musical film My Fair Ladystarring Audrey Hepburn and Rex Harrison in 1964, Pygmalion This is the definitive text produced under the editorial supervision of Dan H. Laurence, with an illuminating introduction by Nicholas Grene, discussing the language and politics of the play. Also included in this","Forgiven (Firstborn #2). A Deadly Accident The Christian Kids Theater group is devastated by a tragedy greater than any of them could've imagined. Now their director, Katy Hart, must find a way to walk the kids through their grief and give them a reason to believe again. But will hatred and revenge have the final word? An Aching Emptiness Dayne Matthews is working on what could be his best movie yet. Still, he feels empty and unfocused, aching for real love and the family he'll never know. Then a friend tells him about a teaching center and a way to become like God. Is this the answer Dayne's been searching for? A Shocking Discovery John Baxter reconnects with an old friend and shares a buried secret, one that he and his wife kept hidden all their married lives. Now--in his wife's honor--he decides to continue a very special search. But in the process he makes a critical mistake and one of his daughters stumbles onto a letter she was never supposed to see. For the Baxters, grace and redemption will play a grea","Floaters. Who else but Joseph Wambaugh could write ""a joy, a hoot, a riot of a book"" that is also acclaimed as ""one of this season's best crime novels""? That's how The New York Times Book Reviewand Time, respectively, described his last novel, Finnegan's Week. Nobody writes a faster, funnier, more satisfying tale of cops and criminals, the high life and lowlifes than Wambaugh--and Floatersis his sharpest yet. Mick Fortney and his partner Leeds manage to cruise above the standard police stress-pools of coffee and Pepto-Bismol--they're water cops in the ""Club Harbor Unit,"" manning a patrol boat on San Diego's Mission Bay. A typically rough day's detail consists of scoping out body-sculpted beauties on pleasure craft, rescuing boating bozos who've run aground, jeering at lifeguards, and hauling in the occasional floater who comes to the surface. But now their days are anything but typical, because the America's Cup international sailing regattas have come to town and suddenly San Diego is swarming","Masters of Death: The SS-Einsatzgruppen and the Invention of the Holocaust. In Masters of Death, Richard Rhodes gives full weight, for the first time, to the part played by the Einsatzgruppen - the professional killing squads deployed in Poland and the Soviet Union, early in World War II, by Himmler's SS. And he shows how these squads were utilized as the Nazis made two separate plans for dealing with the civilian populations they wanted to destroy. Drawing on Nuremberg Tribunal documents largely ignored until now, and on newly available material from eyewitnesses and survivors, Richard Rhodes has given us a book that is essential reading on the Holocaust the World War II.","The History of Middle-Earth Index (The History of Middle-Earth #13). Although J.R.R Tolkien is well-known for The Hobbit, The Lord of the Ringsand The Silmarillion, the material which laid the groundwork for what must be the most fully realised sub-creation ever to spring from a single imagination was begun many years before the publication of The Hobbit, and indeed Tolkien continued to work upon its completion until his death in 1973. In on of the single largest works of 'literary archaeology' ever undertaken, J.R.R. Tolkien's son and literary executor, Christopher Tolkien, edited the vast collection of manuscripts together with maps and illustrations and these were posthumously published in twelve volumes as The History of Middle-earth. Christopher Tolkien also compiled a very detailed and through index for each of these books. This companion edition to the twelve-volume Historynow brings together all of the indexes in one place, and provides the reader with an invaluable sourcebook to all the peoples, places and other significant entries from The Sil","Ritual Sins. Rachel Connery is on a seek-and-destroy mission, out for revenge against the mysterious, charismatic man who enticed millions of dollars from her dying mother and cheated her out of her inheritance. She wants retribution and is willing to use every seductive trick at her disposal to obtain it. But desire is a dangerous weapon that cuts both ways, and her trap could end up catching her in a nightmare of forbidden feelings.",The Great Gatsby.,"My Life. President Bill Clinton's My Lifeis the strikingly candid portrait of a global leader who decided early in life to devote his intellectual and political gifts, and his extraordinary capacity for hard work, to serving the public. It shows us the progress of a remarkable American, who, through his own enormous energies and efforts, made the unlikely journey from Hope, Arkansas, to the White House--a journey fueled by an impassioned interest in the political process which manifested itself at every stage of his life: in college, working as an intern for Senator William Fulbright; at Oxford, becoming part of the Vietnam War protest movement; at Yale Law School, campaigning on the grassroots level for Democratic candidates; back in Arkansas, running for Congress, attorney general, and governor. We see his career shaped by his resolute determination to improve the life of his fellow citizens, an unfaltering commitment to civil rights, and an exceptional understanding of the practicalities of","Sula. In Sula, Toni Morrison, winner of the 1993 Nobel Prize for literature, tells the story of two women--friends since childhood, separated in young adulthood, and reunited as grown women. Nel Wright grows up to become a wife and mother, happy to remain in her hometown of Medallion, Ohio. Sula Peace leaves Medallion to experience college, men, and life in the big city, an exceptional choice for a black woman to make in the late 1920s. As girls, Nel and Sula are the best of friends, only children who find in each other a kindred spirit to share in each girl's loneliness and imagination. When they meet again as adults, it's clear that Nel has chosen a life of acceptance and accommodation, while Sula must fight to defend her seemingly unconventional choices and beliefs. But regardless of the physical and emotional distance that threatens this extraordinary friendship, the bond between the women remains unbreakable: ""Her old friend had come home.... Sula, whose past she had lived through and w","Balkan Ghosts: A Journey Through History. From the assassination that triggered World War I to the ethnic warfare in Serbia, Bosnia, and Croatia, the Balkans have been the crucible of the twentieth century, the place where terrorism and genocide first became tools of policy. Chosen as one of the Best Books of the Year by The New York Times, and greeted with critical acclaim as ""the most insightful and timely work on the Balkans to date"" (The Boston Globe), Kaplan's prescient, enthralling, and often chilling political travelogue is already a modern classic. This new edition includes six opinion pieces written by Robert Kaplan about the Balkans between l996 and 2000 beginning just after the implementation of the Dayton Peace Accords and ending after the conclusion of the Kosovo war, with the removal of Slobodan Milosevic from power.","Enquiry. A closed-door enquiry has found a jockey guilty of the lowest possible crime--throwing a race for money. His reputation scarred, he's begun his own investigation--but asking the wrong questions just might get him killed.","At Risk (Winston Garano #1). A Massachusetts state investigator is called home from Knoxville, Tennessee, where he is completing a course at the National Forensic Academy. His boss, the district attorney, attractive but hard-charging, is planning to run for governor, and as a showcase she's planning to use a new crime initiative called At Risk; its motto: ""Any crime, any time."" In particular, she's been looking for a way to employ cutting-edge DNA technology, and she thinks she's found the perfect subject in an unsolved twenty-year-old murder--in Tennessee. If her office solves the case, it ought to make them all look pretty good, right? Her investigator is not so sure--not sure about anything to do with this woman, really--but before he can open his mouth, a shocking piece of violence intervenes, an act that shakes up not only both their lives but also the lives of everyone around them. It's not a random event. Is it personal? Is it professional? Whatever it is, the implications are very, very bad indeed ... and","Every Second Counts. In 1999, Lance Armstrong made world headlines with the most stunning comeback in the history of sport after battling against life-threatening testicular cancer just eighteen months before returning to professional cycling. His first book, It's Not About the Bike, charted his journey back to life and went on to become an international bestseller. Now, in his much-anticipated follow-up, Armstrong shares more details of his extraordinary life story, including the births of his twin daughters Grace and Isabel. Never shy of controversy, Armstrong offers, with typical frankness, his thoughts on training, competing, winning and failure. He also tells of the work he did for the foundation he created following his dramatic recovery, addresses the daunting challenge of living in the aftermath of cancer and treatment, and shares further inspirational tales of survival. A fresh outlook on the spirit of survivors everywhere, Every Second Countsis an account of a man who strives every day to meet li","Now and on Earth. An underaged bellboy thrust into an awful intimacy with grown-up vice. An alcoholic writer trying to postpone a crack-up just long enough to finish his next book. A wildly dysfunctional Okie family floundering on the edge of mutual destruction amid the deceptive plenty of wartime California. These are the ingredients of Jim Thompson's devastating and eerily autobiographical first novel. In Now and On Earth, America's hard-boiled Dante ushers readers into his own personal hell and limns its suffering inhabitants with bleak humor and compassion. With an introduction by Stephen King.","Isaac Newton. Isaac Newton was born in a stone farmhouse in 1642, fatherless and unwanted by his mother. When he died in London in 1727 he was so renowned he was given a state funeral--an unheard-of honor for a subject whose achievements were in the realm of the intellect. During the years he was an irascible presence at Trinity College, Cambridge, Newton imagined properties of nature and gave them names--mass, gravity, velocity--things our science now takes for granted. Inspired by Aristotle, spurred on by Galileo's discoveries and the philosophy of Descartes, Newton grasped the intangible and dared to take its measure, a leap of the mind unparalleled in his generation. James Gleick, the author of Chaosand Genius, and one of the most acclaimed science writers of hisgeneration, brings the reader into Newton's reclusive life and provides startlingly clear explanations of the concepts that changed forever our perception of bodies, rest, and motion. Ideas so basic to the twenty-first century we literal","Pippi Calzaslargas (Pippi Calzaslargas #1). Pippi es una nina de nueve anos que no tiene ni padre ni madre, pero esta nina extraordinaria que ha viajado por todo el mundo sabe arreglarselas sola. Pippi tiene el pelo de color zanahoria, recogido en dos trencitas, tiesas como palos, sabe cocinar y llevar una casa, y es muy fuerte, tan fuerte que puede levantar un caballo. Pippi piensa que es una ventaja no tener padres ya que nadie la manda a la cama cuando mas se esta divirtiendo ni nadie la obliga a tomar aceite de higado de bacalao cuando le apetecen caramelos de menta. Astrid Lindgren nos relata la divertida historia, llena de ternura y humor, de este singularisimo personaje, Pippi, que vive en compania de su inseparable mono Mister Nelson y su caballo, haciendo mil extravagancias que proporcionaran unas horas inolvidables a nuestros lectores.",Sliding Scales (Pip & Flinx #10). The ninth novel in the New York Times bestselling Pip & Flinx series by one of science fiction's most popular and prodigious storytellers. The daring pair have braved countless dangers to emerge victorious. But now Flinx attempts something that may be impossible for the heretofore undefeated hero. His mission: to take a vacation.,"Black Girl/White Girl. Fifteen years ago, in 1975, Genna Hewett-Meade's college roommate died a mysterious, violent, terrible death. Minette Swift had been a fiercely individualistic scholarship student, an assertive--even prickly--personality, and one of the few black girls at an exclusive women's liberal arts college near Philadelphia. By contrast, Genna was a quiet, self-effacing teenager from a privileged upper-class home, self-consciously struggling to make amends for her own elite upbringing. When, partway through their freshman year, Minette suddenly fell victim to an increasing torrent of racist harassment and vicious slurs--from within the apparent safety of their tolerant, ""enlightened"" campus--Genna felt it her duty to protect her roommate at all costs. Now, as Genna reconstructs the months, weeks, and hours leading up to Minette's tragic death, she is also forced to confront her own identity within the social framework of that time. Her father was a prominent civil defense lawyer whose radical po","H.M.S. Unseen (Admiral Arnold Morgan #3). The H.M.S. Unseenis one of the most efficient, lethal submarines ever built. But suddenly, on a training mission off the English coast, it vanishes, baffling military intelligence on both sides of the Atlantic, including National Security Adviser Admiral Arnold Morgan. A missing weapon is dangerous enough. But then the unthinkable begins to happen....Planes begin blowing up across the skies. Searching for answers, Morgan is convinced that only one man can be behind all these devastating events: his archenemy, the world's most cunning--yet reportedly dead--terrorist spy. Determined to stop his old nemesis, Morgan must use all his wits to find a madman armed with a powerful sub hidden somewhere in a million square miles of ocean. What Morgan doesn't know, however, is that the fanatical terrorist has a plan of his own, one that will bring these two intense warriors face-to-face--and only one will come out alive in one of the most chilling spy stories of the year.","Werewolves Don't Go to Summer Camp (The Adventures of the Bailey School Kids #2). The hugely popular early chapter book series re-emerges with a new look! Brand-new eye-catching cover art brings a modern feel to this classic monster series for young readers. The new director at Camp Lone Wolf seems like a nice guy. But when the kids learn the legend of a local boy who disappeared and the wolf that prowls the campgrounds howling in the night, they start to wonder if Camp Lone Wolf is more than just a name. Mr. Jenkins is covered in hair, eats his meat almost raw, and has an obsession with wolves. But could he really be a werewolf?","King Lear. An edition of Shakespeare's tragedy, including discussion of its plot, themes, characters, language, production, and author.",Smart Discipline: Fast Lasting Solutions for Your Child's Self-Esteem and Your Peace of Mind.,"Readings in Classical Chinese Philosophy. This new edition offers expanded selections from the works of Kongzi (Confucius), Mengzi (Mencius), Zhuangzi (Chuang Tzu), and Xunzi (Hsun Tzu); two new works, the dialogues Robber Zhiand White Horse; a concise general introduction; brief introductions to, and selective bibliographies for, each work; and four appendices that shed light on important figures, periods, texts, and terms in Chinese thought.","Crown of Stars (Crown of Stars #7). In the wake of the cataclysm many new alliances are forming even as old ones dissolve. As Sanglant struggles to legitimize his own leadership, the Aoi are carrying out random attacks-while implicating him as their leader. Stronghand has begun a march of conquest into the heart of Sanglant's realm. Adelheid and Antonia have made an unholy alliance. And Sabella and Duke Conrad are moving to seize Sanglant's crown. Cultures, religions, and races are clashing in what will be the ultimate struggle for control of this strange new world.","Light in August. One of William Faulkner's most admired and accessible novels, Light in August reveals the great American author at the height of his powers. Lena Grove's resolute search for the father of her unborn child begets a rich, poignant, and ultimately hopeful story of perseverance in the face of mortality. It also acquaints us with several of Faulkner's most unforgettable characters, including the Reverend Gail Hightower, plagued by visions of Confederate horsemen, and Joe Christmas, a ragged, itinerant soul obsessed with his mixed-race ancestry. Powerfully entwining these characters' stories, Light in August brings to life Faulkner's imaginary South, one of literature's great invented landscapes, in all of its unerringly fascinating glory. Along with a new Foreword by C. E. Morgan, this edition reproduces the corrected text of Light in August as established in 1985 by Faulkner expert Noel Polk.","Last Man Standing. When Web London's FBI Hostage Rescue Team is ambushed in a dark alley, Web is the only survivor. As the FBI investigates, suspicion surrounding Web deepens. Now, he needs help from an unlikely ally in his desperate search for the killer of his friends, and finds himself up against a force intent on finishing the job that began in the alley.","Seven Japanese Tales. In these seven stories, the author of The Makioka Sisters explores the territory where love becomes self-annihilation, where the contemplation of beauty gives way to fetishism, and where tradition becomes an instrument of refined cruelty.","Tsubasa: RESERVoir CHRoNiCLE Vol. 12. DRAGONFLY BATTLE All is not well on Piffle World. The magical land's most popular sporting event - a race of lightweight aircraft called dragonflies - seems to have been rigged by one of the contestants. But winning the competition is the only way Princess Sakura and her friends can recover one of the princess's precious and powerful memory feathers. The five friends are determined to cross the finish line first, but the cheating is taking its toll - even Fai is out of the running! Can the travelers still win the race and discover who's behind the booby traps before it's too late?","Madame Bovary (Critical Editions). Margaret Cohen s careful editorial revision modernizes and renews Flaubert s stylistic masterpiece. In addition, Cohen has added to the Second Edition a new introduction, substantially new annotations, and twenty-one striking images, including photographs and engravings, that inform students understanding of middle-class life in nineteenth-century provincial France. In Madame Bovary, Flaubert created a cogent counter discourse that exposed and resisted the dominant intellectual and social ideologies of his age. The novel s subversion of conventional moral norms inevitably created controversy and eventually led to Flaubert s prosecution by the French government on charges of offending ""public and religious morality."" This Norton edition is the only one available that includes the complete manuscript from Flaubert s 1857 trial. ""Criticism"" includes sixteen studies regarding the novel s central themes, twelve of them new to the Second Edition, including essays by Charles Baudelaire, Henry",Zen and the Art of Happiness.,CliffsNotes on Dostoevsky's The Brothers Karamazov.,"Mandy. The magic of finding a home Mandy, a ten-year-old orphan, dreams of a place to call her own. Escaping over the orphanage wall to explore the outside world, Mandy discovers a tiny deserted cottage in the woods. All through the spring, summer, and fall, Mandy works to make it truly hers. Sometimes she ""borrows"" things she needs from the orphanage. Sometimes, to guard her secret, she even lies. Then, one stormy night at the cottage, Mandy gets sick, and no one knows how to find her--except a special friend she didn't know she had.","The Hundred Days (Aubrey & Maturin #19). Napoleon, escaped from Elba, pursues his enemies across Europe like a vengeful phoenix. If he can corner the British and Prussians before their Russian and Austrian allies arrive, his genius will lead the French armies to triumph at Waterloo. In the Balkans, preparing a thrust northwards into Central Europe to block the Russians and Austrians, a horde of Muslim mercenaries is gathering. They are inclined toward Napoleon because of his conversion to Islam during the Egyptian campaign, but they will not move without a shipment of gold ingots from Sheik Ibn Hazm which, according to British intelligence, is on its way via camel caravan to the coast of North Africa. It is this gold that Jack Aubrey and Stephen Maturin must at all costs intercept. The fate of Europe hinges on their desperate mission. ""The Hundred Daysis certain to delight O'Brian's fans, for whom happiness is an unending stream of Aubrey/Maturin books....[It] is a fine novel that stands proudly on the shelf with the others.""","The Divine Comedy Vol. I: Inferno. This vigorous translation of the poet's journey through the circles of hell re-creates for the modern reader the rich meanings that Dante's poem had for his contemporaries. Musa's introduction and commentaries on each of the cantos brilliantly illuminate the text. Translated with Notes and an Introduction by Mark Musa",Moby Dick.,Study War No More: A Selection of Alternatives.,The Custard Kid (Black Cats).,"New Moon (Moon #6). It's in one man's true nature to remain by the side of the woman he loves, rather than live without her in his own universe... Landscape architect Logan Marshall is out for a jog -- in his werewolf form -- when a trap catches his paw. As it saps his strength, he is saved by another werewolf, who -- to Logan's amazement -- is female. Female werewolves aren't supposed to exist. But Rinna is a shapeshifter from another dimension who's traveled through a portal to this world. And the trap that ensnared Logan was set by her former captor, and meant for her.... But as soon as Rinna and Logan touch, an electrifying bond forms between them. Unable to resist his desire for Rinna, in all her many forms, Logan will have to earn her trust, and travel through both dimensions to save her -- and earth -- from the wrath of her enemy....","Tucket's Travels: Francis Tucket's Adventures In The West 1847-1849 (The Tucket Adventures #1-5). Fourteen-year-old Francis is heading west in a wagon train on the Oregon Trail when he's kidnapped by Pawnees. His adventures during the two-year search for his family teach him how to live by the harsh code of the wilderness, and give readers an exciting panoramic vision of the West at a time of settlement and of war with Mexico. Along the way, Francis meets up with Mr. Grimes, a one-armed mountain man, and later rescues Lottie and Billy, children abandoned on the prairie. Together the three encounter bandits, soldiers, storms, eccentric travellers, and discover an ancient treasure. But the real treasure lies at the end of the trail--Tucket's home.",Harrius Potter et Camera Secretorum.,"The Wheel of Darkness (Pendergast #8). A luxury ocean liner on its maiden voyage across the North Atlantic, awash in wealth and decadence... An ancient Tibetan box, its contents unknown, sealed with a terrifying warning... An FBI agent destined to confront what he fears most--himself...","Mercy Watson Goes for a Ride. Mr. and Mrs. Watson's porcine wonder, Mercy, loves nothing more than a ride in the car. It takes a fair amount of nudging and bribing and a ""You are such a good sport, darling"" to get the portly pig out of the driver's seat, but once the convertible is on the road, Mercy loves the feel of the wind tickling her ears and the sun on her snout. One day the Watsons' motoring ritual takes an unexpected turn, however, when their elderly neighbor Baby Lincoln pops up in the backseat in hopes of some ""folly and adventure"" -- and in the chaos that ensues, an exuberant Mercy ends up behind the wheel! Soon there's a policeman on her tail, a struggle for the brake, and a blissfully airborne Mercy. Of course, it's nothing that an extra helping of buttered toast can't fix!",Anne of the Island and Tales of Avonlea.,"The Stories of Eva Luna. Isabel Allende is one of the world's most beloved authors. In 1988, she introduced the world to Eva Luna in a novel of the same name that recounted the adventurous life of a young Latin American woman whose powers as a storyteller bring her friendship and love. Returning to this tale, Allende presents The Stories of Eva Luna,a treasure trove of brilliantly crafted stories. Lying in bed with her European lover, refugee and journalist Rolf Carle, Eva answers hes request for a story ""you have never told anyone before"" with these twenty-three samples of her vibrant artistry. Interweaving the real and the magical, she explores love, vengeance, compassion, and the strenghts of women, creating a world that is at once poingnantly familiar and intriguingly new. Rendered in the sumptuously imagined, uniquely magical style of one of the world's most stunning writers, The Stories of Eva Luna is the conerstone of Allende's work. It is not to be missed by anyone -- whether a devotee of Ms. Allende's","Black Ice (Ice #1). Living paycheck to paycheck in Paris, American book translator Chloe Underwood would give anything for some excitement and passion--even a little danger. So when she's offered a lucrative weekend gig translating at a business conference in a remote chateau, she jumps at the chance to shake things up. Then by chance Chloe discovers her employers are anything but the entrepreneurs they appear, and suddenly she knows far too much. Her clients are illegal arms dealers, and one of them is ordered to kill her. But instead, Bastien Toussaint drags Chloe away, and the next thing she knows she's on the run with the most terrifying and seductive man she's ever met. What were his motives--and would she live long enough to find out?","A War Like No Other: How the Athenians & Spartans Fought the Peloponnesian War. Provocative military historian Victor Davis Hanson has given painstakingly researched & pathbreaking accounts of wars ranging from classical antiquity to the 21st century. Now he juxtaposes an ancient conflict with modern concerns to create his most engrossing work to date, A War Like No Other. Over the course of a generation, the Hellenic poleis of Athens & Sparta fought a bloody conflict that resulted in the collapse of Athens & the end of its golden age. Thucydides wrote the standard history of the Peloponnesian War, which has given readers throughout the ages a vivid & authoritative narrative. But Hanson offers something new: a complete chronological account that reflects the political background of the time, the strategic thinking of the combatants, the misery of battle in multifaceted theaters & insight into how these events echo in the present. He compellingly portrays the ways Athens & Sparta fought on land & sea, in city & countryside, & details their employment of the full sc",Jojo's Bizarre Adventure Tome 5: La dernière onde (Phantom Blood #5).,"Dune Messiah (Dune Chronicles #2). Dune Messiahcontinues the story of the man Muad'dib, heir to a power unimaginable, bringing to completion the centuries-old scheme to create a super-being.""Brilliant...It is all that Dunewas, and maybe a little bit more.""--Galaxy Magazine","The Little Princesses. Once upon a time, in 1930s England, there were two little princesses named Elizabeth and Margaret Rose. Their father was the Duke of York, the second son of King George V, and their Uncle David was the future King of England. We all know how the fairy tale ended: When King George died, ""Uncle David"" became King Edward VIII---who abdicated less than a year later to marry the scandalous Wallis Simpson. Suddenly the little princesses' father was King. The family moved to Buckingham Palace, and ten-year-old Princess Elizabeth became the heir to the crown she would ultimately wear for over fifty years. The Little Princessesshows us how it all began. In the early thirties, the Duke and Duchess of York were looking for someone to educate their daughters, Elizabeth and Margaret, then five- and two-years-old. They already had a nanny---a family retainer who had looked after their mother when she was a child---but it was time to add someone younger and livelier to the household. Enter Marion Cra","How Green Was My Valley. A poignant coming-of-age novel set in a Welsh mining town, Richard Llewellyn's How Green Was My Valleyis a paean to a more innocent age, published in Penguin Modern Classics Growing up in a mining community in rural South Wales, Huw Morgan is taught many harsh lessons - at the kitchen table, at Chapel and around the pit-head. Looking back on the hardships of his early life, where difficult days are faced with courage but the valleys swell with the sound of Welsh voices, it becomes clear that there is nowhere so green as the landscape of his own memory. An immediate bestseller on publication in 1939, How Green Was My Valleyquickly became one of the best-loved novels of the twentieth century. Poetic and nostalgic, it is an elegy to a lost world. Richard Dafydd Vivian Llewellyn Lloyd (1906-1983), better known by his pen name Richard Llewellyn, claimed to have been born in St David's, Pembrokeshire, Wales; after his death he was discovered to have been born of Welsh parents in Hendon, Midd","Who's Afraid of Virginia Woolf?. ""Twelve times a week,"" answered Uta Hagen when asked how often she'd like to play Martha in Who's Afraid of Virginia Woolf? In the same way, audiences and critics alike could not get enough of Edward Albee's masterful play. A dark comedy, it portrays husband and wife George and Martha in a searing night of dangerous fun and games. By the evening's end, a stunning, almost unbearable revelation provides a climax that has shocked audiences for years. With the play's razor-sharp dialogue and the stripping away of social pretense, Newsweek rightly foresaw Who's Afraid of Virginia Woolf? as ""a brilliantly original work of art--an excoriating theatrical experience, surging with shocks of recognition and dramatic fire [that] will be igniting Broadway for some time to come.""","Purity (Dark Coming of Age #1). Handsome young Owen will do anything for love...even if it means murder. From New York Times bestselling author Douglas Clegg comes his classic dark psychological thriller of dangerous obsession and endless love. For fans of Patricia Highsmith, Ruth Rendell, and Gillian Flynn. This short novel is approximately 25,000 words in length or 120 pages if in print. The Dark Coming of Age series books do not need to be read in any specific order -- they are stand-alones built around a theme of ""dark coming of age."" Owen Crites has grown up in the shadow of the Montgomery summer estate and has always been in love with beautiful Jenna Montgomery, who arrives each summer to her family's summer home on Outerbridge Island, just off the New England coast. Now, both of them teenagers, Owen -- the gardener's son -- begins to understand that Jenna is meant for a different life in adulthood than he's destined for -- and he knows that he must somehow keep her with him on the island until she no longer wa","Awake in the Dark: The Best of Roger Ebert. Roger Ebert has been writing film reviews for the Chicago Sun-Timesfor nearly forty years. And during those four decades, his wide knowledge, keen judgment, prodigious energy, and sharp sense of humor have made him America's most celebrated film critic. He was the first such critic to win a Pulitzer Prize--one of just three film critics ever to receive that honor--and the only one to have a star dedicated to him on the Hollywood Walk of Fame. His groundbreaking hit TV show, At the Movies, meanwhile, has made ""two thumbs up"" one of the most coveted hallmarks in the entire industry. No critic alive has reviewed more movies than Roger Ebert, and yet his essential writings have never been collected in a single volume--until now. With Awake in the Dark, both fans and film buffs can finally bask in the best of Ebert's work. The reviews, interviews, and essays collected here present a picture of this indispensable critic's numerous contributions to the cinema and cinephilia. From The Godfathe","The Village of Stepanchikovo. Dostoyevsky said he wrote the Village of Stepanchikovo(1859) for the sheer pleasure of prolonging the adventures of my new hero and enjoying a good laugh at him. This hero is not unlike myself... Dostoyevsky's narrator has been summoned to his uncle Colonel Rostanev's remote country estate in the hope that he will act as decoy and rescue Rostanev's former ward, Nastenka Yezhevikin, from the tyranny of Opiskin, a despot and charlatan who has the whole household under his thumb. Forty-eight hours of explosive comic drama unfold, culminating in a violent confrontation between Opiskin and the ineffectual Rostanev. Dostoyevsky conveys a delight in life's absurdities to rival that of Gogol, yet at the same time in Opiskin, a comic monster of Russian literature, he creates an unflattering portrait of his mentor. Here we recognize the genesis of the characters and the revelatory dramatic scenes of and The Karamazov Brothers. The cover shows a detail from Springby Konstantin Fedorovich Yuon rep","Mutants & Masterminds: RPG. Mutants & Masterminds has been called ""the best, most exciting superhero RPG in years."" It sets ""new standards in design and presentation."" It has won multiple ENnie and Pen & Paper Awards and it appeared on every critic's ""best of"" list for 2002. Now the World's Greatest Super-hero Roleplaying Game is even better! Mutants & Masterminds, Second Edition, takes the best of the original edition and supercharges it to make it the most complete, detailed, and fun super-hero game yet! In this 256-page hardcover with a stunning new cover by Ramon Perez, you'll find a complete roleplaying game that's a perfect starting point for your own comic book adventures. Mutants & Masterminds, Second Edition, has everything you need to create your own super-heroes and villains. It also offers more than a dozen ready-made super-hero archetypes and even more ready-to-use super-villain archetypes, plus two introductory adventures so you can start playing right away. Don't let your super-powers fall behind!","Ensayo sobre la lucidez. Durante las elecciones municipales de una ciudad sin nombre, la mayoria de sus habitantes decide individualmente ejercer su derecho al voto de una manera inesperada. El gobierno teme que ese gesto revolucionario, capaz de socavar los cimientos de una democracia degenerada, sea producto de una conjura anarquista internacional o de grupos extremistas desconocidos. Las cloacas del poder se ponen en marcha: los culpables tienen que ser eliminados. Y si no se hallan, se inventan. Los protagonistas de esta novela, un inspector de policia y la mujer que conservo la vista en la epidemia de luz blanca de ""Ensayo sobre la Ceguera"", dan muestras de la altura moral que los ciudadanos anonimos pueden alcanzar cuando deciden ejercer la libertad. Saramago, un escritor que se ha convertido en la conciencia lucida de una epoca cegada por los mecanismos del poder, lanza una llamada de alerta: <>. Ese dia puede ser hoy.","Arrows of the Queen (Heralds of Valdemar #1). A KINGDOM IMPERILED! Chosen by the Companion Rolan, a mystical horse-like being with powers beyond imagining, Talia, once a run-away, has now become a trainee Herald, destined to become one of the Queen's own elite guard. For Talia has certain awakening talents of the mind that only a Companion like Rolan can truly sense. But as Talia struggles to master her unique abilities, time is running out. For conspiracy is brewing in Valdemar, a deadly treason which could destroy Queen and kingdom. Opposed by unknown enemies capable of both diabolical magic and treacherous assassination, the Queen must turn to Talia and the Heralds for aid in protecting the realm and insuring the future of the Queen's heir, a child already in danger of becoming bespelled by the Queen's own foes!","The Ideology of the Aesthetic. ""The Ideology of the Aesthetic"" presents a history & critique of the concept of the aesthetic throughout modern Western thought. As such, this is a critical survey of modern Western philosophy, focusing in particular on the complex relations between aesthetics, ethics & politics. Eagleton provides a brilliant & challenging introduction to these concerns, as characterized in the work of Kant, Schiller, Schopenhauer, Kierkegaard, Marx, Nietzsche, Freud, Heidegger, Lukacs, Adorno, Habermas & others. Wide in span, as well as morally & politically committed, this is his major work to date. It forms both an original enquiry & an exemplary introduction.","Ulysses S. Grant. The underappreciated presidency of the military man who won the Civil War and then had to win the peace as well As a general, Ulysses S. Grant is routinely described in glowing terms-the man who turned the tide of the Civil War, who accepted Lee's surrender at Appomattox, and who had the stomach to see the war through to final victory. But his presidency is another matter-the most common word used to characterize it is ""scandal."" Grant is routinely portrayed as a man out of his depth, whose trusting nature and hands-off management style opened the federal coffers to unprecedented plunder. But that caricature does not do justice to the realities of Grant's term in office, as Josiah Bunting III shows in this provocative assessment of our eighteenth president. Grant came to Washington in 1869 to lead a capital and a country still bitterly divided by four years of civil war. His predecessor, Andrew Johnson, had been impeached and nearly driven from office, and the radical Republicans in Co","The Rescue (Guardians of Ga'Hoole #3). Ever since Soren was kidnapped and taken to the St. Aegolius School for Orphaned Owls, he has longed to see his sister, Eglantine, again. Now Eglantine is back in Soren's life, but she's been through an ordeal too terrible for words. And Ezylryb, Soren's mentor, has disappeared. Deep within Soren's gizzard, something more powerful than knowledge tells him there's a connection between these mysterious events. In order to rescue Ezylryb, Soren must embark upon a perilous quest. It will bring him face-to-face with a force more dangerous than anything the rulers of St. Aggie's could have devised-and a truth that threatens to destroy the owl kingdom.",Writing Degree Zero.,"The Gray-Eyed Goddess (Tales from the Odyssey #4). Retells a part of the Odyssey in which Odysseus continues his journey home as his wife, Penelope and son, Telemachus are busy warding off men who wish to marry Penelope, until Telemachus asks a stranger for help.","Reversible Errors (Kindle County Legal Thriller #6). A super-charged, exquisitely suspenseful novel about a vicious triple murder and the man condemned to die for it Rommy ""Squirrel"" Gandolph is a Yellow Man, an inmate on death row for a 1991 triple murder in Kindle County. His slow progress toward certain execution is nearing completion when Arthur Raven, a corporate lawyer who is Rommy's reluctant court-appointed representative, receives word that another inmate may have new evidence that will exonerate Gandolph. Arthur's opponent in the case is Muriel Wynn, Kindle County's formidable chief deputy prosecuting attorney, who is considering a run for her boss's job. Muriel and Larry Starczek, the original detective on the case, don't want to see Rommy escape a fate they long ago determined he deserved, for a host of reasons. Further complicating the situation is the fact that Gillian Sullivan, the judge who originally found Rommy guilty, is only recently out of prison herself, having served time for taking bribes. Scott Turow's compelling","Market Forces. A coup in Cambodia. Guns to Guatemala. For the men and women of Shorn Associates, opportunity is calling. In the superheated global village of the near future, big money is made by finding the right little war and supporting one side against the other-in exchange for a share of the spoils. To succeed, Shorn uses a new kind of corporate gladiator: sharp-suited, hard-driving gunslingers who operate armored vehicles and follow a Samurai code. And Chris Faulkner is just the man for the job. He fought his way out of London's zone of destitution. And his kills are making him famous. But unlike his best friend and competitor at Shorn, Faulkner has a side that outsiders cannot see: the side his wife is trying to salvage, that another woman-a porn star turned TV news reporter-is trying to exploit. Steeped in blood, eyed by common criminals looking for a shot at fame, Faulkner is living on borrowed time. Until he's given one last shot at getting out alive. . . .","Brave New World Revisited. When the novel Brave New Worldfirst appeared in 1932, its shocking analysis of a scientific dictatorship seemed a projection into the remote future. Here, in one of the most important and fascinating books of his career, Aldous Huxley uses his tremendous knowledge of human relations to compare the modern-day world with his prophetic fantasy. He scrutinizes threats to humanity, such as overpopulation, propaganda, and chemical persuasion, and explains why we have found it virtually impossible to avoid them. Brave New World Revisitedis a trenchant plea that humankind should educate itself for freedom before it is too late. Brave New World Revisted(first published in 1958) is not a reissue or revision of 0060850523 Brave New World. Brave New Worldis a novel, whereas Brave New World Revistedis a nonfiction exploration of the themes in Brave New World.","The Odes. 'What Pindar catches is the joy beyond ordinary emotions as it transcends and transforms them' --C. M. Bowra Arguably the greatest Greek lyric poet, Pindar (518-438 B.C.) was a controversial figure in fifth-century Greece--a conservative Boiotian aristocrat who studied in Athens and a writer on physical prowess whose interest in the Games was largely philosophical. Pindar's Epinician Odes--choral songs extolling victories in the Games at Olympia, Delphi, Nemea and Korinth--cover the whole spectrum of the Greek moral order, from earthly competition to fate and mythology. But in C. M. Bowra's clear translation his one central image stands out--the successful athlete transformed and transfigured by the power of the gods. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and across genres and disciplines. Rea",The Last Castle.,"The Wedding Clause. A GAME OF CHANCEMolly Conwell's life has been quite unremarkable-until she learns the startling details of her late employer Lady Woodhart's will: The sum of 30,000 pounds will be divided equally between the deceased's grandson, Viscount ""Hart"" Woodhart, and Molly if they wed. If one or the other fails to appear, then the present party receives the entire fortune. Molly has no intention to wed Hart, but if she inherits the money she could help her brother regain his proper place in Society. Besides, she's convinced that her prospective groom, who has always accused her of being a fortune hunter, will not present himself. As Molly embarks on a daring charade, she discovers a fierce opponent in Hart -and an even fiercer desire for this dangerously handsome man who may prove impossible to resist...","Men Are from Mars Women Are from Venus. The most well-know, long-lived, and tried-and-tested relationships guide ever, the phenomenal #1 New York Times bestseller Men Are From Mars, Women Are From Venus is now available for the first time ever as an audio book. In this classic guide to understanding the opposite sex, Dr. John Gray provides a practical and proven way for men and women to improve their communication by acknowledging the differences between their needs, desires, and behaviors. No other relationship guide on the market will give you the same level of evidence-based insight sure to help you strengthen and nurture your relationships for years to come.","All Tomorrow's Parties (Bridge #3). Although Colin Laney (from Gibson's earlier novel Idoru) lives in a cardboard box, he has the power to change the world. Thanks to an experimental drug that he received during his youth, Colin can see ""nodal points"" in the vast streams of data that make up the worldwide computer network. Nodal points are rare but significant events in history that forever change society, even though they might not be recognizable as such when they occur. Colin isn't quite sure what's going to happen when society reaches this latest nodal point, but he knows it's going to be big. And he knows it's going to occur on the Bay Bridge in San Francisco, which has been home to a sort of SoHo-esque shantytown since an earthquake rendered it structurally unsound to carry traffic. Although All Tomorrow's Partiesincludes characters from two of Gibson's earlier novels, it's not a direct sequel to either. It's a stand-alone book.--Craig E. Engler","The Big Bing: Black Holes of Time Management Gaseous Executive Bodies Exploding Careers and Other Theories on the Origins of the Business Universe. A corporate mole's-eye view of the society in which we all live and toil, creating one of the most entertaining, thought provoking, and just plain funny bodies of work in contemporary letters. Stanley Bing knows whereof he speaks. He has lived the last two decades working inside a gigantic multinational corporation, kicking and screaming all the way up the ladder. He has seen it all -- mergers, acquisitions, layoffs, the death of the three-martini lunch -- and has himself been painfully re-engineered a number of times. He has eaten and drunk way too much, stayed in hotels far too good for him, waited for limousines in the pouring rain, and enjoyed it all. Sort of. Most importantly, Bing has seen management at its best and worst, and has practiced both as he made the transition from an inexperienced player who hated pompous senior management to a polished strategist who kind of sees its point of view now and then. In one essential volume, here is all you need to know to master your care","I'm Too Young To Be Seventy. The beloved bestselling author of Forever Fiftyand Suddenly Sixtynow tackles the ins and outs of becoming a septuagenarian with her usual wry good humor. Fans of Judith Viorst's funny, touching, and wise poems about turning thirty, forty, fifty, and sixty will love this new volume for the woman who deeply believes she is too young to be seventy, ""too young in my heart and my soul, if not in my thighs."" Viorst explores, among the many other issues of this stage of life, the state of our sex lives and teeth, how we can stay married though thermostatically incompatible, and the joys of grandparenthood and shopping. Readers will nod with rueful recognition when she asks, ""Am I required to think of myself as a basically shallow woman because I feel better when my hair looks good?,"" when she presses a few helpful suggestions on her kids because ""they may be middle aged, but they're still my children,"" and when she graciously -- but not too graciously -- selects her husband's next mate in a","The Brief and Frightening Reign of Phil. From the New York Timesbestselling author of Tenth of December, a 2013 National Book Award Finalist for Fiction. In a profoundly strange country called Inner Horner, large enough for only one resident at a time, citizens waiting to enter the country fall under the rule of the power-hungry and tyrannical Phil, setting off a chain of injustice and mass hysteria.An Animal Farmfor the 21st century, this is an incendiary political satire of unprecedented imagination, spiky humor, and cautionary appreciation for the hysteric in everyone. Over six years in the writing, and brilliantly and beautifully packaged, this novella is Saunders' first stand-alone, book-length work--and his first book for adults in five years.","Les Misérables. It has been said that Victor Hugo has a street named after him in virtually every town in France. A major reason for the singular celebrity of this most popular and versatile of the great French writers is Les Miserables (1862). In this story of the trials of the peasant Jean Valjean--a man unjustly imprisoned, baffled by destiny, and hounded by his nemesis, the magnificently realized, ambiguously malevolent police detective Javert--Hugo achieves the sort of rare imaginative resonance that allows a work of art to transcend its genre. Les Miserables is at once a tense thriller that contains one of the most compelling chase scenes in all literature, an epic portrayal of the nineteenth-century French citizenry, and a vital drama--highly particularized and poetic in its rendition but universal in its implications--of the redemption of one human being.","Death Of A Blue Movie Star (Rune #2). From the author of ""The Devil's Teardrop"" and ""The Bone Collector"" comes a revised edition of Deaver's novel about an aspiring filmmaker named Rune who witnesses the explosion of an adult theater and decides to make a documentary film about adult films. The book has been revised by the author and features new cover art.","Vision of Tarot (Tarot #2). The wanderer-monk Paul is trapped in a nightmare of dragons, demons, and spectacular lusts as the shimmering Animation curtain storms across the worldscape, changing fantasy into hideous reality.","After Henry. In her latest forays into the American scene, Joan Didion covers ground from Washington to Los Angeles, from a TV producer's gargantuan ""manor"" to the racial battlefields of New York's criminal courts. At each stop she uncovers the mythic narratives that elude other observers: Didion tells us about the fantasies the media construct around crime victims and presidential candidates; she gives us new interpretations of the stories of Nancy Reagan and Patty Hearst; she charts America's rollercoaster ride through evanescent booms and hard times that won't go away. A bracing amalgam of skepticism and sympathy, After Henryis further proof of Joan Didion's infallible radar for the true spirit of our age.","Falling Man. There is September 11 and then there are the days after, and finally the years. Falling Man is a magnificent, essential novel about the event that defines turn-of-the-century America. It begins in the smoke and ash of the burning towers and tracks the aftermath of this global tremor in the intimate lives of a few people. First there is Keith, walking out of the rubble into a life that he'd always imagined belonged to everyone but him. Then Lianne, his estranged wife, memory-haunted, trying to reconcile two versions of the same shadowy man. And their small son Justin, standing at the window, scanning the sky for more planes. These are lives choreographed by loss, grief and the enormous force of history.","Star Wars: The Approaching Storm. A prequel to the upcoming movie, ""Star Wars(: Episode II, "" this exciting Jedi adventure--written by beloved ""Star Wars"" veteran Alan Dean Foster--features a new character from the new film. ""The Approaching Storm"" opens as Obi-Wan Kenobi and Anakin Skywalker are dispatched to the planet of Anision to deal with border disputes.",Nancy's Mysterious Letter (Nancy Drew Mystery Stories #8). Nancy receives a letter informing her that she is heir to a fortune. This story tells of her search for another Nancy Drew.,"In the Kitchen with Rosie: Oprah's Favorite Recipes. Here are fifty favorite recipes created by Rosie Daley, Oprah's cook - dishes that Oprah loves because they have helped her lose weight and feel good. The recipes are light and low in fat and, at the same time, enormously satisfying and tasty.' to 'New York Times #1 Best Seller Rosie Daley gem of a cookbook now comes to paperback. Here are fifty favorite recipes that Rosie cooked for Oprah. The dishes are light and low in fat and, at the same time, enormously satisfying and tasty. Homemade pizzas, ""Un-Fried Favorites"" (catfish, French fries, chicken), paella, sweet potato pie--these are marvelous, healthy recipes, as Oprah testifies in her introduction and in her foreword to each chapter. Daley also offers helpful hints about seasonings, substitutions, and pretty presentations, which all help to make her food so temptingly delicious",The Pusher (87th Precinct #3). Most suicides don't realise the headaches they cause... An 87th Precinct novel,"Norse Mythology: A Guide to the Gods Heroes Rituals and Beliefs. Norse Mythologyexplores the magical myths and legends of Norway, Sweden, Denmark, Iceland and Viking-Age Greenland and outlines the way the prehistoric tales and beliefs from these regions that have remained embedded in the imagination of the world. The book begins with an Introduction that helps put Scandinavian mythology in place in history, followed by a chapter that explains the meaning of mythic time, and a third section that presents in-depth explanations of each mythological term. These fascinating entries identify particular deities and giants, as well as the places where they dwell and the varied and wily means by which they forge their existence and battle one another. We meet Thor, one of the most powerful gods, who specializes in killing giants using a hammer made for him by dwarfs, not to mention myriad trolls, ogres, humans and strange animals. We learn of the ongoing struggle between the gods, who create the cosmos, and the jotnar, or giants, who aim to destroy it. In th","Democracy. Inez Victor knows that the major casualty of the political life is memory. But the people around Inez have made careers out of losing track. Her senator husband wants to forget the failure of his last bid for the presidency. Her husband's handler would like the press to forget that Inez's father is a murderer. And, in 1975, the year in which much of this bitterly funny novel is set, America is doing its best to lose track of its one-time client, the lethally hemorrhaging republic of South Vietnam.As conceived by Joan Didion, these personages and events constitute the terminal fallout of democracy, a fallout that also includes fact-finding junkets, senatorial groupies, the international arms market, and the Orwellian newspeak of the political class. Moving deftly from Honolulu to Jakarta, between romance, farce, and tragedy, Democracyis a tour de force from a writer who can dissect an entire society with a single phrase.","Cyrano de Bergerac. This is Edmond Rostand's immortal play in which chivalry and wit, bravery and love are forever captured in the timeless spirit of romance. Set in Louis XIII's reign, it is the moving and exciting drama of one of the finest swordsmen in France, gallant soldier, brilliant wit, tragic poet-lover with the face of a clown. Rostand's extraordinary lyric powers gave birth to a universal hero--Cyrano de Bergerac--and ensured his own reputation as author of one of the best-loved plays in the literature of the stage. This translation, by the American poet Brian *****, is nearly as famous as the original play itself, and is generally considered to be one of the finest English verse translations ever written.","Final Payments. When Isabel Moore's father dies, she finds herself, at the age of thirty, suddenly freed from eleven years of uninterrupted care for a helpless man. With all the patterns of her life suddenly rendered meaningless, she turns to childhood friends for support, gets a job, and becomes involved with two very different men. But just as her future begins to emerge, her past throws up a daunting challenge. A moving story of self-reinvention, Final Paymentsis a timeless exploration of the nature of friendship, desire, guilt, and love.","The Gunslinger (The Dark Tower #1). In the first book of this brilliant series, Stephen King introduces readers to one of his most enigmatic heroes, Roland of Gilead, The Last Gunslinger. He is a haunting figure, a loner on a spellbinding journey into good and evil. In his desolate world, which frighteningly mirrors our own, Roland pursues The Man in Black, encounters an alluring woman named Alice, and begins a friendship with the Kid from Earth called Jake. Both grippingly realistic and eerily dreamlike, The Gunslingerleaves readers eagerly awaiting the next chapter.","Crossroads and Other Tales of Valdemar (Tales of Valdemar #3). An original short fiction anthology set in Mercedes Lackey's bestselling world of Valdemar-featuring heroic Heralds and their horselike companions-and including an all-new novella by Lackey herself, as well as stories by other masters of the fantasy genre. This anthology includes: Introductionby Mercedes Lackey Transmutationby Larry Dixon The Feast of the Childrenby Nancy Asire Death in Keenspur Houseby Richard Lee Byers Dawn of Sorrowsby Brenda Cooper Horse of Airby Rosemary Edghill A Change of Heartby Sarah A. Hoyt and Kate Paulk All the Ages of Manby Tanya Huff War Cryby Michael Longcor Strength and Honorby Ben Ohlander The Blue Coatby Fiona Patton Safe and Soundby Stephanie Shaver Song for Two Voicesby Janni Lee Simner Finding Elvidaby Mickey Zucker Reichert Darkwall's Ladyby Judith Tarr Naught but Dutyby Michael Z. Williamson Landscape of the Imaginationby Mercedes Lackey",The Blue Flower.,The Franco-Prussian War.,"Longitude: The True Story of a Lone Genius Who Solved the Greatest Scientific Problem of His Time. Anyone alive in the eighteenth century would have known that ""the longitude problem"" was the thorniest scientific dilemma of the day--and had been for centuries. Lacking the ability to measure their longitude, sailors throughout the great ages of exploration had been literally lost at sea as soon as they lost sight of land. Thousands of lives, and the increasing fortunes of nations, hung on a resolution. The scientific establishment of Europe--from Galileo to Sir Issac Newton--had mapped the heavens in both hemispheres in its certain pursuit of a celestial answer. In stark contrast, one man, John Harrison, dared to imagine a mechanical solution--a clock that would keep precise time at sea, something no clock had ever been able to do on land. Longitudeis a dramatic human story of an epic scientific quest and Harrison's forty-year obsession with building his perfect timekeeper, known today as the chronometer. Full of heroism and chicanery, it is also a fascinating brief history of astron","Enchantment. As one of the most consistently exciting writers to emerge in the last twenty-five years, Orson Scott Card has been honored with numerous awards, immersing readers in dazzling worlds only he could create. Now, in Enchantment, Card works his magic as never before, transforming the timeless story of Sleeping Beauty into an original fantasy brimming with romance and adventure. The moment Ivan stumbled upon a clearing in the dense Carpathian forest, his life was forever changed. Atop a pedestal encircled by fallen leaves, the beautiful princess Katerina lay still as death. But beneath the foliage a malevolent presence stirred and sent the ten-year-old Ivan scrambling for the safety of Cousin Marek's farm. Now, years later, Ivan is an American graduate student, engaged to be married. Yet he cannot forget that long-ago day in the forest--or convince himself it was merely a frightened boy's fantasy. Compelled to return to his native land, Ivan finds the clearing just as he left it. This time","Rebellion (The MacGregors #0.1). Scotland, 1745. Against the bloody background of the Battle of Culloden, another war was waged and won the price was honor, the victory, love. Scottish beauty Serena MacGregor's hatred of all English began as a child when she watched as a band of Englishmen attacked her mother. Her brother's friend Brigham Langston was no exception to Serena's loathing despite his supposed loyalty to the Scottish causeand his good looks. Although Brigham eventually proves himself worthy of the MacGregor family's respect, Serena is still reluctant to abandon her hatred for him and his heritage. But Brigham has other plans. Serena has captivated him with her beauty, her passion for life and commitment to her beliefs and he refuses to let her antagonistic attitude keep him from winning her. And Serena must learn to open her mind as Brigham opens his heart to see the true love awaiting her. ""","The Piano Shop on the Left Bank: Discovering a Forgotten Passion in a Paris Atelier. Walking his two young children to school every morning, Thad Carhart passes an unassuming little storefront in his Paris neighborhood. Intrigued by its simple sign -- Desforges Pianos -- he enters, only to have his way barred by the shop's imperious owner. Unable to stifle his curiosity, he finally lands the proper introduction, and a world previously hidden is brought into view. Luc, the atelier's master, proves an indispensable guide to the history and art of the piano. Intertwined with the story of a musical friendship are reflections on how pianos work, their glorious history, and stories of the people who care for them, from amateur pianists to the craftsmen who make the mechanism sing. The Piano Shop on the Left Bankis at once a beguiling portrait of a Paris not found on any map and a tender account of the awakening of a lost childhood passion. Praise for The Piano Shop on the Left Bank: [Carhart's] writing is fluid and lovely enough to lure the rustiest plunker back to the piano","The Voyage of the “Dawn Treader” (The Chronicles of Narnia #3). Lucy and Edmund, with their dreadful cousin Eustace, get magically pulled into a painting of a ship at sea. That ship is the Dawn Treader, and on board is Caspian, King of Narnia. He and his companions, including Reepicheep, the valiant warrior mouse, are searching for seven lost lords of Narnia, and their voyage will take them to the edge of the world. Their adventures include being captured by slave traders, a much-too-close encounter with a dragon, and visits to many enchanted islands, including the place where dreams come true. This edition follows the original numbering scheme. More recent publishers have re-numbered the volumes so that the books are ordered chronologically. This was reportedly the author's preference. Other editions number this book as #5. Please respect the title as printed.","Sixty Days and Counting (Science in the Capital #3). By the time Phil Chase is elected president, the world's climate is far on its way to irreversible change. Food scarcity, housing shortages, diminishing medical care, and vanishing species are just some of the consequences. The erratic winter the Washington, D.C., area is experiencing is another grim reminder of a global weather pattern gone haywire: bone-chilling cold one day, balmy weather the next. But the president-elect remains optimistic and doesn't intend to give up without a fight. A maverick in every sense of the word, Chase starts organizing the most ambitious plan to save the world from disaster since FDR-and assembling a team of top scientists and advisers to implement it. For Charlie Quibler, this means reentering the political fray full-time and giving up full-time care of his young son, Joe. For Frank Vanderwal, hampered by a brain injury, it means trying to protect the woman he loves from a vengeful ex and a rogue ""black ops"" agency not even the president can control-a",Butch/Femme.,"Goodnight Nobody. New York Times bestselling author Jennifer Weiner's unforgettable story of adjusting to suburbia--and all the surprises hidden behind its doors. For Kate Klein, a semi-accidental mother of three, suburbia has been full of unpleasant surprises. Her once-loving husband is hardly ever home. The supermommies on the playground routinely snub her. Her days are spent carpooling and enduring endless games of Candy Land, and at night, most of her orgasms are of the do-it-yourself variety. When a fellow mother is murdered, Kate finds that the unsolved mystery is the most exciting thing to happen in Upchurch, Connecticut, since her neighbors broke ground for a guesthouse and cracked their septic tank. Even though the local police chief warns her that crime-fighting's a job best left to the professionals, Kate launches an unofficial investigation -- from 8:45 to 11:30 on Mondays, Wednesdays, and Fridays, when her kids are in nursery school. As Kate is drawn deeper into the murdered woman's past, s","The Serpent and the Rainbow. A scientific investigation and personal adventure story about zombis and the voudoun culture of Haiti by a Harvard scientist. In April 1982, ethnobotanist Wade Davis arrived in Haiti to investigate two documented cases of zombis--people who had reappeared in Haitian society years after they had been officially declared dead and had been buried. Drawn into a netherworld of rituals and celebrations, Davis penetrated the vodoun mystique deeply enough to place zombification in its proper context within vodoun culture. In the course of his investigation, Davis came to realize that the story of vodoun is the history of Haiti--from the African origins of its people to the successful Haitian independence movement, down to the present day, where vodoun culture is, in effect, the government of Haiti's countryside. The Serpent and the Rainbowcombines anthropological investigation with a remarkable personal adventure to illuminate and finally explain a phenomenon that has long fascinated Americans","Black Elk Speaks: Being the Life Story of a Holy Man of the Oglala Sioux. The most important aspect of this book is upon the contemporary generation of young Indians who have been aggressively searching for roots of their own in the structure of universal reality. They look to it for spiritual guidance, for sociological identity, for political insight, and the affirmation of the continuing substance of Indian tribal life.","A Map of the World. One unremarkable June morning, Alice Goodwin is, as usual, trying to keep in check both her temper and her tendency to blame herself for her family's shortcomings. When the Goodwins took over the last dairy farm in the small Midwestern town of Prairie Center, they envisioned their home a self-made paradise. But these days, as Alice is all too aware, her elder daughter Emma is prone to inexplicable fits of rage, her husband Howard distrusts her maternal competence, and Prairie Center's tight-knit suburban community shows no signs of warming to ""those hippies who think they can run a farm."" A loner by nature, Alice is torn between a yearning for solitude coupled with a deep need to be at the center of a perfect family. On this particular day, Emma has started the morning with a violent tantrum, her little sister Claire is eating pennies, and it is Alice's turn to watch her neighbor's two small girls as well as her own. She absentmindedly steals a minute alone that quickly becomes ten: ti",More Milly Molly Mandy.,"The Full Cupboard of Life (No. 1 Ladies' Detective Agency #5). New York Times best-selling author Alexander McCall Smith's critically acclaimed No. 1 Ladies' Detective Agency series continues in this engaging book that won the first ever Saga Award for Wit, given to the wittiest British book of the year. Mma Ramotswe has been engaged to Mr. J.L.B. Matekoni for quite some time, and they still have no wedding date. But she doesn't want to be too pushy, for Mr. J.L.B. Matekoni has much on his mind. Mma Potokwani, who runs the orphan farm, has tricked him into performing a parachute jump to benefit charity. While Mr. J.L.B. Matekoni tries to wiggle out of his responsibility, Mma Ramotswe keeps busy investigating four men, all who wish to marry a very wealthy woman. What exactly are their intentions? The cupboard of life is full indeed in this charming, gently funny novel that vibrantly captures the fascinating culture and landscape of Botswana.",The Spenser Collection: Volume I (Spenser #27-28).,Montaillou village occitan de 1294 à 1324.,Tallchief For Keeps (The Tallchiefs #3).,"The Edge of Honor. A man on the brink of destiny... It is the height of the Vietnam War and young Lt. Brian Holcomb is about to embark on an eight-month tour of duty that will bring him one step away from commanding his own ship. A woman tempted by desire... On the homefront, his beautiful wife Maddy is lonely and confused-tantalized by a seductive stranger and an act of betrayal every Navy man dreads, even more than an enemy's face. A ship at war with itself... Aboard the guided-missile frigate USS John Bell Hood, he will witness a ship spinning in a tidal pool of recklessness-its crew wasted by drugs, its brass losing its grip on command. The Edge of Honor And now, as the Hood steams towards an explosive showdown with North Vietnam's killer MiGs, he will be forced to make the most agonizing choice of his life-one that could make his career...or damn his soul. With his stunning new thriller, The Edge of Honor, P.T. Deutermann unfurls at full display the mastery he hinted at so brilliantly with his debut",Fat Pig.,Complete Poems (Library of Classic Poets).,"Men Are from Mars Women Are from Venus. Once upon a time Martians and Venusians met, fell in love, and had happy relationships together because they respected and accepted their differences. Then they came to Earth and amnesia set in: they forgot they were from different planets. Based on years of successful counseling of couples and individuals, Men Are from Mars, Women Are from Venushas helped millions of couples transform their relationships. Now viewed as a modern classic, this phenomenal book has helped men and women realize how different they really are and how to communicate their needs in such a way that conflict doesn't arise and intimacy is given every chance to grow!!!!","Up Country. The last thing Paul Brenner wanted to do was return to work for the Army's Criminal Investigative Division, an organization that thanked him for his many years of dedicated service by forcing him into early retirement. But when his former boss calls in a career's worth of favors, Paul finds himself investigating a murder that took place back in Vietnam thirty years before. Now, returning to a time and place that still haunts him, Paul is swept up in the battle of his life as he struggles to find justice.","You Come Too: Favorite Poems for Readers of All Ages. A feast for lovers of American literature-the work of our greatest poet, redesigned and relaunched for a new generation of readers No poet is more emblematically American than Robert Frost. From ""The Road Not Taken"" to ""Stopping by Woods on a Snowy Evening,"" he refined and even defined our sense of what poetry is and what it can do. T. S. Eliot judged him ""the most eminent, the most distinguished Anglo-American poet now living,"" and he is the only writer in history to have been awarded four Pulitzer Prizes. Henry Holt is proud to announce the republication of four editions of Frost's most beloved work for a new generation of poets and readers. You Come Too A collection of poems selected by Frost himself to be read and enjoyed by all readers, young and old.","Many Lives Many Masters: The True Story of a Prominent Psychiatrist His Young Patient and the Past Life Therapy That Changed Both Their Lives. The true story of a prominent psychiatrist, his young patient, and the past-life therapy that changed both their lives. As a traditional psychotherapist, Dr. Brian Weiss was astonished and skeptical when one of his patients began recalling past-life traumas that seemed to hold the key to her recurring nightmares and anxiety attacks. His skepticism was eroded, however, when she began to channel messages from the space between lives, which contained remarkable revelations about Dr. Weiss' family and his dead son. Using past-life therapy, he was able to cure the patient and embark on a new, more meaningful phase of his own career.","The Client. In a weedy lot on the outskirts of Memphis, two boys watch a shiny Lincoln pull up to the curb...Eleven-year-old Mark Sway and his younger brother were sharing a forbidden cigarette when a chance encounter with a suicidal lawyer left Mark knowing a bloody and explosive secret: the whereabouts of the most sought-after dead body in America. Now Mark is caught between a legal system gone mad and a mob killer desperate to cover up his crime. And his only ally is a woman named Reggie Love, who has been a lawyer for all of four years. Prosecutors are willing to break all the rules to make Mark talk. The mob will stop at nothing to keep him quiet. And Reggie will do anything to protect her client --even take a last, desperate gamble that could win Mark his freedom... or cost them both their lives.",Bill Gates: Computer Legend (Famous Lives).,"Inventing America: Jefferson's Declaration of Independence. From one of America's foremost historians, Inventing America compares Thomas Jefferson's original draft of the Declaration of Independence with the final, accepted version, thereby challenging many long-cherished assumptions about both the man and the document. Although Jefferson has long been idealized as a champion of individual rights, Wills argues that in fact his vision was one in which interdependence, not self-interest, lay at the foundation of society.","El perfume: Historia de un asesino. Jean-Baptiste Grenouille tiene su marca de nacimiento: no despide ningun olor. Al mismo tiempo posee un olfato prodigioso que le permite percibir todos los olores del mundo. Desde la miseria en que nace, el protagonista escala posiciones sociales convirtiendose en un afamado perfumista. Crea perfumes capaces de hacerle pasar inadvertido o inspira simpatia, amor... Para obtener estas formulas debe asesinar a jovenes muchachas virgenes, obtener fluidos corporales y licuar sus olores intimos. Su arte se convierte en una suprema e inquietante prestidigitacion.","The Heart Is a Lonely Hunter. An alternate cover for this ISBN can be found . Carson McCullers' prodigious first novel was published to instant acclaim when she was just twenty-three. Set in a small town in the middle of the deep South, it is the story of John Singer, a lonely deaf-mute, and a disparate group of people who are drawn towards his kind, sympathetic nature. The owner of the cafe where Singer eats every day, a young girl desperate to grow up, an angry drunkard, a frustrated black doctor: each pours their heart out to Singer, their silent confidant, and he in turn changes their disenchanted lives in ways they could never imagine. Contains Chronology, list of Further Reading and Notes.",The Buddha of Suburbia.,The Brothers Karamazov.,"The Progress of Love. WINNER OF THE NOBEL PRIZE IN LITERATURE 2013 A divorced woman returns to her childhood home where she confronts the memory of her parents' confounding yet deep bond. The accidental near-drowning of a child exposes the fragility of the trust between children and parents. A young man, remembering a terrifying childhood incident, wrestles with the responsibility he has always felt for his younger brother. In these and other stories Alice Munro proves once again a sensitive and compassionate chronicler of our times. Drawing us into the most intimate corners of ordinary lives, she reveals much about ourselves, our choices, and our experiences of love.","Bite Me!: An Unofficial Guide to the World of Buffy the Vampire Slayer. The grisly adventures of Buffy the Vampire Slayer is watched religiously every week on Channel 4 by an ever-growing army of vamp fanatics. The star of the show, Sarah Michelle Gellar is only 24, but she already has to her credit five films, two soap operas and a global hit-TV show. Buffy fans up and down the country thirst for details about Gellar's life, and this biography will undoubtedly quench that thirst. It's filled with dozens of exclusive photos and original information on every aspect of her career. BITE ME! spotlights Sarah's role in the show and features entertaining commentary on each episode, as well as background information about the stories in them.","Howl and Other Poems. The prophetic poem that launched a generation when it was first published in 1956 is here presented in a commemorative fortieth Anniversary Edition. When the book arrived from its British printers, it was seized almost immediately by U.S. Customs, and shortly thereafter the San Francisco police arrested its publisher and editor, Lawrence Ferlinghetti, together with City Lights Bookstore manager Shigeyoshi Murao. The two of them were charged with disseminating obscene literature, and the case went to trial in the municipal court of Judge Clayton Horn. A parade of distinguished literary and academic witnesses persuaded the judge that the title poem was indeed not obscene and that it had ""redeeming social significance."" Thus was Howl & Other Poems freed to become the single most influential poetic work of the post-World War II era, with over 900,000 copies now in print.""","South of the Border West of the Sun. Born in 1951 in an affluent Tokyo suburb, Hajime - beginningin Japanese - has arrived at middle age wanting for almost nothing. The postwar years have brought him a fine marriage, two daughters, and an enviable career as the proprietor of two jazz clubs. Yet a nagging sense of inauthenticity about his success threatens Hajime's happiness. And a boyhood memory of a wise, lonely girl named Shimamoto clouds his heart. In South of the Border, West of the Sun, the simple arc of a man's life - with its attendant rhythms of success and disappointment - becomes the exquisite literary tableau of Haruki Murakami's most haunting work. When Shimamoto shows up one rainy night, now a breathtaking beauty with a secret from which she is unable to escape, the fault lines of doubt in Hajime's quotidian existence begin to give way. And the details of stolen moments past and present - a Nat King Cole melody, a face pressed against a window, a handful of ashes drifting downriver to the sea - threaten to un","Rabia. Un adolescente al borde de la locura toma veinticuatro rehenes en un colegio. Los intentos de encontrar una salida pacifica por parte del profesorado y la policia resultan vanos. Mientras, los jovenes retenidos se contagian gradualmente del frenesi de violencia que les impone su captor. Cada palabra, cada acto, se convierten en descarnadas acusaciones contra un sistema de ensenanza corrupto y un modelo de familia basado en la hipocresia, que obligan a los jovenes a reprimir sus sentimientos para convertirlos en carnaza de una sociedad que les devorara implacablemente...","Wookiee Cookies: A Star Wars Cookbook. Boba Fett-Uccine and Princess Leia Danish Dos are just the beginning when the Force is with you in the kitchen. Wookiee Cookiesis your invitation to fine culinary experiences in the Star Warsframe of mind. From C-3PO Pancakes to Jedi Juice Bars, this intergalactic Star Warscookbook features healthy snacks, delicious dishes, sweet treats, and easy main courses no Rebel can resist. With hilarious photos and safety tips for cooking on Earth as well as in most space stations, Wookiee Cookies even includes a sheet of shiny Star Warsstickers. Age is no issue when it comes to Star Warscuisine-kids as well as adults will have a great time with this book. Whether you drove to your first Star Warsflick or just had your fifth birthday, there's no reason you can't whip up some Crazy Cantina Chili at near light speed.","You Bright and Risen Angels. In the jungles of South America, on the ice fields of Alaska, the plains of the Midwest, and the streets of San Francisco, a fearsome battle rages. The insects are vying for world domination; the inventors of electricity stand in evil opposition. Bug , a young man, rebels against his own kind and joins forces with the insects. Wayne, a thug, allies himself with the malevolent forces of electricity and vows to assassinate the preying mantis who tends bar in Oregon. A brusque La Pasionara with the sprightly name of Millie leads an intrepid band of revolutionaries. You Bright and Risen Angelsis the work of an extraordinary imagination. In this free-wheeling novel of epic proportions, William T. Vollmannhas crafted a biting, hilarious satire of history, technology, politics, and misguided love.","Play Dirty. #1 New York Timesbestselling author Sandra Brown is back with a gripping story of obsession and its deadly consequences.After five long years in federal prison, Griff Burkett is a free man. But the disgraced Cowboys quarterback can never return to life as he knew it before he was caught cheating. In a place where football is practically a religion, Griff committed a cardinal sin, and no one is forgiving. Foster Speakman, owner and CEO of SunSouth Airlines, and his wife, Laura, are a golden couple. Successful and wealthy, they lived a charmed life before fate cruelly intervened and denied them the one thing they wanted most -- a child. It's said that money can't buy everything. But it can buy a disgraced football player fresh out of prison and out of prospects. The job Griff agrees to do for the Speakmans demands secrecy. But he soon finds himself once again in the spotlight of suspicion. An unsolved murder comes back to haunt him in the form of his nemesis, Stanley Rodarte, who has m",Kate Vaiden.,"Zen in the Art of Writing: Essays on Creativity. ""Bradbury, all charged up, drunk on life, joyous with writing, puts together nine past essays on writing and creativity and discharges every ounce of zest and gusto in him.""--Kirkus Reviews P""Zen and the Art of Writingis purely and simply Bradbury's love song to his craft.""--Los Angeles Times","We'll Meet Again. with the dramatic story of two women, best friends, one of whom is charged - and convicted - of a murder the other may have committed. America's ""Queen of Suspense"" returns with the dramatic story of two women, best friends, one of whom is charged - and convicted - of a murder the other may have committed. When Julia is released from prison at the age of 36, the first item on her agenda is to settle the score with her former friend.","The Story of Ruby Bridges. ""Please, God, try to forgive those people. Because even if they say those bad things, They don't know what they're doing."" This is the true story of an extraordinary 6-year-old who helped shape history when she became the first African-American sent to first grade in an all white school. This moving book captures the courage of a little girl standing alone in the face of racism. ""Ford's moving watercolor paintings...capture the...warmth of Ruby's family and community, the immense powers against her, and her shining inner strength."" --Booklist","Crucial Conversations: Tools for Talking When Stakes Are High. Learn how to keep your cool and get the results you want when emotions flare. When stakes are high, opinions vary, and emotions run strong, you have three choices: Avoid a crucial conversation and suffer the consequences; handle the conversation badly and suffer the consequences; or read Crucial Conversations and discover how to communicate best when it matters most. Crucial Conversations gives you the tools you need to step up to life's most difficult and important conversations, say what's on your mind, and achieve the positive resolutions you want. You'll learn how to: Prepare for high-impact situations with a six-minute mastery technique Make it safe to talk about almost anything Be persuasive, not abrasive Keep listening when others blow up or clam up Turn crucial conversations into the action and results you want","Gunslinger and Nine Other Action-Packed Stories of the Wild West. Ed Gorman's western stories are anything but ordinary. They often take place in lonely, tragic, mythical landscapes. Editors Bill Pronzini and Martin H. Greenberg have selected nine of Ed Gorman's best short stories as they appeared in a variety of magazines. Gorman can truly be called the ""renaissance writer of western stories."" Contains: -The Face -Gunslinger -Mainwaring's Gift -Blood Truth -Dance Girl -Deathman -Love and Trooper Monroe -Pards -On Roy Rodgers -Writing the Modern Western -A Bibliography of Books by Ed Gorman","The Iliad. The Iliadis one of the two great epics of Homer, and is typically described as one of the greatest war stories of all time, but to say the Iliad is a war story does not begin to describe the emotional sweep of its action and characters: Achilles, Helen, Hector, and other heroes of Greek myth and history in the tenth and final year of the Greek siege of Troy.","A History of the Life Sciences. A clear and concise survey of the major themes and theories embedded in the history of life science, this book covers the development and significance of scientific methodologies, the relationship between science and society, and the diverse ideologies and current paradigms affecting the evolution and progression of biological studies. The author discusses cell theory, embryology, physiology, microbiology, evolution, genetics, and molecular biology; the Human Genome Project; and genomics and proteomics. Covering the philosophies of ancient civilizations to modern advances in genomics and molecular biology, the book is a unique and comprehensive resource.",Tough to Tackle.,"History of Political Philosophy. This volume provides an unequaled introduction to the thought of chief contributors to the Western tradition of political philosophy from classical Greek antiquity to the twentieth century. Written by specialists on the various philosophers, this third edition has been expanded significantly to include both new and revised essays.","Hidden World. When Jessica's parents are tragically killed in a car crash, she goes to live with her grandparents in their big old house in Connecticut. Bullied at her new school because of the injury she suffered in the crash, Jessica finds solace in her favourite fairies and the pictures she loves to draw. One day she suffers bad concussion after falling downstairs at school, and while recovering at home she hears the strange sound of children's voices calling for help. At first Jessica cannot work out where the voices are coming from, but eventually she discovers from a mysterious but kindly old neighbour that they are in fact coming from inside her bedroom wallpaper. Attempting to overcome her own disbelief, Jessica and some friends venture into the world inside her wall where they find an extraordinary land where everyday household objects like spoons and hats take on a life of their own. But there is great danger to be found inside this hidden world, and it is up to Jessica to rescue the stran",The Leadership Challenge: Skills for Taking Charge.,"Welcome to the Monkey House. Kurt Vonnegut is a master of contemporary American Literature. His black humor, satiric voice, and incomparable imagination first captured America's attention in The Siren's of Titanin 1959 and established him as ""a true artist""* with Cat's Cradlein 1963. He is, as Graham Greene has declared, ""one of the best living American writers."" Welcome to the Monkey Houseis a collection of Kurt Vonnegut's shorter works. Originally printed in publications as diverse as The Magazine of Fantasy and Science Fictionand The Atlantic Monthly, what these superb stories share is Vonnegut's audacious sense of humor and extraordinary range of creative vision. *The New York Times","Nabokov's Pale Fire: The Magic of Artistic Discovery. Pale Fireis regarded by many as Vladimir Nabokov's masterpiece. The novel has been hailed as one of the most striking early examples of postmodernism and has become a famous test case for theories about reading because of the apparent impossibility of deciding between several radically different interpretations. Does the book have two narrators, as it first appears, or one? How much is fantasy and how much is reality? Whose fantasy and whose reality are they? Brian Boyd, Nabokov's biographer and hitherto the foremost proponent of the idea that Pale Firehas one narrator, John Shade, now rejects this position and presents a new and startlingly different solution that will permanently shift the nature of critical debate on the novel. Boyd argues that the book does indeed have two narrators, Shade and Charles Kinbote, but reveals that Kinbote had some strange and highly surprising help in writing his sections. In light of this interpretation, Pale Firenow looks distinctly less postmodern--","The Tin Can Tree. In the small town of Larksville, the Pike family is hopelessly out of step with the daily rhythms of life after the tragic, accidental death of six-year-old Janie Rose. Mrs. Pike seldom speaks, blaming herself, while Mr. Pike is forced to come out of his long, comfortable silence. Then there is ten-year-old Simon, who is suddenly without a baby sister -- and without understanding why she's gone. Those closest to this shattered family must learn to comfort them -- and confront their own private shadows of hidden grief. If time cannot draw them out of the dark, then love may be their only hope....","Love and Louis XIV: The Women in the Life of the Sun King. The self-proclaimed Sun King, Louis XIV ruled over the most glorious and extravagant court in seventeenth-century Europe. Now, Antonia Fraser goes behind the well-known tales of Louis's accomplishments and follies, exploring in riveting detail his intimate relationships with women. The king's mother, Anne of Austria, had been in a childless marriage for twenty-two years before she gave birth to Louis XIV. A devout Catholic, she instilled in her son a strong sense of piety and fought successfully for his right to absolute power. In 1660, Louis married his first cousin, Marie-Therese, in a political arrangement. While unfailingly kind to the official ""Queen of Versailles,"" Louis sought others to satisfy his romantic and sexual desires. After a flirtation with his sister-in-law, his first important mistress was Louise de La Valliere, who bore him several children before being replaced by the tempestuous and brilliant Athenais, marquise de Montespan. Later, when Athenais's reputation was t","Maurice. Set in the elegant Edwardian world of Cambridge undergraduate life, this story by a master novelist introduces us to Maurice Hall when he is fourteen. We follow him through public school and Cambridge, and on into his father's firm, Hill and Hall, Stock Brokers. In a highly structured society, Maurice is a conventional young man in almost every way, ""stepping into the niche that England had prepared for him"": except that his is homosexual. Written during 1913 and 1914, after an interlude of writer's block following the publication of Howards End, and not published until 1971, Maurice was ahead of its time in its theme and in its affirmation that love between men can be happy. ""Happiness,"" Forster wrote, ""is its keynote....In Maurice I tried to create a character who was completely unlike myself or what I supposed myself to be: someone handsome, healthy, bodily attractive, mentally torpid, not a bad businessman and rather a snob. Into this mixture I dropped an ingredient that puzzles hi","Congo. Deep in the African rain forest, near the legendary ruins of the Lost City of Zinj, an expedition of eight American geologists is mysteriously and brutally killed in a matter of minutes. Ten thousand miles away, Karen Ross, the Congo Project Supervisor, watches a gruesome video transmission of the aftermath: a camp destroyed, tents crushed and torn, equipment scattered in the mud alongside dead bodies -- all motionless except for one moving image -- a grainy, dark, man-shaped blur. In San Francisco, primatologist Peter Elliot works with Amy, a gorilla with an extraordinary vocabulary of 620 ""signs,"" the most ever learned by a primate, and she likes to fingerpaint. But recently, her behavior has been erratic and her drawings match, with stunning accuracy, the brittle pages of a Portuguese print dating back to 1642 . . . a drawing of an ancient lost city. A new expedition -- along with Amy -- is sent into the Congo where they enter a secret world, and the only way out may be through a ho","A Frolic of His Own. With the publication of the ""Recognitions"" in 1955, William Gaddis was hailed as the American heir to James Joyce. His two subsequent novels, ""J R"" (winner of the National Book Award) and ""Carpenter's Gothic,"" have secured his position among America's foremost contemporary writers. Now ""A Frolic of His Own,"" his long-anticipated fourth novel, adds more luster to his reputation, as he takes on life in our litigious times. ""Justice? - You get justice in the next world, in this world you have the law."" So begins this mercilessly funny, devastatingly accurate tale of lives caught up in the toils of the law. Oscar Crease, middle-aged college instructor, savant, and playwright, is suing a Hollywood producer for pirating his play Once at Antietam, based on his grandfather's experiences in the Civil War, and turning it into a gory blockbuster called The Blood in the Red White and Blue. Oscar's suit, and a host of others - which involve a dog trapped in an outdoor sculpture, wrongful death duri","Bras & Broomsticks (Magic in Manhattan #1). What if all your wishes could come true? Blink your eyes, drink a fizzing pink potion, and poof!Life is perfect. That's Rachel's situation. Except she's not the one who suddenly has magical powers. Her younger sister is. And as Rachel would tell you, spellbooks are wastedon the young! Yes, yes, of course world peace and cures for horrible diseases are important. But so is dancing without looking like she's being electrocuted, winning back her best friend, stopping her dad's wedding, and finding a date for Spring Fling. Rachel's not bewitched. Yet. . . . From the Publisher (Delacorte)","Hunters of Dune (Dune Chronicles #7). Hunters of Dune and the concluding volume, Sandworms of Dune, bring together the great story lines and beloved characters in Frank Herbert's classic Dune universe, ranging from the time of the Butlerian Jihad to the original Dune series and beyond. Based directly on Frank Herbert's final outline, which lay hidden in a safe-deposit box for a decade, these two volumes will finally answer the urgent questions Dune fans have been debating for two decades.At the end of Chapterhouse: Dune-Frank Herbert's final novel--a ship carrying the ghola of Duncan Idaho, Sheeana (a young woman who can control sandworms), and a crew of various refugees escapes into the uncharted galaxy, fleeing from the monstrous Honored Matres, dark counterparts to the Bene Gesserit Sisterhood. The nearly invincible Honored Matres have swarmed into the known universe, driven from their home by a terrifying, mysterious Enemy. As designed by the creative genius of Frank Herbert, the primary story of Hunters and Sandworms","Nick & Norah's Infinite Playlist. The New York Times bestselling he-said/she-said rock n' roll romance that inspired the motion picture starring Michael Cera (Juno, Arrested Development) and Kat Dennings (Thor, TV's 2 Broke Girls)! ""I know this is going to sound strange, but would you mind being my girlfriend for the next five minutes?"" Nick frequents New York's indie rock scene nursing a broken heart. Norah is questioning all of her assumptions about the world. They have nothing in common except for their taste in music, until a chance encounter leads to an all-night quest to find a legendary band's secret show and ends up becoming a first date that could change both their lives. Co-written by Rachel Cohn and David Levithan, co-author of WILL GRAYSON, WILL GRAYSON with John Green (THE FAULT IN OUR STARS), NICK & NORAH'S INFINITE PLAYLIST is a sexy, funny roller coaster of a story that reminds you how you can never be sure where the night will take you... This movie tie-in edition also includes an 8-page photo insert","Sensual Phrase Vol. 15. As a budding poet and lyricist, Aine is on her way to an audition one fateful afternoon. Absentmindedly stepping into the street, she barely avoids getting struck by an oncoming vehicle. Not only is the cute teenager lucky to be alive, but her brush with death turns out to be a date with destiny. The driver of the car just happens to be Sakuya, the charismatic and fabulously handsome lead singer for a band called Lucifer. In short order, Sakuya and his crew compose a song using AineAfs lyrics. The tune proves popular with the bandAfs fans and Sakuya decides he wants a relationship, both professional and personal, with Aine. ThereAfs only one small requirement: The lyrics Aine writes must be erotically charged. And guess what? Sakuya fully intends to introduce the young and inexperienced girl into the world of sensual delights. Does Sakuya actually care for Aine, or is she just another sexual conquest for him? Will Aine fulfill her dreams and become a professional lyricist, or has she s",Sherlock Holmes and the Case of the Hound of the Baskervilles (Great Illustrated Classics).,Gefahr im Roten Meer (Treason's Harbour) (Aubrey/Maturin Book 9).,"Owlflight (Owl Mage Trilogy #1). Apprenticed to a venerable wizard when his hunter and trapper parents disappear into the forest never to be seen again, Darian is strong-willed and difficult--much to the dismay of his kindly master. But a sudden twist of fate will change his life forever, when the ransacking of his village forces him to flee into the great mystical forest. It is here in the dark forest that he meets his destiny, as the terrifying and mysterious Hawkbrothers lead him on the path to maturity. Now they must lead the assault on his besieged home in a desperate attempt to save his people from certain death!","Divine Filth: Lost Writings (Modern Classics). ""Divine Filth is a collection of long-overlooked erotic prose and scatological fragments rivaled only by Georges Bataille's most well-known work, ""Story of the Eye, for pure ""pornographic"" content that transcends the limits of literature and the self. These are the shattered mystic visions of a seminal Surrealist with a deep thirst for the negation of consciousness through ecstasy, humiliation, depravity and pain.","Collected Essays: Notes of a Native Son / Nobody Knows My Name / The Fire Next Time / No Name in the Street / The Devil Finds Work / Other Essays. Though one of the giants of 20th-century American letters he's often been marginalized, relegated to the ghetto of writers about race. This perception of Baldwin solely as a black writer--and thus one whose interest lies primarily in the sociological or the documentary--undercuts the real importance he's had in the development of postwar literature. The Library of America celebrates his place at the heart of American culture with two volumes of his most influential work, both edited by Toni Morrison. The first of these collects Baldwin's early fiction, including the novels Go Tell It on the Mountain, Giovanni's Room, & Another Country, & the short story collection Going to Meet the Man. The second brings together most of his published essays, including those found in such volumes as Notes of a Native Son& The Fire Next Time, as well as many collected here for the first time. Baldwin was born in Harlem in 1924, the stepson of a Baptist preacher. He experienced conversion at age 14 & spe","Tripwire (Jack Reacher #3). On the publication of Lee Child's debut novel, the multiple award-winning Killing Floor, critics nationwide marked its success. His last book, Die Trying, inspired the Chicago Tribune to call him ""a suspense writer to be reckoned with."" In Tripwire, Reacher is settling into lazy Key West when his life is interrupted by a stranger who comes looking for him. When the stranger turns up beaten to death in the Old Town cemetery - fingertips removed - Reacher knows whomever the man was working for is not a friend. Reacher follows the trail to New York, where he confronts the people who dispatched the dead man: an elderly couple still mourning an all-American son lost in Vietnam; an alluring and intelligent woman from Reacher's own haunted past; and at the center of the web, an opponent more vicious than any he's ever faced. Lee Child confirms his early acclaim with this new tale, as swift and stylish as any suspense novel being written today.","Star Wars: Clone Wars Adventures Volume 6. Four more thrilling tales of planets in peril and Jedi in jeopardy! The Clone Wars grind through the galaxy, shaking every system to its core and testing loyalties on both sides of the conflict. The last days of the Jedi are at hand, but if their Order is to fall, they're going down swinging! Presenting another round of lightning-paced, action-packed, all-ages Star Warsgoodness, all told in the same stripped-down stylization as Cartoon Network's micro-series. * The Clone Wars Adventuresseries are a top seller, and very kid-friendly, perfect for younger readers.",Pictures by J.R.R. Tolkien.,"Cravings (Undead #1.5; Moon #3.5). Four favorite authors present their favorite characters in all-new tales of bloodlust, appetites that must be sated again and again, and the passion that feeds them. ""Beyond the Ardeur"" (An Anita Blake tale) By Laurell K. Hamilton Anita is attending a friend's wedding when Nathaniel, her pomme de sang, makes known in no uncertain terms that he wants to take the relationship to the next level. Anita's subsequent actions take her to a place she has hitherto carefully avoided. ***This short story is a condensed version of Incubus Dreams, book 12 in the Anita Blake series! ""Dead Girls Don't Dance,"" by MaryJanice Davidson Vampire Andrea Mercer is literally dug up by an old crush, Daniel Harris, and during a trip to Minnesota to see the vampire queen, her desire for him reignites. ""Originally Human"" by Eileen Wilks Succubus Molly Brown discovers a gorgeous, naked man in the woods and decides to help him recover his memory. ""Burning Moon"" by Rebecca York All werewolf Grant Marshall wants to d","Memoirs of a Geisha. A literary sensation and runaway bestseller, this brilliant debut novel presents with seamless authenticity and exquisite lyricism the true confessions of one of Japan's most celebrated geisha. In Memoirs of a Geisha, we enter a world where appearances are paramount; where a girl's virginity is auctioned to the highest bidder; where women are trained to beguile the most powerful men; and where love is scorned as illusion. It is a unique and triumphant work of fiction - at once romantic, erotic, suspenseful - and completely unforgettable.","On Basilisk Station (Honor Harrington #1). Honor Harrington in trouble: Having made him look the fool, she's been exiled to Basilisk Station in disgrace and set up for ruin by a superior who hates her. Her demoralized crew blames her for their ship's humiliating posting to an out-of-the-way picket station. The aborigines of the system's only habitable planet are smoking homicide-inducing hallucinogens. Parliament isn't sure it wants to keep the place; the major local industry is smuggling, the merchant cartels want her head; the star-conquering, so-called ""Republic"" of Haven is Up to Something; and Honor Harrington has a single, over-age light cruiser with an armament that doesn't work to police the entire star system. But the people out to get her have made one mistake. They've made her mad!","Christmas in the Big Woods. A beautiful full-color hardcover picture book introduction to the beloved Little House series, perfect for younger readers. Christmas has come to the Big Woods of Wisconsin! Laura and her family are excited to celebrate. When Laura's cousins, aunt, and uncle arrive, they spend their time together eating sweets, playing in the snow, and reading. Their holiday celebrations are full of simple joys. The warm paintings by Renee Graef are inspired by Garth Williams' classic illustrations and lovingly bring the Ingalls family to life.","Regarding the Fountain: A Tale in Letters of Liars and Leaks. The Dry Creek Middle School drinking fountain has sprung a leak, so principal Walter Russ dashes off a request to Flowing Waters Fountains, Etc. ...We need a new drinking fountain. Please send a catalog. Designer Flo Waters responds: ""I'd be delighted...but please understand that all of my fountains are custom-made."" Soon the fountain project takes on a life of its own, one chronicled in letters, postcards, memos, transcripts, and official documents. The school board president is up in arms. So is Dee Eel, of the water-supply company. A scandal is brewing, and Mr. Sam N.'s fifth grade class is turning up a host of hilarious secrets buried deep beneath the fountain.","The Enneads. Plotinus is the last great philosopher of antiquity, although in more than one respect, a precursor of modern times. The Enneadsbring together Neoplatonism--mystic passion and ideas from Greek philosophy--together with striking variants of the Trinity and other central Christian doctrines, to produce a highly original synthesis.",The Lost Continent: The Story of Atlantis.,"Demon Diary Volume 03. Eclipse recalls the first time he met Raenef and realizes that the life of a demon lord is fraught with peril. Demons are feared and hated by most of humanity due to their arrogance and willingness to use their powers for personal gain. Although Raenef is not your typical Demon Lord, his heritage and his good-natured demeanor make him an easy target for an assassin.","On the Origins of War and the Preservation of Peace. By lucidly revealing the common threads that connect the ancient confrontations between Athens & Sparta & between Rome & Carthage with the two calamitous world wars of the 20th century & the Cuban Missile Crisis, Kagan reveals new insights into the nature of war & peace that are vitally important & often surprising.","Visions of Heaven and Hell. What would you see if you could peek inside the mind of Clive Barker, creator of such classics as Weaveworld, Hellraiser, and Candyman? Would you dare look? Crack open Visions of Heaven and Hell, and you have unlocked a Pandora's box of images that are certain to stay inside your head. For more than twenty-five years, Barker has awed fans and critics alike with his groundbreaking works of fiction, but what few know is that the heart of his fantastic worlds lies in pictures. Now, for the first time, this book brings out from the dark depths more than 300 of Barker's most stunning drawings and oil paintings. Illuminated with new writings by Barker, this artwork renders with expressionist fervor some of our most primal passions-good, evil, and all that's between. From the graphically terrifying to the ecstatically sensual, Visions of Heaven and Hell takes the reader on a journey through unexplored and forbidden realms. Designed in a luxurious package that recalls a devotional medieval man","The Empire of Ice Cream. Mixing the mundane with the metaphysical, the pairings of the everyday and the extraordinary in this collection of short fiction yield supernatural results--a young musician perceives another world while drinking coffee, a fairy chronicles his busy life in a sandcastle during the changing tide, a demonic 16th-century chess set shows up in a New Jersey bar, and Charon, the boatman of hell, takes a few days vacation. Storylines both conventional and outlandish reveal humdrum routines as menacing, or imaginary worlds as perfectly familiar. Allusions to authors such as Edgar Allan Poe and Jules Verne reinforce the fantasy tradition in these tales, while understated humor and moments of sadness add a quirky unpredictability. Also included is the previously unpublished novella, ""Botch Town,"" a coming-of-age story about a boy on Long Island whose family and friends live ordinary lives under threats both real and imagined. Each story is followed by a brief afterword that details its genesis.","The Da Vinci Code (Robert Langdon #2). An ingenious code hidden in the works of Leonardo da Vinci. A desperate race through the cathedrals and castles of Europe. An astonishing truth concealed for centuries . . . unveiled at last. While in Paris, Harvard symbologist Robert Langdon is awakened by a phone call in the dead of the night. The elderly curator of the Louvre has been murdered inside the museum, his body covered in baffling symbols. As Langdon and gifted French cryptologist Sophie Neveu sort through the bizarre riddles, they are stunned to discover a trail of clues hidden in the works of Leonardo da Vinci--clues visible for all to see and yet ingeniously disguised by the painter. Even more startling, the late curator was involved in the Priory of Sion--a secret society whose members included Sir Isaac Newton, Victor Hugo, and Da Vinci--and he guarded a breathtaking historical secret. Unless Langdon and Neveu can decipher the labyrinthine puzzle--while avoiding the faceless adversary who shadows their every move--the",Tramps Like Us Volume 12.,The Last Night of Ballyhoo. The newest play by the author of the Pulitzer Prize-winning Driving Miss Daisy.,Tara Road.,"All Night Long. Shy, studious Irene Stenson and wild, privileged Pamela Webb had been the best of friends for one short high school summer. Their friendship ended the night Pamela dropped Irene off at home-and Irene walked in to discover her parents' bodies on the kitchen floor. It was ruled a murder-suicide, and Irene fled Dunsley, determined to wipe out every memory attached to her northern California hometown. But now she has been summoned back. Pamela's e-mail had been short and cryptic. More alarming, it included the code word they had used as teenagers, suggesting an urgency and a secrecy that puzzled Irene. What could be important enough to make her former friend get in touch after all these years? She won't find out--at least no from Pamela, who lies dead in the luxurious home of her father, a U.S. senator, pill and liquor bottles beside her. The shock has barely subsided before the rumors begin to swirl. Irene had planned to get out of this place as quickly as possible. But her reporters's in","Inkheart (Inkworld #1). Alternate cover edition:  Twelve-year-old Meggie learns that her father, who repairs and binds books for a living, can ""read"" fictional characters to life when one of those characters abducts them and tries to force him into service. Characters from books literally leap off the page in this engrossing fantasy. Meggie has had her father to herself since her mother went away when she was young. Mo taught her to read when she was five, and the two share a mutual love of books. He can ""read"" characters out of books. When she was three, he read aloud from a book called Inkheart and released characters into the real world. At the same time, Meggie's mother disappeared into the story. This ""story within a story"" will delight not just fantasy fans, but all readers who like an exciting plot with larger-than-life characters.","The Footprints of God. Resisting those who would use a revolutionary new technology for unethical purposes, doctor David Tennant and psychiatrist Rachel Weiss run for their lives from ruthless NSA agents and turn to David's unusual dreams for guidance.","My Lord Eternity (Immortal Rogues #2). Alexandra Ivy, author of the Guardians of Eternity series, draws readers deeper into the world of the Immortal Rogues--three vampires entrusted to protect the future of their kind... To other vampires, mortals are weak, uninteresting creatures. To Lucien Valin, they are infinitely fascinating. Especially Jocelyn Kingly--once the prize of London society, now an outcast. As the vampire assigned to guard her, Lucien is relishing his task. But her beguiling goodness puts her in terrifying danger. Not just from the traitor intent on claiming her mysterious amulet, but from the desire Lucien struggles to keep in check. Youthful infatuation already cost Jocelyn her good name. But even with little to lose, instinct tells her that accepting Lucien as a tenant in her home is a devil's bargain. As she roams London's streets at night, helping the most wretched, she feels a dark force drawing near. And Lucien--magnetic, charming, irresistible--may turn out to be her savior, her lover, or the means","The Life and Times of Scrooge McDuck Companion. You asked for them, and here they are... the pre-chapters, the post-chapters and the in-between chapters of Don Rosa's Life and Times of Scrooge McDuck! Included in this companion are the stories ""The Cowboy Captain of the Cutty Sark,"" ""The Vigilante of Pizen Bluff,"" ""The Prisoner of White Agony Creek,"" ""Hearts of the Yukon"" and ""Sharpie of the Culebra Cut."" Finally rounding out the collection are two slightly unusual takes on Scrooge's life: ""Of Ducks and Dimes and Destinies"" and ""Dream of a Lifetime"" in which the Beagle Boys invade Scrooge's subconscious mind (!) and wreak havoc during dream-versions of the various ""Life of Scrooge"" chapters.","Double Whammy (Skink #1). R.J. Decker, star tenant of the local trailer park and neophyte private eye is fishing for a killer. Thanks to a sportsman's scam that's anything but sportsmanlike, there's a body floating in Coon Bog, Florida -- and a lot that's rotten in the murky waters of big-stakes, large-mouth bass tournaments. Here Decker will team up with a half-blind, half-mad hermit with an appetite for road kill; dare to kiss his ex-wife while she's in bed with her new husband; and face deadly TV evangelists, dangerously seductive women, and a pistol-toting redneck with a pit bull on his arm. And here his own life becomes part of the stakes. For while the ""double whammy"" is the lure, first prize is for the most ingenious murder.",A Guided Tour of 5 Works by Plato: Euthyphro/Apology/Crito/Phaedo/Cave.,"I Dreamed I Married Perry Mason (A Cece Caruso Mystery #1). The Barnes & Noble Review It started with a case of writer's block. Pretty, vivacious Cece Caruso turned to a life of crime after her divorce. But she's neither breaking and entering nor running cons. Instead, she's writing biographies of famous crime novelists, and now it's Erle Stanley Gardner's turn under Cece's magnifying glass. While the creator of Perry Mason had an exciting life, including his own share of courtroom dramatics as a lawyer, it was his Court of Last Resort that fascinated Cece. The Court of Last Resort was a place where those wrongly convicted could petition Gardner to find enough evidence to reopen their cases. Cece was researching the Court in the hope it would give her enough material to propel her through her unfinished chapters. In a last-ditch effort to procrastinate--while pretending to work--she goes to visit an elderly prison inmate whose desperate appeal she finds misfiled and unexplored among the otherwise meticulously organized files of the Erle Stanley",The Diezmo.,"A Quantum Murder (Greg Mandel #2). Professor Edward Kitchener, a double Nobel laureate researching quantum cosmology for the powerful Event Horizon conglomerate has been savagely murdered. But was he the victim of industrial espionage, personal revenge, or a crime of passion by one of his handpicked team of live-wire students? Event Horizon needs to know and fast, so Greg Mandel, PSI-boosted veteran of the infamous Mindstar Battalion, must embark on an urgent investigation that ultimately leads him to an astounding confrontation with a past, which, according to the dead man's theories, might never have happened.","Transmetropolitan Vol. 3: Year of the Bastard. Investigative reporter Spider Jerusalem attacks the injustices of the 23rd Century surroundings while working for the newspaper The Word in this critically-acclaimed graphic novel series written by comics superstar Warren Ellis, the co-creator of PLANETARY and THE AUTHORITY. In this third volume, Spider Jerusalem begins to crumble under the pressure of sudden and unwanted fame. Having had enough of the warped 23rd century Babylon that he lives in, Spider escapes into a world of bitterness and pills. As he stumbles through this haze of depression and drugs, he must find a way to cover the biggest story of the year, the presidential election. Armed with only his demented mind and dark sense of humor, Spider embarks on an adventure of political cynicism, horrific sex, and unwelcome celebrity which culminates in a shocking and ruinous ending.","The Return of the King (The Lord of the Rings #3). The Companions of the Ring have become involved in separate adventures as the quest continues. Aragorn, revealed as the hidden heir of the ancient Kings of the West, joined with the Riders of Rohan against the forces of Isengard, and took part in the desperate victory of the Hornburg. Merry and Pippin, captured by Orcs, escaped into Fangorn Forest and there encountered the Ents. Gandalf returned, miraculously, and defeated the evil wizard, Saruman. Meanwhile, Sam and Frodo progressed towards Mordor to destroy the Ring, accompanied by SmEagol--Gollum, still obsessed by his 'precious'. After a battle with the giant spider, Shelob, Sam left his master for dead; but Frodo is still alive--in the hands of the Orcs. And all the time the armies of the Dark Lord are massing. J.R.R. Tolkien's great work of imaginative fiction has been labeled both a heroic romance and a classic fantasy fiction. By turns comic and homely, epic and diabolic, the narrative moves through countless changes of scene a",Babar's World Tour.,"Birds of Prey (Courtney #9). The year is 1667. Sir Francis Courtney and his son Hal are on patrol in their fighting caravel off the Agulhas Cape of South Africa. They are lying in wait for one of the treasure-laden galleons of the Dutch East India Company returning from the Orient. so begins a quest for adventure and the spoils of war that sweeps them from the settlement of Good Hope at the southern tip of Africa to the Great Horn of Ethiopia far to the north - at a time when international maritime law permitted acts of piracy, rape, and murder otherwise punishable by death. Wilbur Smith introduces a generation of the indomitable Courtneys and thrillingly re-creates their part in the struggle for supremacy and riches on the high seas. From the very first pages, Wilbur Smith spins a colorful and exciting tale, crackling with tension and drama, that builds and builds to a stunning climax. Packed with vivid descriptive passages of the open seas, breathless pacing, and an extraordinary cast of characters, Birds of Pre","Dooby Dooby Moo. Doreen Cronin and Betsy Lewin's bestselling ""Dooby Dooby Moo"" is available for the first time as an individual board book!","Success. In SuccessAmis pens a mismatched pair of foster brothers--one ""a quivering condom of neurosis and ineptitude,"" the other a ""bundle of contempt, vanity and stock-response""--in a single London flat. He binds them with ties of class hatred, sexual rivalry, and disappointed love, and throws in a disloyal girlfriend and a spectacularly unstable sister to create a modern-day Jacobean revenge comedy that soars with malicious poetry.","Road of the Patriarch (Forgotten Realms: The Sellswords #3). To her, to her dying breath, you were the untouchable one, the one whose flesh her dagger could not penetrate. THE ASSASSIN A cold and emotionless killer for whom every soul has a price, even his own, embarks on a path to find out just how high that price can be. THE MERCENARY A dark elf of limitless guile dares to challenge a king, and carve for himself a place in the inhospitable World Above. ILNEZHARA and TAZMIKELLA are ancient dragons of great power, accustomed to easily manipulating the humans around them. But not all humans are so easily led. When they pushed Entreri and Jarlaxle into the heart of the Bloodstone Lands, not even they could have imagined the strength of the human assassin's resolve, or the limitless expanse of the drow mercenary's ambition.","Trout Fishing in America / The Pill vs. the Springhill Mine Disaster / In Watermelon Sugar. An omnibus edition of three counterculture classics by Richard Brautigan that embody the spirit of the 1960s. Trout Fishing in Americais by turns a hilarious, playful, and melancholy novel that wanders from San Francisco through America's rural waterways; In Watermelon Sugarexpresses the mood of a new generation, revealing death as a place where people travel the length of their dreams, rejecting violence and hate; and The Pill Versus the Springhill Mine Disasteris a collection of nearly 100 poems, first published in 1968.","The Foundling and Other Tales of Prydain. When Lloyd Alexander finished the Chronicles of Prydain, readers asked for more! So, in 1973, Mr. Alexander wrote a collection of short tales about the land of Prydain. These stories revisit familiar characters and reveal more about the history of this magical land. Here readers will find Dallben, destined to be an enchanter; Angharad, Princess of the House of Lyr; Kadwyr, the rascal crow; and Medwyn, the mystical protector of all animals. They'll learn the grim history of the sword Dyrnwyn and even find out how Fflewdur Fflam came by his enchanted harp. In The Foundling, Lloyd Alexander's land of fantasy and adventure lives on.",Canada's Incredible Coasts.,"Robinson Crusoe. Crusoe (the family name corrupted from the German name ""Kreutznaer"") sets sail from the Queen's Dock in Hull on a sea voyage in August 1651, against the wishes of his parents, who want him to pursue a career, possibly in law. After a tumultuous journey where his ship is wrecked in a storm, his lust for the sea remains so strong that he sets out to sea again. This journey, too, ends in disaster, as the ship is taken over by Sale pirates (the Sale Rovers) and Crusoe is enslaved by a Moor. Two years later, he escapes in a boat with a boy named Xury; a captain of a Portuguese ship off the west coast of Africa rescues him. The ship is en route to Brazil. Crusoe sells Xury to the captain. With the captain's help, Crusoe procures a plantation. Robinson Crusoe is a novel by Daniel Defoe, first published on 25 April 1719. This first edition credited the work's fictional protagonist Robinson Crusoe as its author, leading many readers to believe he was a real person and the book a travelogue of t","Candy Girl: A Year in the Life of an Unlikely Stripper. Die 30-jahrige Diablo Cody ist ein Phanomen. Mit ihrem Internet-Blog machte sie sich einen Namen, dann schoss sie raketenhaft in den Himmel der US-Literatur. Fur ihr erstes Drehbuch erhielt sie einen Oscar, Steven Spielberg beschaftigt sie als Dialogberaterin. Besser und hoher kann man eigentlich nicht kommenNacktzeigt, dass Cody diesen kometenhaften Aufstieg mehr als verdient hat. Rasant, packend und komisch erzahlt sie, wie sie (oder doch zumindest ihre Ich-Erzahlerin) trotz einer eher biederen Biografie die Leidenschaft furs Strippen entdeckt. Wie sie gleich beim ersten, ganzlich missgluckten Auftritt durch den Alltag mit menstruierenden oder gynakologisch ausladenden Kolleginnen alle romantischen Vorstellungen ihres Gewerbes verliert - und trotzdem von der Stripperstange im positiven Sinne nicht mehr loskommt. Und sie erzahlt von ihrer Liebe zu ihrem coolen, (fast) perfekten Partner Jonny - und das, ohne auch nur eine Sekunde dem Kitsch zu verfallen. Nacktgibt sich als Enthullungsr","Aleutian Sparrow. In June 1942, seven months after attacking Pearl Harbor, the Japanese navy invaded Alaska's Aleutian Islands. For nine thousand years the Aleut people had lived and thrived on these treeless, windswept lands. Within days of the first attack, the entire native population living west of Unimak Island was gathered up and evacuated to relocation centers in the dense forests of Alaska's Southeast. With resilience, compassion, and humor, the Aleuts responded to the sorrows of upheaval and dislocation. This is the story of Vera, a young Aleut caught up in the turmoil of war. It chronicles her struggles to survive and to keep community and heritage intact despite harsh conditions in an alien environment.",Practice Makes Perfect: Italian Verb Tenses.,"Sons of Mississippi: A Story of Race and Its Legacy. They stand as unselfconscious as if the photograph were being taken at a church picnic and not during one of the pitched battles of the civil rights struggle. None of them knows that the image will appear in Life magazineor that it will become an icon of its era. The year is 1962, and these seven white Mississippi lawmen have gathered to stop James Meredith from integrating the University of Mississippi. One of them is swinging a billy club. More than thirty years later, award-winning journalist and author Paul Hendrickson sets out to discover who these men were, what happened to them after the photograph was taken, and how racist attitudes shaped the way they lived their lives. But his ultimate focus is on their children and grandchildren, and how the prejudice bequeathed by the fathers was transformed, or remained untouched, in the sons. Sons of Mississippiis a scalding yet redemptive work of social history, a book of eloquence and subtlely that tracks the movement of racism across t","Dracula. 'Alone with the dead! I dare not go out, for I can hear the low howl of the wolf through the broken window' When Jonathan Harker visits Transylvania to help Count Dracula with the purchase of a London house, he makes horrifying discoveries about his client and his castle. Soon afterwards, a number of disturbing incidents unfold in England: an unmanned ship is wrecked at Whitby; strange puncture marks appear on a young woman's neck; and the inmate of a lunatic asylum raves about the imminent arrival of his 'Master'. In the ensuing battle of wits between the sinister Count Dracula and a determined group of adversaries, Bram Stoker created a masterpiece of the horror genre, probing deeply into questions of human identity and sanity, and illuminating dark corners of Victorian sexuality and desire.",The Climb (Everest Trilogy).,"Bedlam's Edge (Bedlam's Bard #8). Mercedes Lackey and Rosemary Edghill are the biggest names in the urban fantasy subgenre?where elves, banshees, trolls, and even stranger creatures walk modern city streets, their presence, and even their existence unsuspected by the human inhabitants. Now these two present a volume of all new urban fantasy, with a stellar lineup of the best new fantasy writers, such as Roberta Gellis, Dave Freer and Eric Flint, Diana Paxton, and more?including two new stories and an afterword by Mercedes Lackey herself, as well as a story by Rosemary Edghill. This is an indispensable volume for fans of urban fantasy in general, and the thousands of fans of Mercedes Lackey in particular.","The Naked and the Dead. Written in gritty, journalistic detail, the story follows an army platoon of foot soldiers who are fighting for the possession of the Japanese-held island of Anopopei. Composed in 1948, The Naked and the Dead is representative of the best in twentieth-century American writing.","The Black Stallion and Satan (The Black Stallion #5). Satan has won the Triple Crown, yet Alec still misses the Black, who's living in Arabia with Sheikh Abu Ishak. Unexpectedly, Alec receives word that the sheikh has died and has left the Black to Alec. A race between the Black and Satan is inevitable, but unexpected events put the horses in the path of a raging forest fire. Suddenly, they are racing for their lives.","The Lion the Witch and the Wardrobe (Chronicles of Narnia #1). A picture book retelling of C. S. Lewis's classic story, The Lion, the Witch and the Wardrobe, for the youngest fans! Introduce them to the magic of Narnia with this picture book featuring illustrations by Tudor Humphries. Now younger children can share the magical experience, entering into a world of enchantment that will forever lure them back. Four adventurous siblings step through a wardrobe door and into the land of Narnia, a land frozen in eternal winter--but never Christmas--cursed by the power of the White Witch. Only Aslan, the Great Lion, can reverse her wicked spell. The Lion, the Witch and the Wardrobecan also be read as a novel. It is the second book in C. S. Lewis's classic fantasy series, The Chronicles of Narnia, which has been drawing readers of all ages into a magical land with unforgettable characters for over sixty years.",The Full Box (Full #1-4).,"Street Magic (The Circle Opens #2). It's been four years since Briar Moss began his training as a plant mage, but he still hasn't put his past behind him. Wandering through a Chammuri market, Briar comes across a street girl using powerful magic to polish stones for a merchant. He resolves to find her a teacher. But Briar understands the city's gangs as well as he understands Evvy, the young mage. When gang warfare breaks out in Chammur, Briar discovers that the fiercest gang is seeking a stone mage to lead them to hidden gems. Briar once believed gangs offered protection, but now he and his mage may offer the only protection Evvy can count on. As Briar is swept up in a bloody conflict, he must decide whether he's ready to make the final step away from his former life as a ""street rat.""","A Rose for the Crown. In A Rose for the Crown,we meet one of history's alleged villains through the eyes of a captivating new heroine -- the woman who was the mother of his illegitimate children, a woman who loved him for who he really was, no matter what the cost to herself. As Kate Haute moves from her peasant roots to the luxurious palaces of England, her path is inextricably intertwined with that of Richard, Duke of Gloucester, later King Richard III. Although they could never marry, their young passion grows into a love that sustains them through war, personal tragedy, and the dangerous heights of political triumph. Anne Easter Smith's impeccable research provides the backbone of an engrossing and vibrant debut from a major new historical novelist.",Teleportation: From Star Trek to Tesla.,Company.,犬夜叉 14.,"The Possessed. The Possessed, by Fyodor Dostoevsky, is part of the Barnes & Noble Classics series, which offers quality editions at affordable prices to the student and the general reader, including new scholarship, thoughtful design, and pages of carefully crafted extras. Here are some of the remarkable features of Barnes & Noble Classics...: ~barnesandnoble.com","Aliens: Original Sin. THE ADVENTURES OF ELLEN RIPLEY CONTINUE! Nearly three centuries ago, the Weyland-Yutani starship Nostromoinvestigated what appeared to be a distress call emanating from the barren planet Acheron. What the crew of the Nostromofound was an alien life form -- a hideous, slavering killer, quicker and more powerful than anything they had known before. Only Warrant Officer Ellen Ripley managed to escape with her life, destroying the Nostromorather than give the monster a chance to reach Earth. But she hadn't seen the last of the breed. Now, centuries after the death of the original Ripley, her clone has taken up the fight. And she has found, with the help of an android named Call, a brutal hired gun named Johner, and a paraplegic mechanic named Vriess, that there is more to the alien horror than meets the eye... In this all-new Ripley novel, best selling author Michael Jan Friedman asks the unasked questions that pierce the alien mystery to its seething acid-chamber of a heart -- leaving not","Part-Time Wife (Hometown Heartbreakers #4). Rugged Craig Haynes came from a long line of lady-killers. Lately, though, the single dad was targeting only Jill Bradford, his sons' new nanny. Two parts sweetness, one part sin, the petite redhead proved a wizard with his rambunctious boys. So what made this miracle-worker insist she was strictly hired help? Could a houseful of Haynes males ambush her wary heart...and make her a mother and wife.","The Secret Life of Bees. Sue Monk Kidd's first novel The Secret Life of Bees, a heartwarming coming of age tale set in 1960s South Carolina, a New York Times bestseller for more than 125 weeks, and a Good Morning America ""Read This"" Book Club pick Fans of The Help will love Sue Monk Kidd's Southern coming of age tale. The Secret Life of Bees was a New York Times bestseller for more than 125 weeks, a Good Morning America ""Read This"" Book Club pick and was made into an award-winning film starring Dakota Fanning, Queen Latifah, Jennifer Hudson and Alicia Keys. Set in South Carolina in 1964, The Secret Life of Beeswill appeal to fans of Kathryn Stockett's The Helpand Beth Hoffman's Saving CeeCee Honeycutt, and tells the story of Lily Owens, whose life has been shaped around the blurred memory of the afternoon her mother was killed. When Lily's fierce-hearted black ""stand-in mother,"" Rosaleen, insults three of the town's most vicious racists, Lily decides they should both escape to Tiburon, South Carolina--a town t",The Pirate / The Adventurer / The Cowboy.,Kokopelli: The Magic Mirth and Mischief of an Ancient Symbol. A guide to the ancient symbols and sites of the Southewest's most iconic image,"American Sphinx: The Character of Thomas Jefferson. Following his subject from the drafting of the Declaration of Independence to his retirement in Monticello, Joseph Ellis unravels the contradictions of the Jeffersonian character. A marvel of scholarship, a delight to read, and an essential gloss on the Jeffersonian legacy.","A Man Without a Country. NEW YORK TIMES BESTSELLER ""[This] may be as close as Vonnegut ever comes to a memoir."" -Los Angeles Times ""Like [that of] his literary ancestor Mark Twain, [Kurt Vonnegut's] crankiness is good-humored and sharp-witted. . . . [Reading A Man Without a Countryis] like sitting down on the couch for a long chat with an old friend."" -The New York Times Book Review In a volume that is penetrating, introspective, incisive, and laugh-out-loud funny, one of the great men of letters of this age-or any age-holds forth on life, art, sex, politics, and the state of America's soul. From his coming of age in America, to his formative war experiences, to his life as an artist, this is Vonnegut doing what he does best: Being himself. Whimsically illustrated by the author, A Man Without a Countryis intimate, tender, and brimming with the scope of Kurt Vonnegut's passions. ""For all those who have lived with Vonnegut in their imaginations . . . this is what he is like in person."" -USA Today ""Filled with [V","Fire in the Sky (Diadem: Shadowsong #1). This is the first in The Shadowsong Trilogy, the story of Shadith, formerly a spirit residing in the Diadem, a magical relic from an alien empire. She is embodied with the gift of empathy and a magic based on music, which enables her to act as an arbiter for interplanetary diplomatic corps. Now she must make peace between two warring races.","R-T Margaret and the Rats of NIMH (Rats of NIMH #3). When Margaret and her younger brother, Artie, get lost in the woods on a family camping trip, they are rescued by rats -- the superintelligent rats of NIMH. Taken into the rat's community, the children are safe for the time being. But winter is coming. Margaret and Artie have to get back home. And when they do, they must protect the rats who have helped them. Everything depends on their silence... but it's hard to evade questions forever. Children's Choices for 1991 (IRA/CBC)VOYA's Best Science Fiction, Fantasy, and Horror 1990Parenting Honorable Mention, Reading Magic Award","How it Ended. A transsexual prostitute accidentally propositions his own father. A senator's serial infidelities leave him in hot water. And two young lovers spend Christmas together high on different drugs. Discover a world of sex, excess and urban paranoia where worlds collide, relationships fragment and the dark underbelly of the American Dream is exposed.","Death Note Vol. 4: 恋心 (Death Note #4). Di Er nokiraChu Xian niyori, sonoDui Ying woXie Yi suruSou Cha Ben Bu ha, LnoJin Yan niyori, Yue woBen Bu hetoHu bu. sokodeYue ha, Wei kirakaraSong raretekitametsuseziniYin saretaZhen Yi niQi Fu ku! soshiteDi Er nokiratoJie Hong woJi routoshite...!?","Through the Dark Labyrinth: A Biography of Lawrence Durrell. Born in India, schooled under Mount Everest, Durrell spent his most productive years in Greece and around the Mediterranean. He was an accomplished poet, and his lyrical books about Mediterranean islands are among the best of their kind. In wartime Egypt he conceived The Alexandria Quartet, which brought fame with its ""exploration of modern love"" and experimental form. His last great novel cycle, The Avignon Quintet, has intrigued with its formal complexity and compelling mystery - the story of his generation through peace and war. Married four times, he lost two daughters (one through separation; the other through suicide) and his most blissful marriage ended in his wife's sudden death. Searching for wholeness after the shattering loneliness of his childhood, he rejected Christianity in favor of Western mysticism and Eastern religions. These things mark his work, showing a dark side to the effervescent wit evident in his writing.","What Was She Thinking? [Notes on a Scandal]. Schoolteacher Barbara Covett has led a solitary life until Sheba Hart, the new art teacher at St. George's, befriends her. But even as their relationship develops, so too does another: Sheba has begun an illicit affair with an underage male student. When the scandal turns into a media circus, Barbara decides to write an account in her friend's defense--and ends up revealing not only Sheba's secrets, but also her own.","A House Divided (House of Earth #3). ""A House Divided,"" the third volume of the trilogy that began with ""The Good Earth"" and ""Sons,"" is a powerful portrayal of China in the midst of revolution. Wang Yuan is caught between the opposing ideas of different generations. After 6 years abroad, Yuan returns to China in the middle of a peasant uprising. His cousin is a captain in the revolutionary army, his sister has scandalized the family by her premarital pregnancy, and his warlord father continues to cling to his traditional ideals. It is through Yuan's efforts that a kind of peace is restored to the family.","Jarka Ruus (High Druid of Shannara #1). More than a quarter of a century after ""The Sword of Shannara"" carved out its place in the pantheon of great epic fantasy, the magic of Terry Brooks's ""New York Times"" bestselling saga burns as brightly as ever. Three complete series have chronicled the ever-unfolding history of Shannara. But more stories are still to be told--and new adventures have yet to be undertaken. Book One of High Druid of Shannara invites both the faithful longtime reader and the curious newcomer to take the first step on the next extraordinary quest. Twenty years have passed since Grianne Ohmsford denounced her former life as the dreaded Ilse Witch--saved by the love of her brother, the magic of the Sword of Shannara, and the destruction of her evil mentor, the Morgawr. Now, fulfilling the destiny predicted for her, she has established the Third Druid Council, and dedicated herself to its goals of peace, harmony among the races, and defense of the Four Lands. But the political intrigue, secret treachery, and","Americana. At twenty-eight, David Bell is the American Dream come true. He has fought his way to the top, surviving office purges and scandals to become a top television executive. David's world is made up of the images that flicker across America's screens, the fantasies that enthrall America's imagination. And the dream--and the dream-making--become a nightmare. At the height of his success, David sets out to rediscover reality. Camera in hand, he journeys across the country in a mad and moving attempt to capture, to impose a pattern on his own, and America's past, present, and future.","Mao: The Unknown Story. The most authoritative life of the Chinese leader every written, Mao: The Unknown Story is based on a decade of research, and on interviews with many of Mao s close circle in China who have never talked before and with virtually everyone outside China who had significant dealings with him. It is full of startling revelations, exploding the myth of the Long March, and showing a completely unknown Mao: he was not driven by idealism or ideology; his intimate and intricate relationship with Stalin went back to the 1920s, ultimately bringing him to power; he welcomed Japanese occupation of much of China; and he schemed, poisoned, and blackmailed to get his way. After Mao conquered China in 1949, his secret goal was to dominate the world. In chasing this dream he caused the deaths of 38 million people in the greatest famine in history. In all, well over 70 million Chinese perished under Mao s rule in peacetime. ""","Dirk Gently's Holistic Detective Agency (Dirk Gently #1). What do a dead cat, a computer whiz-kid, an Electric Monk who believes the world is pink, quantum mechanics, a Chronologist over 200 years old, Samuel Taylor Coleridge (poet), and pizza have in common? Apparently not much; until Dirk Gently, self-styled private investigator, sets out to prove the fundamental interconnectedness of all things by solving a mysterious murder, assisting a mysterious professor, unravelling a mysterious mystery, and eating a lot of pizza - not to mention saving the entire human race from extinction along the way (at no extra charge). To find out more, read this book (better still, buy it, then read it) - or contact Dirk Gently's Holistic Detective Agency. 'A thumping good detective-ghost-horror-whodunnit-time travel-romantic-musical-comedy epic.' The author","A Winter Haunting (Seasons of Horror #2). A once-respected college professor and novelist, Dale Stewart has sabotaged his career and his marriage -- and now darkness is closing in on him. In the last hours of Halloween he has returned to the dying town of Elm Haven, his boyhood home, where he hopes to find peace in isolation. But moving into a long-deserted farmhouse on the far outskirts of town -- the one-time residence of a strange and brilliant friend who lost his young life in a grisly ""accident"" back in the terrible summer of 1960 -- is only the latest in his long succession of recent mistakes. Because Dale is not alone here. He has been followed to this house of shadows by private demons who are now twisting his reality into horrifying new forms. And a thick, blanketing early snow is starting to fall ...","A Briefer History of Time. FROM ONE OF THE MOST BRILLIANT MINDS OF OUR TIME COMES A BOOK THAT CLARIFIES HIS MOST IMPORTANT IDEAS Stephen Hawking's worldwide bestseller A Brief History of Timeremains a landmark volume in scientific writing. But for readers who have asked for a more accessible formulation of its key concepts--the nature of space and time, the role of God in creation, and the history and future of the universe--A Briefer History of Timeis Professor Hawking's response. Although ""briefer,"" this book is much more than a mere explanation of Hawking's earlier work. A Briefer History of Timeboth clarifies and expands on the great subjects of the original, and records the latest developments in the field--from string theory to the search for a unified theory of all the forces of physics. Thirty-seven full-color illustrations enhance the text and make A Briefer History of Timean exhilarating and must-have addition in its own right to the great literature of science and ideas.","Tales from Earthsea (Earthsea Cycle #5). Five stories of Ursula K. Le Guin's world-renowned realm of Earthsea are collected in one volume. Featuring two classic stories, two original tales, and a brand-new novella, as well as new maps and a special essay on Earthsea's history, languages, literature, and magic. The Finder Darkrose and Diamond The Bones of the Earth On the High Marsh Dragonfly","Henry IV Part 2. FOLGER Shakespeare Library The world's leading center for Shakespeare studies Each edition includes: Freshly edited text based on the best early printed version of the play Full explanatory notes conveniently placed on pages facing the text of the play Scene-by-scene plot summaries A key to famous lines and phrases An introduction to reading Shakespeare's language An essay by a leading Shakespeare scholar providing a modern perspective on the play Illustrations from the Folger Shakespeare Library's vast holdings of rare books Essay by A. R. Braunmuller The Folger Shakespeare Library in Washington, D.C., is home to the world's largest collection of Shakespeare's printed works, and a magnet for Shakespeare scholars from around the globe. In addition to exhibitions open to the public throughout the year, the Folger offers a full calendar of performances and programs. For more information, visit www.folger.edu.","Children of the Mind (Ender's Saga #4). Lusitania is home to three species, the Pequeninos, humans and the Hive Queen. All are in danger from the Starways Congress. Jane, the evolved computer intelligence can save them - Ender's children must save her if they are to save themselves.","Bruno's Dream. Bruno is nearly ninety. Obsessed with his past and a passion for spiders, he is the centre of a complex web of relationships involving his estranged son Miles; Danby, his hapless son-in-law; Danby's mistress, Adelaide; and her twin cousins, the vengeful Will and the mischievous, sinister Nigel.","Everyday Italian: 125 Simple and Delicious Recipes. In her hit Food Network show Everyday Italian, Giada De Laurentiis shows you how to cook delicious, beautiful food in a flash. And here, in her long-awaited first book, she does the same--helps you put a fabulous dinner on the table tonight, for friends or just for the kids, with a minimum of fuss and a maximum of flavor. She makes it all look easy, because it is. Everyday Italianis true to its title: the fresh, simple recipes are incredibly quick and accessible, and also utterly mouth-watering--perfect for everyday cooking. And the book is focused on the real-life considerations of what you actually have in your refrigerator and pantry (no mail-order ingredients here) and what you're in the mood for--whether a simply sauced pasta or a hearty family-friendly roast, these great recipes cover every contingency. So, for example, you'll find dishes that you can make solely from pantry ingredients, or those that transform lowly leftovers into exquisite entrees (including brilliant ideas for","Pioneer Girl: The Story of Laura Ingalls Wilder. The pioneer spirit lives on... Readers around the world know and love Laura, the little girl born in the Big Woods of Wisconsin and raised in covered wagons and on wide open prairies. Now Little House fans can learn more about ""Half-pint"" in this, the first picture book biography book of Laura Ingalls Wilder. With a simple, glowing text by noted historian and Little House scholar William Anderson, and glorious paintings by Dan Andreasen, Pioneer Girlis a very special portrait of a writer whose classic books and poineer adventures have made her one of the most popular literary figures in America. This picture-book biography of Laura Ingalls Wilder tells the remarkable story of the pioneer girl who would one day immortalize her adventures in the beloved Little House books. Written in simple, glowing text by noted Little House scholar William Anderson, and illustrated with glorious paintings by artist Dan Andreasen, this wonderful first biography captures the very essence of the little gi",Mark Twain's Adventures of Huckleberry Finn.,A Writer's Workbook: Daily Exercises for the Writing Life.,"The Conquest of Plassans (Les Rougon-Macquart #4). The Conquest of Plassans (Rougon-Macquart): The Rougon family, in M. Zola's narrative, rises to fortune, and the town of Plassans (really Aix-en-Provence) bows down before its power. But time passes, the revolt of the clergy supervenes, by their influence the town chooses a Royalist Marquis as deputy, and it becomes necessary to conquer it once again. --- Abbe Faujas, by whom this conquest is achieved on behalf of the Empire, is a strongly conceived character, perhaps the most real of all the priests that are scattered through M. Zola's books. No other priestly creation of M. Zola's pen vie with the stern, chaste, authoritative, ambitious Faujas, the man who subdues Plassans, and who wrecks the home of the Mouret family, with whom he lives. The book largely deals with the matter of 'the priest in the house, ' and towards the end of the volume Mouret, the husband who has been driven mad and shut up in a lunatic asylum, returns home and wreaks the most terrible vengeance upon those who h","The Ionian Mission (Aubrey/Maturin #8). Jack Aubrey and Stephen Maturin, veterans now of many battles, return in this novel to the seas where they first sailed as shipmates. But Jack is now a senior captain commanding a line-of-battle ship in the Royal Navy's blockade of Toulon, and this is a longer, harder, colder war than the dashing frigate actions of his early days. A sudden turn of events takes him and Stephen off on a hazardous mission to the Greek Islands, where all his old skills of seamanship and his proverbial luck when fighting against odds come triumphantly into their own.",The Reed Cutter & Captain Shigemoto's Mother.,"Manna from Heaven. This new collection includes all five previously uncollected ""Amber"" stories, plus the prologue from the rare limited edition of Trumps of Doom, and 16 other fantasy and science fiction stories (including a collaboration with Harlan Ellison).","The Virtue of Selfishness: A New Concept of Egoism. Ayn Randhere sets forth the moral principles of Objectivism, the philosophy that holds human life--the life proper to a rational being--as the standard of moral values and regards altruism as incompatible with man's nature, with the creative requirements of his survival, and with a free society. More than 1.3 million copies sold!",Chocolate and the Art of Low-Fat Desserts.,Robbins and Cotran Review of Pathology.,"The Eyre Affair (Thursday Next #1). Alternate cover edition . There is another 1985, where London's criminal gangs have moved into the lucrative literary market, and Thursday Next is on the trail of the new crime wave's Mr Big. Acheron Hades has been kidnapping characters from works of fiction and holding them to ransom. Jane Eyre is gone. Missing. Thursday sets out to find a way into the book to repair the damage. But solving crimes against literature isn't easy when you also have to find time to halt the Crimean War, persuade the man you love to marry you, and figure out who really wrote Shakespeare's plays. Perhaps today just isn't going to be Thursday's day. Join her on a truly breathtaking adventure, and find out for yourself. Fiction will never be the same again...","The Best of Ray Bradbury. Gr. 6-up. Here's a collection that will have graphic novel fans and die-hard Bradbury readers scrambling for the shelves. Some of the best artists in the business have adapted the author's short stories for the comics page. Each adaptation is accompanied by a preface by Bradbury, offering insight into the inspiration for the story, and each artist is paired with a story that suits his artwork perfectly. Among the best are ""Come into My Cellar,"" from Dave Gibbons (of Watchmen fame), a Tales from the Crypt -like story of invaders from outer space, complete with a cliff-hanger ending and retro artwork, and ""The Golden Apples of the Sun,"" adapted by P. Craig Russell (Sandman), an interstellar exploration of the uninhabitable star. A wonderful showcase of graphic novel artists and a great introduction for readers new to Bradbury's dark fantasy world. -Carlos Orellana","The Duplicate. When David finds a mysterious machine that can copy living things, he thinks his problems are over. By duplicating himself, he can visit his grandmother and keep his date with Angela. While the other David is in school, the real one can spend the day at the beach. The possibilities are endless... and terrifying. What begins as the solution to David's problems soon turns into a nightmarish struggle for identity. Then events take a horrifying turn that neither of the two Davids can controland that may have deadly consequences.","The Metamorphoses of Ovid. It is savage and sophisticated, mischievous and majestic, witty and wicked. In its earthiness, its psychological acuity, it speaks over the centuries to our time. And with this new ""fluid, readable, and accurate rendition"" (Library Journal), the Metamorphosesfor our age has been created. The Metamorphosesis a treasury of classical myths, filtered through the far from reverent sensibility of the Roman poet Ovid (43 B.C. - A.D. 17). It weaves together every major mythological story to display a dazzling array of miraculous metamorphoses, from the time chaos is transformed into order at the moment of creation, to the time when the soul of Julius Caesar is turned into a star and set in the heavens. Through the poetic artistry of Allen Mandelbaum, this glorious achievement of classical literature, whose influence is rivaled perhaps only by that of the Bible, is revealed anew. Declared the Bloomsburg, ""Mandelbaum's Ovid, like his Dante, is unlikely to be equalled for years to come.""","Night of the Fox (Dougal Munro and Jack Carter #1). On a secret sea maneuver just before D-Day, American Colonel Hugh Kelso goes down in the English Channel. Wounded and adrift for days, he washes ashore on the German-occupied island of Jersey. The news spreads panic through the Allied high command: Kelso knows the time and place of the invasion. He must be rescued -- or silenced. A British professor turned Nazi impersonator and a young Jersey girl posing as his mistress set off to find Kelso in the fiercely guarded island fortress. The pair join a deadly game of wits that they must win....or perish in the darkness of the ""Night of the Fox""",Animales No Se Visten Los (Animals Should Definitely Not Wear Clothing) with CD.,La chute. <>,"A Faith Like Mine. Using revealing photography and detailed personal accounts to give unique insight into the diversity of religious faith as experienced by children across the world, this is an ideal book for families to read together.","Mandie and the Jumping Juniper (Mandie #18). When Mandie and Celia left the United States to spend the summer traveling with Mrs. Taft through Europe, they didn't expect that each new place they visited would have a mystery and adventure all its own. But since boarding the Queen Victoria, it's been one episode after another. Traveling from Switzerland to Germany with Jonathan, Uncle Ned, and Senator Morton, they arrive at the medieval stone castle of Baroness Geissler. None of them know much about the castle, but with its many turrets, long narrow slits for windows, a drawbridge and moat, it's not a surprise when they discover there's a mystery surrounding it. A very old juniper tree that's located on the property is said to ""jump"" sometimes, and no one knows why. What is the secret of the jumping tree? And why is the baroness's grandson so rude and unlikeable? Will Snowball help them solve the mystery?","In Conquest Born (In Conquest Born #1). In Conquest Bornis the monumental science fiction epic that received unprecedented acclaim-and launched C.S. Friedman's phenomenal career. A sweeping story of two interstellar civilizations-locked in endless war, it was nominated for the John W. Campbell Award. From the back cover: Braxi and Azea - two interstellar civilizations fighting an endless war over a long-forgotten cause; two peoples descended from the human species and bred over countless generations to embody opposing ideals, seeking opposite paths to power. The Braxana - dominant tribe of the fierce Braxin Holding - are brilliant, powerful, and aloof from the society they rule. They were bred by their primitive forebearers to be aggressive, competitive, and secretive beyond all prior human norms. The mysteries of their internal society are legendary even among the people they rule. The Azeans - masters of genetic science - have redesigned their own race to reflect ancient ideals. Now they seek to unlock the powers of the hu",Ya Sé Que Te Quiero.,"Don DeLillo's White Noise: A Reader's Guide. A critical examination of ""White Noise"" by Don Delillo, this title forms part of a series that aims to provide accessible and informative introductions to some of the most popular, most acclaimed and most influential novels of recent years. A team of contemporary fiction scholars from both sides of the Atlantic has been assembled to give a thorough and readable analysis of each of the novels in question.The books in the series all follow the same five-part structure: a short biography of the novelist; a full-length study of the novel, drawing out the most important themes and ideas; a summary of how the novel was received when it was first published; a summary of the novel's standing today, including any film or television adaptations; and a helpful list of discussion questions, suggestions for further reading, and useful websites.",Huxley and God: Essays on Religious Experience.,"Pilgrims and Other Stories. A collection of short stories in which the characters misjudge things, find themselves in the wrong place, and who doggedly follow the wrong path, such as the vegetable market stallholder who decides to stand for election against the local Mafia boss.","Queen of the Underworld. Here at last is the eagerly awaited new novel from New York Times bestselling author Gail Godwin. Queen of the Underworld is sweeping and sultry literary fiction, featuring a memorable young heroine and engaging characters whose intimate dramas interconnect with hers. In the summer of 1959, as Castro clamps down on Cuba and its first wave of exiles flees to the States to wait out what they hope to be his short-lived reign, Emma Gant, fresh out of college, begins her career as a reporter. Her fierce ambition and belief in herself are set against the stories swirling around her, both at the newspaper office and in her downtown Miami hotel, which is filling up with refugees. Emma's avid curiosity about life thrives amid the tropical charms and intrigues of Miami. While toiling at the news desk, she plans the fictional stories she will write in her spare time. She spends her nights getting to know the Cuban families in her hotel-and rendezvousing with her married lover, Paul Nightingale, o",The Art of Being.,"The Eight. Katherine Neville's debut novel is a postmodern thriller set in 1972 ... and 1790. In the 20th century, Catherine Velis is a computer expert with a flair for music, painting, and chess who, on her way to Algeria at the behest of the accounting firm where she is employed, is invited to take a mysterious moonlighting assignment: recover the pieces of an old chess set missing for centuries. In the midst of the French Revolution, a young novice discovers that her abbey is the hiding place of a chess set, once owned by the great Charlemagne, which allows those who play it to tap into incredible powers beyond the imagination. She eventually comes into contact with the major historical figures of the day, from Robespierre to Napoleon, each of whom has an agenda. The Eightis a non-stop ride that recalls the swashbuckling adventures of Indiana Jones as well as the historical puzzles of Umberto Eco which, since its first publication in 1988, has gone on to acquire a substantial cult following.","Yakitate!! Japan Volume 7. The main competition in the Pantasia Rookie Tournament is finally over with Kazuma coming in first and pulling off a mind-blowing upset for Tsukino's South Tokyo Branch. But wait, what of Kazuma's rival/baking brother-in-arms Kawachi? Not content to simply sit on the sidelines, Kawachi challnges the dangerous and deadly Kai Suwabara for the third-place title. Suwabara claims that he can bake a French bread that's so good it literally dances. Can Kawachi counter Kai's terpsichorean treat with a loaf of bread that sings?","Money in the Bank. George Uffenham, the eccentric sixth Viscount of Uffenham, has sold most of his family fortune to buy jewelry he then hides in a secret place. Victim of a car accident, he loses his memory and can no longer remember where he hid the jewels. This forces him to leave the family pile and to return there, posing as a butler, to search for the lost gems.",Anne's House Of Dreams.,Murder from the East.,A Wife After God's Own Heart Growth and Study Guide.,"Theft: A Love Story. Michael Boone is an ex-""really famous"" painter acting as caretaker for his younger brother, a damaged man of childlike emotional volatility. When a mysterious woman comes into their lives, she upsets their delicate equilibrium sets in motion a chain of events that could be the making--or the ruin--of them all. From the two-time Booker Prize-winning author and recipient of the Commonwealth Prize comes this new novel about obsession, deception, and redemption, at once an engrossing psychological suspense story and a work of highly charged, fiendishly funny literary fiction. Michael--a.k.a. ""Butcher""--Boone is an ex-""really famous"" painter: opinionated, furious, brilliant, and now reduced to living in the remote country house of his biggest collector and acting as caretaker for his younger brother, Hugh, a damaged man of imposing physicality and childlike emotional volatility. Alone together they've forged a delicate and shifting equilibrium, a balance instantly destroyed when a mysteriou","Hard Candy. Hero Sandwichby Angela Knight: Take two handsome superheroes, add one bad girl gone good--and stand back while the sparks fly! Meg Jennings is more than a photographer-- she's Paparazzi, superhero shutterbug. Using the suit that gives her the ability to fly and turn invisible, she takes photos of superheroes in combat with their deadliest enemies. Some of Meg's subjects aren't exactly delighted with her work. Cougar and his sidekick Lynx, for example, find themselves the butt of the late-night talk show circuit because of one of Meg's photos.They decide to take erotic revenge, and soon Meg finds herself in a delicious hero sandwich. Candy for her Soulby Sheri Gilmore: There's a reason mama always said not to take candy from a stranger. Natalie Pesqua accepts candy from a persuasive stranger, never guessing she's traded her soul to the devil. In exchange for her soul, he grants the desire of her heart: two men to fulfill her every erotic fantasy. Love wasn't part of the bargain. Fortune","White Noise: Text and Criticism. Winner of the National Book Awardin 1985, White Noiseis the story of Jack and Babette and their children from their six or so various marriages. They live in a college town where Jack is Professor of Hitler Studies (and conceals the fact that he does not speak a word of German), and Babette teaches posture and volunteers by reading from the tabloids to a group of elderly shut-ins. They are happy enough until a deadly toxic accident and Babette's addiction to an experimental drug make Jake question everything.White Noiseis considered a postmodern classic and its unfolding of themes of consumerism, family and divorce, and technology as a deadly threat have attracted the attention of literary scholars since its publication. This Viking Critical Library edition, prepared by scholar Mark Osteen, is the only edition of White Noisethat contains the entire text along with an extensive critical apparatus, including a critical introduction, selected essays on the author, the work and its themes,","Poor People. because i was bad in my last life.because allah has willed it.because the rich do nothing for the poor.because the poor do nothing for themselves.because it is my destiny. These are just some of the answers to the simple yet groundbreaking question William T. Vollmann asks in cities and villages around the globe: ""Why are you poor?"" In the tradition of James Agee's Let Us Now Praise Famous Men, Vollmann's Poor People struggles to confront poverty in all its hopelessness and brutality, its pride and abject fear, its fierce misery and its quiet resignation. Poor People allows the poor to speak for themselves, explaining the causes and consequences of their impoverishment in their own cultural, social, and religious terms. There is the alcoholic mother in Buddhist Thailand, sure that her poverty is punishment for transgressions in a former life, and her ten-year-old daughter, whose faith in her own innocence gives her hope that her sin in the last life was simply being rich. There is the","Peter Pan and Other Plays. As well as being the author of the greatest of all children's plays, Peter Pan, J.M. Barrie also wrote sophisticated social comedy and political satire. The Admirable Crichton and What Every Woman Knows are shrewd and entertaining contributions to the politics of class and gender, while Mary Rose is one of the best ghost stories written for the stage. For this edition, the texts of these plays have been newly edited and are supplemented with an in-depth introduction and detailed annotations.","Mirror Mirror. The world was called Montefiore, as far as she knew, and from her aerie on every side all the world descended. The year is 1502, and seven-year-old Bianca de Nevada lives perched high above the rolling hills and valleys of Tuscany and Umbria at Montefiore, the farm of her beloved father, Don Vicente. There she spends her days cosseted by Primavera Vecchia, the earthy cook, and Fra Ludovico, a priest who tends to their souls between bites of ham and sips of wine. But one day a noble entourage makes its way up the winding slopes to the farm - and the world comes to Montefiore. In the presence of Cesare Borgia and his sister, the lovely and vain Lucrezia - decadent children of a wicked pope - no one can claim innocence for very long. When Borgia sends Don Vicente on a years-long quest to reclaim a relic of the original Tree of Knowledge, he leaves Bianca under the care - so to speak - of Lucrezia. She plots a dire fate for the young girl in the woods below the farm, but in the dark forest","Mockingbird Wish Me Luck. Mockingbird Wish Me Luckcaptures glimpses of Charles Bukowski's view on life through his poignant poetry: the pain, the hate, the love, and the beauty. He writes of lechery and pain while finding still being able to find its beauty.","The Art of the Ridiculous Sublime: On David Lynch's Lost Highway. The Art of the Ridiculous Sublimeis first of all the detailed reading of David Lynch's The Lost Highway, based on the premises of Lacanian psychoanalysis. Lynch's unique universe of the ""ridiculous sublime"" is interpreted as a simultaneous playful staging and traversing of the fundamental ideological fantasies that sustain our late capitalist society. A master of reversals, Zizek invites the reader to reexamine with him easy assumptions, received opinion, and current critical trends, as well as pose tough questions about the ways in which we understand our world and culture. He offers provocative readings of Casablanca, Schindler's List, and Life Is Beautiful in the process of examining topics as diverse--and as closely linked--as ethics, politics, and cyberspace.","The Rediscovery of North America. Five hundred years ago an Italian whose name, translated into English, meant Christopher Dove, came to America and began a process not of discovery, but incursion -- ""a ruthless, angry search for wealth"" that continues to the present day. This provocative and superbly written book gives a true assessment of Columbus's legacy while taking the first steps toward its redemption. Even as he draws a direct line between the atrocities of Spanish conquistadors and the ongoing pillage of our lands and waters, Barry Lopez challenges us to adopt an ethic that will make further depredations impossible. The Rediscovery of North America is a ringingly persuasive call for us, at long last, to make this country our home.",Angels & Insects.,Complete Guide to the Bible.,"The Black Echo (Harry Bosch #1; Harry Bosch Universe #1). BOOK 1 OF THE NATIONALLY BESTSELLING HARRY BOSCH SERIES, NOW A HIT TV SHOW! ""Michael Connelly is the master of the universe in which he lives, and that is the sphere of crime thrillers."" - Huffington Post For maverick LAPD homicide detective Harry Bosch, the body in the drainpipe at Mulholland Dam is more than another anonymous statistic. This one is personal...because the murdered man was a fellow Vietnam ""tunnel rat"" who had fought side by side with him in a hellish underground war. Now Bosch is about to relive the horror of Nam. From a dangerous maze of blind alleys to a daring criminal heist beneath the city, his survival instincts will once again be tested to their limit. Pitted against enemies inside his own department and forced to make the agonizing choice between justice and vengeance, Bosch goes on the hunt for a killer whose true face will shock him.","Sentimental Education. Based on Flaubert's own youthful passion for an older woman, Sentimental Education was described by its author as ""the moral history of the men of my generation."" It follows the amorous adventures of Frederic Moreau, a law student who, returning home to Normandy from Paris, notices Mme Arnoux, a slender, dark woman several years older than himself. It is the beginning of an infatuation that will last a lifetime. He befriends her husband, an influential businessman, and as their paths cross and re-cross over the years, Mme Arnoux remains the constant, unattainable love of Moreau's life. Blending love story, historical authenticity, and satire, Sentimental Education is one of the great French novels of the nineteenth century.",The French Kitchen: A Cookbook.,"I Don't Know How She Does It (Kate Reddy #1). THE INTERNATIONAL BESTSELLER The prequel to How Hard Can It Be? Meet Kate Reddy, fund manager and mother of two. Always time-poor, Kate counts seconds like other women count calories. Factor in a manipulative nanny, an Australian boss who looks at Kate's breasts as if they're on special offer, a long-suffering husband, her quietly aghast in-laws, two needy children and an email lover, and you have a woman juggling so many balls that some day something's going to hit the ground. In an uproariously funny and achingly sad novel, Allison Pearson brilliantly dramatises the dilemma of working motherhood at the start of the twenty-first century. If you could buy stock in a book, I would stake all my savings on the success of I Don't Know How She Does It. Here at last is the definitive social comedy of working motherhood - Washington Post Funny, fast and full of nail-on-the-head observations - Daily Telegraph","The Fifth Mountain. A Struggle of the Spirit and a Search for the Truth Written with the same masterful prose and clarity of vision that made The Alchemistan international phenomenon, The Fifth Mountainis Paulo Coelho's inspiring story of the Biblical prophet Elijah. In the ninth century B.C., the Phoenician princess Jezebel orders the execution of all the prophets who refuse to seek safety in the land of Zarephath, where the unexpectedly finds true love with a young widow. But this newfound rapture is to be cut short, and Elijah sees all of his hopes and dreams irrevocably erased as he is swept into a whirlwind of events that threatens his very existence. In what is truly a literary milestone, Coelho gives a quietly moving account of a man touched by the hand of God who must triumph over his frustrations in a soul-shattering trail of faith.","The Victim. Leventhal is a natural victim; a man uncertain of himself, never free from the nagging suspicion that the other guy may be right. So when he meets a down-at-heel stranger in the park one day and finds himself being accused of ruining the man's life, he half believes it.","Twilight (Twilight #1). About three things I was absolutely positive. First, Edward was a vampire. Second, there was a part of him--and I didn't know how dominant that part might be--that thirsted for my blood. And third, I was unconditionally and irrevocably in love with him. In the first book of the Twilight Saga, internationally bestselling author Stephenie Meyer introduces Bella Swan and Edward Cullen, a pair of star-crossed lovers whose forbidden relationship ripens against the backdrop of small-town suspicion and a mysterious coven of vampires. This is a love story with bite.","Fablehaven (Fablehaven #1). For centuries mystical creatures of all description were gathered into a hidden refuge called Fablehaven to prevent their extinction. The sanctuary survives today as one of the last strongholds of true magic. Enchanting? Absolutely. Exciting? You bet. Safe? Well, actually, quite the opposite. Kendra and her brother, Seth, have no idea that their grandfather is the current caretaker of Fablehaven. Inside the gated woods, ancient laws keep relative order among greedy trolls, mischievous satyrs, plotting witches, spiteful imps, and jealous fairies. However, when the rules get broken -- Seth is a bit too curious and reckless for his own good -- powerful forces of evil are unleashed, and Kendra and her brother face the greatest challenge of their lives. To save their family, Fablehaven, and perhaps even the world, Kendra and Seth must find the courage to do what they fear most.","No Ordinary Time: Franklin and Eleanor Roosevelt: The Home Front in World War II. Winner of the Pulitzer for History, No Ordinary Timeis a chronicle of one of the most vibrant & revolutionary periods in US history. With an extraordinary collection of details, Goodwin weaves together a number of story lines--the Roosevelt's marriage & partnership, Eleanor's life as First Lady, & FDR's White House & its impact on America as well as on a world at war. Goodwin melds these into an intimate portrait of Eleanor & Franklin Roosevelt & of the time during which a new, modern America was born. Preface ""The decisive hour has come"" ""A few nice boys with BB guns"" ""Back to the Hudson"" ""Living here is very oppressive"" ""No ordinary time"" ""I am a juggler"" ""I can't do anything about her"" ""Arsenal of democracy"" ""Business as usual"" ""A great hour to live"" ""A completely changed world"" ""Two little boys playing soldier"" ""What can we do to help?"" ""By god, if it ain't Old Frank!"" ""We are striking back"" ""The greatest man I have ever known"" ""It is blood on your hands"" ""It was a sight I will nev","Legacy of Blood (Diablo #1). Since the beginning of time, the angelic hosts of the High Heavens and the demonic hordes of the Burning Hells have been locked in a struggle for the fate of all Creation. That struggle has now come to the mortal realm...and neither Man nor Demon nor Angel will be left unscathed... Norrec Vizharan has become a living nightmare. While on a quest to find magical treasure, the soldier of fortune discovers an artifact beyond his wildest dreams: the ancient armor of Bartuc, the legendary Warlord of Blood. But the mysterious armor soul. Now, pursued by demons who covet the dark armor for their own devices, Norrec must overcome a bloodlust he can scarcely control and learn the truth about his terrifying curse before he is lost to darkness forever...","Stand on Zanzibar. Norman Niblock House is a rising executive at General Technics, one of a few all-powerful corporations. His work is leading General Technics to the forefront of global domination, both in the marketplace and politically--it's about to take over a country in Africa. Donald Hogan is his roommate, a seemingly sheepish bookworm. But Hogan is a spy, and he's about to discover a breakthrough in genetic engineering that will change the world ... and kill him. These two men's lives weave through one of science fiction's most praised novels. Written in a way that echoes John Dos Passos' U.S.A. Trilogy, Stand on Zanzibaris a cross-section of a world overpopulated by the billions. Where society is squeezed into hive-living madness by god-like mega computers, mass-marketed psychedelic drugs, and mundane uses of genetic engineering. Though written in 1968, it speaks of 2010, and is frighteningly prescient and intensely powerful. This edition comes with a tipped in collectors' note and an introducti","The Collapse of the Third Republic. On June 17, 1940 William L. Shirer stood in the streets of Paris and watched the unending flow of gray German uniforms along its boulevards. In just six lovely weeks in the spring and summer of 1940 a single battle brought down in total military defeat one of the world's oldest, greatest, and most civilized powers--the second mightiest empire on earth and the possessor of one of the finest military machines ever assembled. How did it happen? After nearly a decade of research in the massive archives left from World War II and after hundreds of conversations with the Third Republic's leaders, generals, diplomats, and ordinary citizens, Shirer presents the definitive answer in his stunning re-creation of why and how France fell before Hitler's armies in 1940. His book is also a devastating examination of the confusion, corruption, and cynicism that drained the strength and toughness of a democracy which Thomas Jefferson once called ""every man's second country."" This book complements and c","Playing Shakespeare: An Actor's Guide. Now in its first American edition, Playing Shakespeareis the premier guide to understanding and appreciating the mastery of the world's greatest playwright. Together with Royal Shakespeare Company actors-among them Patrick Stewart, Judi Dench, Ian McKellen, Ben Kingsley, and David Suchet-John Barton demonstrates how to adapt Elizabethan theater for the modern stage. The director begins by explicating Shakespeare's verse and prose, speeches and soliloquies, and naturalistic and heightened language to discover the essence of his characters. In the second section, Barton and the actors explore nuance in Shakespearean theater, from evoking irony and ambiguity and striking the delicate balance of passion and profound intellectual thought, to finding new approaches to playing Shakespeare's most controversial creation, Shylock, from The Merchant of Venice. A practical and essential guide, Playing Shakespearewill stand for years as the authoritative favorite among actors, scholars, teachers, a","Reading Lolita in Tehran. Every Thursday morning for two years in the Islamic Republic of Iran, a bold and inspired teacher named Azar Nafisi secretly gathered seven of her most committed female students to read forbidden Western classics. As Islamic morality squads staged arbitrary raids in Tehran, fundamentalists seized hold of the universities, and a blind censor stifled artistic expression, the girls in Azar Nafisi's living room risked removing their veils and immersed themselves in the worlds of Jane Austen, F. Scott Fitzgerald, Henry James, and Vladimir Nabokov. In this extraordinary memoir, their stories become intertwined with the ones they are reading. Reading Lolita in Tehran is a remarkable exploration of resilience in the face of tyranny and a celebration of the liberating power of literature.","Koko's Kitten. Koko the gorilla uses sign language to talk to her handlers. When she asks for a pet, her handlers search high and low for the perfect companion.","Eclogues. Georgics. Aeneid: Books 1-6. Virgil (Publius Vergilius Maro) was born in 70 BCE near Mantua and was educated at Cremona, Milan and Rome. Slow in speech, shy in manner, thoughtful in mind, weak in health, he went back north for a quiet life. Influenced by the group of poets there, he may have written some of the doubtful poems included in our Virgilian manuscripts. All his undoubted extant work is written in his perfect hexameters. Earliest comes the collection of ten pleasingly artificial bucolic poems, the ""Eclogues,"" which imitated freely Theocritus's idylls. They deal with pastoral life and love. Before 29 BCE came one of the best of all didactic works, the four hooks of Georgics on tillage, trees, cattle, and bees. Virgil's remaining years were spent in composing his great, not wholly finished, epic the ""Aeneid,"" on the traditional theme of Rome's origins through Aeneas of Troy. Inspired by the Emperor Augustus's rule, the poem is Homeric in metre and method but influenced also by later Greek and Roman literat",Dale Loves Sophie to Death. Robb Forman Dew's cult first novel explores themes of familial and romantic bonds as it tells the story of a woman whose husband stays behind in New England while she and their children spend the summer in her Midwestern hometown.,"Warrior Angel. Once a dedicated soldier of the Knights Templar, Derek de Molay was betrayed and killed. So instead of an eternity in Heaven, he has decided to battle the Dark Angels of Hell. But as the war between good and evil rages, he is summoned back to the mortal realm to protect a woman standing too close to the edge of darkness. Rachel Duncan has never felt this way before. A mysterious man is intent on seducing her with expensive gifts and trips on his private plane, yet it is Derek, a breathtaking stranger, who tugs at her heart. With him, there is laughter, light . . . and love. But Derek tells an impossible, insane story, though deep in her heart she knows it to be true. Now Derek and Rachel must race against time to save the mortal souls of mankind . . . and each other.","Fractal Mode (Mode #2). Five special people are the anchor points to a path across parallel universes. There is Darius, of the sympathetic magic...Nona, the ninth child of a ninth child...Seqiro, the telepathic horse...Provos, who remembers only the future...and Colene, the girl from Earth who learned that all dreams are possible. Held captive in Nona's home universe, Colene and her friends must help fulfill a dangerous prophecy--that one day women will take the power of magic away from the cruel men who control it. But first, Nona must cross the barrier to another universe...to that strange and unpredictable place called Earth.","Demons. Set in mid 19th-century Russia, Demons examines the effect of a charismatic but unscrupulous self-styled revolutionary leader on a group of credulous followers.Inspired by the true story of a political murder that horrified Russians in 1869, Fyodor Dostoevsky conceived of Demonsas a ""novel-pamphlet"" in which he would say everything about the plague of materialist ideology that he saw infecting his native land. What emerged was a prophetic and ferociously funny masterpiece of ideology and murder in pre-revolutionary Russia-a novel that is rivaled only by The Brothers Karamazovas Dostoevsky's greatest. The award-winning translators Richard Pevear and Larissa Volokhonsky continue their acclaimed series of Dostoevsky translations with this novel, also known as The Possessed. (Book Jacket Status: Jacketed)","The Ethics of Rhetoric. Weaver's Ethics of Rhetoric, originally published in 1953, has been called his most important statement on the ethical and cultural role of rhetoric. A strong advocate of cultural conservatism, Weaver (1910-1953) argued strongly for the role of liberal studies in the face of what he saw as the encroachments of modern scientific and technological forces in society. He was particularly opposed to sociology. In rhetoric he drew many of his ideas from Plato, especially his Phaedrus. As a result, all the main strands of Weaver's thought can be seen in this volume, beginning with his essay on the Phaedrus and proceeding through his discussion of evolution in the 1925 Scopes Monkey Trial. In addition, this book includes studies of Lincoln, Burke, and Milton, and remarks about sociology and some proposals for modern rhetoric. Each essay poses issues still under discussion today.",Master Index: An Illustrated Guide.,"Bizarre World. This is a collection of tall tales, absurd stories, and crazy true-life anecdotes.",Europe and the People Without History. The intention of this work is to show that European expansion not only transformed the historical trajectory of non-European societies but also reconstituted the historical accounts of these societies before European intervention. It asserts that anthropology must pay more attention to history.,Nikola Tesla: A Spark of Genius.,"Alien. Based on the screenplay by Dan O'Bannon. The crew of the spaceship Nostromo wake from cryogenic sleep to distress signals from an unknown planet. One is attacked when they investigate a derelict alien craft. Safely on their way back to Sol, none foresee the real horror about to begin.","The Book of Questions. A best-selling volume of Pablo Neruda's poetry in an English-Spanish edition. Pablo Neruda is one of the world's most popular poets, and in The Book of Questions, Neruda refuses to be corralled by the rational mind. Composed of 316 unanswerable questions, these poems integrate the wonder of a child with the experiences of an adult. By turns Orphic, comic, surreal, and poignant, Neruda's questions lead the reader beyondreason into realms of intuition and pure imagination. This complete translation of Pablo Neruda's El libro de las preguntas(The Book of Questions) features Neruda's original Spanish-language poems alongside William O'Daly's English translations. In his introduction O'Daly, who has translated eight volumes of Pablo Neruda's poetry, writes, ""These poems, more so than any of Neruda's other work, remind us that living in a state of visionary surrender to the elemental questions, free of the quiet desperation of clinging too tightly to answers, may be our greatest act of faith",Sweet Dreams Mimi (Baby Einstein).,"True Believer (Jeremy Marsh & Lexie Darnell #1). Jeremy Marsh is the ultimate New Yorker: handsome, almost always dressed in black, and part of the media elite. An expert on debunking the supernatural with a regular column in ""Scientific American,"" he's just made his first appearance on national TV. When he receives a letter from the tiny town of Boone Creek, North Carolina, about ghostly lights that appear in a legend-shrouded cemetery, he can't resist driving down to investigate. Here, in this tightly knit community, Lexie Darnell runs the town's library, just as her mother did before the accident that left Lexie an orphan. Disappointed by past relationships, including one that lured her away from home, she is sure of one thing: her future is in Boone Creek, close to her grandmother and all the other people she loves. Jeremy expects to spend a quick week in ""the sticks"" before speeding back to the city. But from the moment he sets eyes on Lexie, he is intrigued and attracted to this beautiful woman who speaks with a soft drawl and",JoJo's Bizarre Adventure Vol. 5 (Stardust Crusaders #5).,"Brevísima historia del tiempo. En 1988 aparecio un libro que iba a cambiar de arriba abajo nuestra concepcion del universo y que se convirtio en uno de los mayores best sellerscientificos: HISTORIA DEL TIEMPO, de Stephen Hawking, el mayor genio del siglo XX despues de Einstein. Pese a su exito colosal, aquel libro presentaba algunas dificultades de comprension para el publico menos familiarizado con los principios de la fisica teorica. Ahora, diecisiete anos despues, el profesor Hawking ha escrito este libro maravilloso y sencillo que, potenciado por increibles imagenes, pone al alcance del comun de los mortales los grandes misterios del mundo y de la vida.","The Vampire Lestat (The Vampire Chronicles #2). Once an aristocrat in the heady days of pre-revolutionary France, now Lestat is a rockstar in the demonic, shimmering 1980s. He rushes through the centuries in search of others like him, seeking answers to the mystery of his terrifying exsitence. His story, the second volume in Anne Rice's best-selling Vampire Chronicles, is mesmerizing, passionate, and thrilling.",Next: The Future Just Happened.,"Black Friday. The breathtaking suspense of Kiss the Girlsand the authenticity of N.Y.P.D. Blue: Welcome to James Patterson's classic superthriller, Black Friday. A courageous federal agent, a powerful and resourceful woman lawyer - only they can possibly stop the unspeakable from happening. New York City is under siege by a secret militia group - and that's just the beginning of the relentless terror of Black Friday.I love to lose myself in a thriller -- especially the rare one that moves along like an out-of-control freight train. The thriller that actually got me started writing was The Day of the Jackal. With Black Friday, I wanted to concoct a shamelessly manipulative story that the reader couldn't wait to finish, but didn't want to end. Now get on this freight train!--- James Patterson Originally published in 1987 as Black Market, also by James Patterson.",The Lighthouse at the End of the World.,"Howards End. One of Forster's masterpieces, this book is about three families in England at the beginning of the 20th century. The families represent different gradations of the Edwardian middle class: the Wilcoxes, who are rich capitalists with a fortune made in the Colonies; the half-German Schlegel siblings (Margaret, Tibby & Helen), who represent the intellectual bourgeoisie & have a lot in common with the real-life Bloomsbury Group; & the Basts, a couple who are struggling members of the lower-middle class. The Schlegel sisters try to help the poor Basts & try to make the Wilcoxes less prejudiced.","The Doctor is Sick. Dr. Edwin Spindrift has been sent home from Burma with a brain tumor. Closer to words than to people, his sense of reality is further altered by his condition. When he escapes from the hospital the night before his surgery, things and people he hardly knew existed outside of his dictionaries swoop down on him as he careens through adventures in nighttime London.","Shipwreck (Island I). Six kids. One fate. They didn't want to be on the boat in the first place. They were sent there as a character-building experience. But now that the adults are gone, the quest for survival has begun. This first book in a suspenseful survival trilogy delivers the gripping drama of people battling the elements to younger readers.","Conversations with God: An Uncommon Dialogue Book 1. Suppose you could ask God the most puzzling questions about existence - questions about love and faith, life and death, good and evil. Suppose God provided clear, understandable answers. It happened to Neale Donald Walsch. It can happen to you. You are about to have a conversation... I have heard the crying of your heart. I have seen the searching of your soul. I know how deeply you have desired the Truth. In pain have you called out for it, and in joy. Unendingly have you beseeched Me. Show Myself. Explain Myself. Reveal Myself. I am doing so here, in terms so plain, you cannot misunderstand. In language so simple, you cannot be confused. In vocabulary so common, you cannot get lost in the verbiage. So go ahead now. Ask Me anything. Anything. I will contrive to bring you the answer. The whole universe will I use to do this. So be on the lookout; this book is far from My only tool. You may ask a question, then put this book down. But watch. Listen. The words to the next song you hear.","The World as Will and Representation Vol. 1. Arthur Schopenhauer's Die Welt als Wille und Vorstellungis one of the most important philosophical works of the nineteenth century, the basic statement of one important stream of post-Kantian thought. It is without question Schopenhauer's greatest work. Conceived and published before the philosopher was 30 and expanded 25 years later, it is the summation of a lifetime of thought. For 70 years, the only unabridged English translation of this work was the Haldane-Kemp collaboration. In 1958, a new translation by E. F. J. Payne appeared that decisively supplanted the older one. Payne's translation is superior because it corrects nearly 1,000 errors and omissions in the Haldane-Kemp translation, and it is based on the definitive 1937 German edition of Schopenhauer's work prepared by Dr. Arthur Hubscher. Payne's edition is the first to translate into English the text's many quotations in half a dozen languages. It is thus the most useful edition for the student or teacher.","Where We Stand: Class Matters. Drawing on both her roots in Kentucky and her adventures with Manhattan Coop boards, Where We Standis a successful black woman's reflection--personal, straight forward, and rigorously honest--on how our dilemmas of class and race are intertwined, and how we can find ways to think beyond them.","Black Hawk Down: A Story of Modern War. In 1993, a band of U.S. soldiers in Somalia were on a mission to capture two lieutenants of a Somali warlord. Through the night, in the longest sustained fighting by American troops since Vietnam, they battled thousands of armed Somalis. By morning, 18 Americans were dead. Now a major motion picture from Columbia Pictures, directed by Ridley Scott and starring Ewan McGregor, Josh Hartnett, and Sam Shepard, set for release in March 2002.","Blue Shoes and Happiness (No. 1 Ladies' Detective Agency #7). There is considerable excitement at The No. 1 Ladies' Detective Agency. A cobra has been found in Precious Ramotswe's office. Then a nurse from a local medical clinic reveals that faulty blood-pressure readings are being recorded there. And Botswana has a new advice columnist, Aunty Emang, whose advice is rather curt for Mma Ramotswe's taste. In this latest installment in the internationally best-selling, universally beloved series, there is considerable excitement at The No. 1 Ladies' Detective Agency. A cobra has been found in Precious Ramotswe's office. Then a nurse from a local medical clinic reveals that faulty blood-pressure readings are being recorded there. And Botswana has a new advice columnist, Aunty Emang, whose advice is rather curt for Mma Ramotswe's taste. All this means a lot of work for our heroine and her inestimable assistant, Grace Makutsi, and they are, of course, up to the challenge. But there's trouble brewing in Mma Makutsi's own life. When Phuti Radiphuti misse","The Mambo Kings Play Songs of Love. It's 1949, the era of the mambo, and two young Cuban musicians make their way from Havana to New York. The Castillo brothers, workers by day, become, by night, stars of the dance halls, where their orchestra plays the sensuous, pulsing music that earns them the title of the Mambo Kings. This is a golden time that thirty years later will be remembered with deep affection. In The Mambo Kings Play Songs of Love, Oscar Hijuelos has created an enthralling novel about passion and loss, memory and desire.This P.S. edition features an extra 16 pages of insights into the book, including author interviews, recommended reading, and more.","Merry Christmas Amelia Bedelia. On Christmas Eve, Amelia Bedelia has to get the Rogers house ready for a visit from Aunt Myra. But as usual, Amelia takes directions literally and turns the house upside down delicious. Cake has lots of dates. Six cups popcorn for balls, and more for tree. Greet her with carols. Trim tree. String lights. Put a big star on top of the tree.","The Celestine Prophecy. You have never read a book like this before -- a book that comes along once in a lifetime to change lives forever. In the rain forests of Peru, an ancient manuscript has been discovered. Within its pages are 9 key insights into life itself -- insights each human being is predicted to grasp sequentially; one insight, then another, as we move toward a completely spiritual culture on Earth. Drawing on ancient wisdom, it tells you how to make connections among the events happening in your life right now and lets you see what is going to happen to you in the years to come. The story it tells is a gripping one of adventure and discovery, but it is also a guidebook that has the power to crystallize your perceptions of why you are where you are in life and to direct your steps with a new energy and optimisim as you head into tomorrow.","The Hero and the Crown (Damar #2). AERIN COULD NOT REMEMBER A TIME WHEN SHE HAD NOT KNOWN THE STORY; SHE HAD GROWN UP KNOWING IT. It was the story of her mother, the witchwoman who enspelled the king into marrying her, to get an heir that would rule Damar; and it was told that she turned her face to the wall and died of despair when she found she had borne a daughter instead of a son. Aerin was that daughter. But there was more of the story yet to be told; Aerin's destiny was greater than even she had dreamed--for she was to be the true hero who would wield the power of the Blue Sword ...","The Walrus Was Paul: The Great Beatle Death Clues. PAUL IS DEAD. It was the late 1960s, the Beatles hadn't toured since 1966, and some truly bizarre indications began appearing, pointing to the unthinkable: Paul McCartney had been killed in a car accident and replaced by a look-alike. The Walrus Was Paul unearths every single clue from one of rock 'n' roll's most enduring puzzles and takes you on a magical mystery tour of baffling, yet fascinating, hints for solving this mystery. Test your ""Paul is dead"" trivia knowledge.","Diary of a Spider. This is the diary... of a spider. But don't be worried - he's more scared of you and your gigantic shoe! Actually, he's a lot like you. He goes to gym class and has Grandparents' Day at school. But he also spins sticky webs, scales walls, and takes wind-catching lessons. Lucky for him, his best friend is a fly! Doreen Croninand Harry Bliss, the team behind the #1 bestselling Diary Of A Worm, spin a hilarious tale about the upside-down web world of an eight-legged charmer and his unlikely friend, Fly.","From Far Away Vol. 12. After a terrorist bomb catapults her into an alternate universe full of magic and mystery, teenage Noriko finds herself the central figure in a political power struggle over a dark prophecy she's destined to fulfill, turning the man she loves into a monster that could ultimately destroy the world. With the evil Brunei brothers hot on their trail, Noriko and her doomed warrior Izark follow Clairgeeta to the rebel enclave in the fortified city of Ennamarna. But the reunion with old friends is quickly interrupted. Corrupt local officials plan to oust the fugitives and turn the walled city into an enemy military base. While Noriko and Izark once again use their power to save their friends from the greedy government, their enemies in Reinka are joining forces, mixing up new magic that they hope will bring the evil prophecy that much closer to coming true.","Jane Eyre. Jane Eyre (1847) has enjoyed huge popularity since first publication, and its success owes much to its exceptional emotional power. Jane Eyre, a penniless orphan, is engaged as governess at Thornfield Hall by the mysterious Mr Rochester. Her integrity and independence are tested to the limit as their love for each other grows, and the secrets of Mr Rochester's past are revealed. A brilliant new edition of this flagship of Victorian fiction, this book includes a new introduction and revised notes from one of the foremost Bronte scholars. This text is based on the definitive Clarendon edition, based on the original editions of Bronte's great work.""","The Path Between the Seas: The Creation of the Panama Canal 1870-1914. On December 31, 1999, after nearly a century of rule, the United States officially ceded ownership of the Panama Canal to the nation of Panama. That nation did not exist when, in the mid-19th century, Europeans first began to explore the possibilities of creating a link between the Atlantic and Pacific oceans through the narrow but mountainous isthmus; Panama was then a remote and overlooked part of Colombia. All that changed, writes David McCullough in his magisterial history of the Canal, in 1848, when prospectors struck gold in California. A wave of fortune seekers descended on Panama from Europe and the eastern United States, seeking quick passage on California-bound ships in the Pacific, and the Panama Railroad, built to serve that traffic, was soon the highest-priced stock listed on the New York Exchange. To build a 51-mile-long ship canal to replace that railroad seemed an easy matter to some investors. But, as McCullough notes, the construction project came to involve the effor","Cross (Alex Cross #12). Alex Cross was a rising star in the Washington, DC, Police Department when an unknown shooter gunned down his wife, Maria, in front of him. The killer was never found, and the case turned cold, filed among the unsolved drive-bys in D.C.'s rough neighborhoods. Years later, still haunted by his wife's death, Cross is making a bold move in his life. Now a free agent from the police and the FBI, he's set up practice as a psychologist once again. His life with Nana Mama, Damon, Jannie, and little Alex is finally getting in order. He even has a chance at a new love. Then Cross's former partner, John Sampson, calls in a favor. He is tracking a serial rapist in Georgetown, one whose brutal modus operandi recalls a case Sampson and Cross worked together years earlier. When the case reveals a connection to Maria's death, Cross latches on for the most urgent and terrifying ride of his life. From the man USA TODAY has called the ""master of the genre,"" CROSS is the high-velocity thriller James Patt",Das Tulpenhaus oder Bekenntnisse einer häßlichen Stiefschwester.,"Night of Long Shadows (Eberron: Inquisitives #2). Explore the dark under-belly of Khorvaire with Eberron's version of the private detective - The Inquisitives! Nights of the Long Shadow: the three nights of the year when the darkest powers of the world gain strength and rise to prey upon the unwary. When one of Sharn's most famed Inquisitives is hired to investigate a brutal murder at Morgrave University, his brilliance may be his damnation, as he uncovers a trail of blood leading from the deediest neighborhoods of the City of Towers to the highest reaches of power.","Death in the Andamans. Death in the Andamans is a masterpiece of mystery and romance from one of our most beloved authors. When a violent storm lashes the tiny Andaman Islands in the Bay of Bengal, Copper Randal barely manages a safe return to Government House. She does get back in one piece with her hostess, Valerie Masson, Val's fiance, and handsome naval officer Nick Tarrent, but one of the islanders is unaccounted for when the boats return to harbor. Cut off from the mainland and confined to the shadowy, haunted guest quarters, Copper and the other visitors conclude that one of their number is a murderer. The killer must be found before the storm destroys all trace of any possible clues. In Death in the Andamans M.M. Kaye has created the perfect blend of exotic setting and expertly crafted whodunit that mark her as one of our greatest literary talents.","Jenny. When Jenny was published in 1911, Undset found herself called immoral -- ""this is a side of the free, artistic life that the vast majority of citizens would rather not know."" The novel tells the story of Jenny Winge, a talented Norwegian painter who goes to Rome to seek artistic inspiration but ultimately betrays her own ambitions and ideals. After falling into an affair with the married father of a would-be suitor, Jenny has a baby out-of- wedlock and decides to raise the child on her own. Undset' s portrayal of a woman struggling toward independence and fulfillment is written with an unflinching, clear-eyed honesty that renders her story as compelling today as it was nearly a century ago. This new translation by Tiina Nunnally captures the fresh, vivid style of Undset's writing and restores passages omitted from the only previous edition to appear in English, which was published in 1921. Most famous for her later, historical fiction set in Catholic, medieval Scandinavia, Undset stand","We Are Michael Field. Consortium welcomes Outlines from Absolute Press, an impressive and mature series chronicling the lives of some of the most exceptional and influential gay and lesbian artists of our time.","Team of Rivals: The Political Genius of Abraham Lincoln. The life and times of Abraham Lincoln have been analyzed and dissected in countless books. Do we need another Lincoln biography? In Team of Rivals, esteemed historian Doris Kearns Goodwin proves that we do. Though she can't help but cover some familiar territory, her perspective is focused enough to offer fresh insights into Lincoln's leadership style and his deep understanding of human behavior and motivation. Goodwin makes the case for Lincoln's political genius by examining his relationships with three men he selected for his cabinet, all of whom were opponents for the Republican nomination in 1860: William H. Seward, Salmon P. Chase, and Edward Bates. These men, all accomplished, nationally known, and presidential, originally disdained Lincoln for his backwoods upbringing and lack of experience, and were shocked and humiliated at losing to this relatively obscure Illinois lawyer. Yet Lincoln not only convinced them to join his administration--Seward as secretary of state, Chase as","Seven Soldiers of Victory Volume 1. One of the most creative minds in comics, Grant Morrison (All-Star Superman, The Invisibles) delivers his most groundbreaking and ambitious project yet: Seven Soldiers! Comprising seven different 4-issue miniseries and two bookend Specials, this colossal 30-part tale of death, betrayal, failure, joy, loss, romance, triumph and redemption is now collected in a 4-volume series of trade paperbacks! Independently, each of these characters are featured in a story arc of their own that redefines their purpose in the DCU. But their stories also interweave with the other Soldiers' tales, forming a grander story of a devastating global threat to mankind - with the ties between them becoming more evident in each new volume. Together these reluctant champions must arise and somehow work together to save the world...without ever meeting one another! Collecting: Seven Soldiers of Victory0, The Shinning Knight1-2, The Guardian1-2, Zatanna1-2, Klarion, the Witchboy1","Up in a Heaval (Xanth #26). A Spot of Trouble An innocent piece of Mundane Snail Mail has provoked the dreaded Demon Jupiter to hurl his Red Spot at the magical land of Xanth. As the dire Dot draws closer, the unwelcome ordeal of saving the enchanted realm falls to Umlaut, an unlikely lad with an unknown past and an uncertain future. With a handful of colorful companions at his side, Umlaut must unravel a high-stakes intergalactic puzzle, uncover the secret of his mysterious past, and learn to understand the urgings of his own heart. It might have been the merest chance that brought Umlaut to Castle Zombie that morning and launched him on a harrowing adventure. But in the magical land of Xanth, things are seldom left to chance, and adventures lurk around every corner. An unassuming young man with a uncanny knack for attracting lovely young ladies and an uncommon talent for emulating anyone he wished, Umlaut was forced to flee a flock of overly friendly females by disguising himself as a Zombie girl. In his haste",Lo único que no podrás hacer en el cielo.,The John Deere Two-Cylinder Tractor Encyclopedia: The Complete Model-by-Model History.,"The Road to Yesterday (Anne of Green Gables #9). For Anne and Gilbert Blythe, life in a small village is never dull because of all the entertaining gossip, and what strange and funny tales they hear: about the mischievous twins whose dearest wish comes true when they meet up with a bored and haunted millionaire; or clever Penelope Craig, who considers herself an expert on children -- until she adopts a boy of her own; or Timothy Randebush, a man so eager to keep his brother out of the clutches of a dangerous woman that he spirits her away -- only to fall prey to her charms himself. Filled with unexpected surprises, laughter, and tears, here are fourteen of the Blythes' favorite tales.","The Coming of the Fairies. Sir Arthur Conan Doyle, best known as the creator of Sherlock Holmes but also a devout spiritualist, was entirely convinced by a set of photographs seemingly showing two young girls playing with a group of tiny, translucent fairies. To demonstrate his unshakable belief in the spirit world, the celebrated writer published, in 1922, The 'Coming of the Fairies'. It recounts the story of the photos, their supposed provenance, and the startling implications of their existence. One of the great hoaxes of all time, the Cottingley Fairy photographs are proof of mankind s willingness to believe. Conan Doyle s book, reprinted here with the original photographs, offers a unique insight into the mind of an intelligent, highly respected figure, who just happened to believe in fairies.","It Doesn't Take a Hero: The Autobiography of General H. Norman Schwarzkopf. He set his star by a simple motto: duty, honor, country. Only rarely does history grant a single individual the ability, personal charisma, moral force, and intelligence to command the respect, admiration, and affection of an entire nation. But such a man is General H. Norman Schwarzkopf, commander of the Allied Forces in the Gulf War. Now, in this refreshingly candid and typically outspoken autobiography, General Schwarzkopf reviews his remarkable life and career: the events, the adventures, and the emotions that molded the character and shaped the beliefs of this uniquely distinguished American leader.","Truman. The Pulitzer Prize-winning biography of Harry S. Truman, whose presidency included momentous events from the atomic bombing of Japan to the outbreak of the Cold War and the Korean War, told by America's beloved and distinguished historian. The life of Harry S. Truman is one of the greatest of American stories, filled with vivid characters--Roosevelt, Churchill, Stalin, Eleanor Roosevelt, Bess Wallace Truman, George Marshall, Joe McCarthy, and Dean Acheson--and dramatic events. In this riveting biography, acclaimed historian David McCullough not only captures the man--a more complex, informed, and determined man than ever before imagined--but also the turbulent times in which he rose, boldly, to meet unprecedented challenges. The last president to serve as a living link between the nineteenth and the twentieth centuries, Truman's story spans the raw world of the Missouri frontier, World War I, the powerful Pendergast machine of Kansas City, the legendary Whistle-Stop Campaign of 1948, a",Cloak and Dagger (Tom Clancy's Net Force Explorers #17).,"The Common Good. ""How adroitly he cuts through the crap and really says something, "" describes The Village Voiceof world-famous political writer and lecturer Noam Chomsky. In his latest report on the state of the world, Chomsky discusses a breathtaking variety of topics, ranging from Japan's trade policies to the ""war"" on drugs, corporate welfare, and much more.","Chamán (Familia Cole #2). Escoces y miembro de una familia que ha practicado la medicina a lo largo de generaciones, Rob J. Cole debe emigrar por razones politicas a las nuevas tierras de America. Tras trabajar en Boston con el eminente cirujano Oliver Wendell Holmes, Cole partira rumbo al Oeste, hacia un territorio que los colonos todavia no han podido arrebatar a los indios sauk, y donde le esperan las experiencias mas intensas de su vida profesional y personal. Sigue asi la trepidante saga de la familia Cole, que Noah Gordon habia iniciado con la publicacion de El medico y que tiene en Chaman una excelente continuacion.","To the Lighthouse. The serene and maternal Mrs. Ramsay, the tragic yet absurd Mr. Ramsay, and their children and assorted guests are on holiday on the Isle of Skye. From the seemingly trivial postponement of a visit to a nearby lighthouse, Woolf constructs a remarkable, moving examination of the complex tensions and allegiances of family life and the conflict between men and women. As time winds its way through their lives, the Ramsays face, alone and simultaneously, the greatest of human challenges and its greatest triumph--the human capacity for change.",Unpublished Writings from the Period of Unfashionable Observations (Complete Works 11).,"Age of Iron. In Cape Town, South Africa, an old woman is dying of cancer. A classics professor, Mrs. Curren has been opposed to the lies and brutality of apartheid all her life, but has lived insulated from its true horrors. Now she is suddenly forced to come to terms with the iron-hearted rage that the system has wrought. In an extended letter addressed to her daughter, who has long since fled to America, Mrs. Curren recounts the strange events of her dying days. She witnesses the burning of a nearby black township and discovers the bullet-riddled body of her servant's son. A teenage black activist hiding in her house is killed by security forces. And through it all, her only companion, the only person to whom she can confess her mounting anger and despair, is a homeless man, an alcoholic, who one day appears on her doorstep. Brilliantly crafted and resonant with metaphor, Age of Ironis ""a superbly realized novel whose truths cut to the bone."" (The New York Times Book Review)",Complete Short Stories.,"Feast of Souls (The Magister Trilogy #1). At the end of her bestselling Coldfiretrilogy, C.S. Friedman challenged readers to imagine what a world would be like if sorcery required the ultimate sacrifice-that of life itself. Now, in Feast of Souls, she introduces us to a terrifying world in which the cost of magic is just that...in which the fuel for sorcery is the very fire of the human spirit, and those who hunger for magical power must pay for it with their lives. In this epic tale of nightmarish shadows and desperate hope, the greatest threat of all may not be that of ancient enemies returned, or ancient wars resumed, but of the darkness that lies within the hearts of men.","The Botany of Desire: A Plant's-Eye View of the World. Working in his garden one day, Michael Pollan hit pay dirt in the form of an idea: do plants, he wondered, use humans as much as we use them? While the question is not entirely original, the way Pollan examines this complex coevolution by looking at the natural world from the perspective of plants is unique. The result is a fascinating and engaging look at the true nature of domestication.In making his point, Pollan focuses on the relationship between humans and four specific plants: apples, tulips, marijuana, and potatoes. He uses the history of John Chapman (Johnny Appleseed) to illustrate how both the apple's sweetness and its role in the production of alcoholic cider made it appealing to settlers moving west, thus greatly expanding the plant's range. He also explains how human manipulation of the plant has weakened it, so that ""modern apples require more pesticide than any other food crop."" The tulipomania of 17th-century Holland is a backdrop for his examination of the role the tu","Grendel: Devil by the Deed. Hunter Rose is the brilliant, twisted assassin Grendel, a charismatic anti-hero who has inspired a loyal following. This collection brings to life one of the most popular alternative comic characters.","Obra Poética. Tres suertes puede correr un libro de versos: puede ser adjudicado al olvido, puede no dejar una sola linea pero si una imagen total del hombre que lo hizo, puede legar a las antologias unos pocos poemas.Si el tercero fuera mi caso yo querria sobrevivir en el ""Poema Conjetural,"" en el ""Poema de los Dones,"" en ""Everness,"" en ""El Golem"" y en ""Limites."" Pero toda poesia es misteriosa; nadie sabe del todo lo que le ha sido dado escribir.","In the Land of the Lawn Weenies and Other Warped and Creepy Tales (Weenies series #1). Kids can be such monsters. Literally. From the award-winning author of Hidden Talents, two remarkable short story collections - Kidzilla and The Witch's Monkey - together for the first time. Plus several brand new stories. Each hilarious and harrowing. A substitute teacher finds out she has some monsters for students. A group of kids attempt a levitation trick with hair-raising results. A neighborhood is so boring the grown ups are turning into...well...you know. And dozens more. So don't be a weenie! Read these stories!",The American Years. The story of Nabokov's life continues with his arrival in the United States in 1940. He found that supporting himself and his family was not easy--until the astonishing success of Lolita catapulted him to world fame and financial security.,Yours in Food John Baldessari: with meditations on eating by Paul Auster David Byrne Dave Eggers David Gilbert Tim Griffin Andy Grundberg John Haskell Michael Kimmelman Michael More Glenn O'Brien Francine Prose Peter Schjeldahl Lynne Tillman.,The J.R.R. Tolkien Companion and Guide.,"Black Sun Rising (The Coldfire Trilogy #1). On the distant world of Erna, four people--Priest, Adept, Sorcerer, and Apprentice--are drawn together to battle the forces of evil, led by the demonic fae, a soul-destroying force that preys on the human mind.",The Scandal of Ulysses: The Life And Afterlife of a Twentieth Century Masterpiece.,"Where's My Cow? (Discworld #34.5). At six o'clock every day, without fail, with no excuses, Sam Vimes must go home to read Where's My Cow?, with all the right farmyard noises, to his little boy. There are some things you have to do. It is the most loved and chewed book in the world. But his father wonders why it is full of moo-cows and baa-lambs when Young Sam will only ever see them cooked on a plate. He can think of a more useful book for a boy who lives in a city. So Sam Vimes starts adapting the story. A story with streets, not fields. A book with rogues and villains. A book about the place where he'll grow up.","Swann's Way (In Search of Lost Time #1). Swann's Way tells two related stories, the first of which revolves around Marcel, a younger version of the narrator, and his experiences in, and memories of, the French town Combray. Inspired by the ""gusts of memory"" that rise up within him as he dips a Madeleine into hot tea, the narrator discusses his fear of going to bed at night. He is a creature of habit and dislikes waking up in the middle of the night not knowing where he is. He claims that people are defined by the objects that surround them and must piece together their identities bit by bit each time they wake up. The young Marcel is so nervous about sleeping alone that he looks forward to his mother's goodnight kisses, but also dreads them as a sign of an impending sleepless night. One night, when Charles Swann, a friend of his grandparents, is visiting, his mother cannot come kiss him goodnight. He stays up until Swann leaves and looks so sad and pitiful that even his disciplinarian father encourages ""Mamma"" to spend the ni","Presidential Power and the Modern Presidents: The Politics of Leadership from Roosevelt to Reagan. Thirty years ago Richard Neustadt published Presidential Power, which became a widely studied book on the theory and practice of presidential leadership. Presidents themselves read it and assign it to their staff for study, as did the intructors of hundreds of thousands of students of government. Now Richard Neustadt re-examines the theory of presidential power by testing it against events and decisions in the administrations of the later modern presidents who followed FDR, Truman and Eisenhower. To the original study of presidential power, Neustadt has added a series of chapters appraising the presidential styles and skills of John F. Kennedy, Lyndon Johnson, Richard Nixon, Jimmy Carter, and Ronald Reagan in the light of his guiding belief that the President must consider the effect a decision will have on his prospects for the successful exercise of presidential power in the future.","Excellence. In Excellence, Mr. Gardner discusses the strengths and failings of our educational system, our confusion over the idea of equality, and the nature of leadership in a free society.","Moments of Being: A Collection of Autobiographical Writing. Moments of Beingcontains Virginia Woolf's only autobiographical writing. In ""Reminiscences,"" the first of five pieces, she focuses on the death of her mother, ""the greatest disaster that could happen,"" and its effect on her father, the demanding Victorian patriarch. Three of the papers were composed to be read to the Memoir Club, a postwar regrouping of Bloomsbury, which exacted absolute candor of its members. ""A Sketch of the Past"" is the longest and most significant of the pieces, giving an account of Virginia Woolf's early years in the family household at 22 Hyde Park Gate. A recently discovered manuscript belonging to this memoir has provided material that further illuminates her relationship to her father, Leslie Stephen, who played a crucial role in her development as an individual and as a writer.",The Ethics and Politics of Asylum: Liberal Democracy and the Response to Refugees.,"Climb the Family Tree Jesse Bear!. Are we there yet? Are we there yet? We're here, Jesse Bear! We're here! At his family reunion, Jesse Bear visits with aunts, uncles, grandparents, and cousins galore. Readers will love being introduced to this lively extended family, and they will celebrate with Jesse bear when he is finallyold enough to do something very special. Nancy White Carlstrom and Bruce Degen once again explore a preschooler's world through the eyes of the always endearing Jesse Bear.","Oresteia. Meineck's translation is faithful and supple; the language employed is modern without betraying the grandeur and complexity--particularly the images--of the Aeschylean text. After reading this translation, one has but one further wish: to see it and hear it at Delphi, Epidaurus or Syracuse. --Herman Van Looy, L'Antiquite Classique",Stud Rites (A Dog Lover's Mystery #9).,"Lost in a Good Book (Thursday Next #2). The inventive, exuberant, and totally original literary fun that began with The Eyre Affair continues with the second installment in what is sure to become a classic series of literary fantasy. Jasper Fforde and his ever-resourceful literary detective heroine Thursday Next are back in the second installment of what promises to be one of the most talked-about series of the decade If Thursday thought she could avoid the spotlight after her heroic escapades in the pages of Jane Eyre, she was sorely mistaken. The unforgettable literary detective whom Michiko Kakutani of The New York Times calls ""part Bridget Jones, part Nancy Drew and part Dirty Harry"" had another think coming. The love of her life has been eradicated by Goliath, everyone's favorite corrupt multinational. To rescue him Thursday must retrieve a supposedly vanquished enemy from the pages of ""The Raven."" But Poe is off-limits to even the most seasoned literary interloper. Enter a professional: the man-hating Miss Havisham fro","The Last Lion: Winston Spencer Churchill: Visions of Glory 1874-1932. s/t: Winston Spencer Churchill: Visions of Glory 1874-1932 When Winston Spencer Churchill was born in Blenheim Palace, Imperial Britain stood at the splendid pinnacle of her power. Yet within a few years, the Empire would hover on the brink of a catastrophic new era. This first volume of the best-selling biography of the adventurer, aristocrat, soldier, and statesman covers the first 58 years of the remarkable man whose courageous vision guided the destiny of those darkly troubled times and who looms today as one of the greatest figures of the 20th century. Black and white photos & illustrations.",Before the Mayflower: A History of Black America.,"A Modest Proposal and Other Satirical Works. The originality, concentrated power and 'fierce indignation' of his satirical writing have earned Jonathan Swift a reputation as the greatest prose satirist in English literature. Gulliver's Travelsis, of course, his world renowned masterpiece in the genre; however, Swift wrote other, shorter works that also offer excellent evidence of his inspired lampoonery. Perhaps the most famous of these is A Modest Proposal, in which he straight-facedly suggests that Ireland could solve its hunger problems by using its children for food. Also included in this collection are The Battle of Books, A Meditation upon a Broomstick, A Discourse Concerning the Mechanical Operations of the Spiritand An Argument Against Abolishing Christianity in England. This inexpensive edition will certainly be welcomed by teachers and students of English literature, but its appeal extends to any reader who delights in watching a master satirist wield words as weapons.",The Barefoot Book Of Ballet Stories.,"Twelve Ordinary Men. Contrary to popular belief, we do not have to be perfect to do God's work. Look no further than the twelve disciples whose many weaknesses are forever preserved throughout the pages of the New Testament. Jesus chose ordinary men - fisherman, tax collectors, political zealots - and turned their weakness into strength, producing greatness from utter uselessness. MacArthur draws principles from Christ's careful, hands-on training of the original twelve disciples for today's modern disciple - you.","The Innocent Man: Murder and Injustice in a Small Town. John Grisham's first work of nonfiction, an exploration of small town justice gone terribly awry, is his most extraordinary legal thriller yet. In the major league draft of 1971, the first player chosen from the State of Oklahoma was Ron Williamson. When he signed with the Oakland A's, he said goodbye to his hometown of Ada and left to pursue his dreams of big league glory. Six years later he was back, his dreams broken by a bad arm and bad habits--drinking, drugs, and women. He began to show signs of mental illness. Unable to keep a job, he moved in with his mother and slept twenty hours a day on her sofa. In 1982, a 21-year-old cocktail waitress in Ada named Debra Sue Carter was raped and murdered, and for five years the police could not solve the crime. For reasons that were never clear, they suspected Ron Williamson and his friend Dennis Fritz. The two were finally arrested in 1987 and charged with capital murder. With no physical evidence, the prosecution's case was built on junk","The Burnt Orange Heresy (Vintage Crime/Black Lizard). James Figueras is a brilliant art critic in search of the coup that will make him the leader in his field. Figueras has been offered a chance to meet the reclusive artist Deberieu; in return, all he has to do is steal one of the master's paintings. But from stealing, as Figueras learns, it is only a very short step to killing.",First Deadly Sin.,"The People's Tycoon: Henry Ford and the American Century. How a Michigan farm boy became the richest man in America is a classic, almost mythic tale, but never before has Henry Ford's outsized genius been brought to life so vividly as it is in this engaging and superbly researched biography. The realHenry Ford was a tangle of contradictions. He set off the consumer revolution by producing a car affordable to the masses, all the while lamenting the moral toll exacted by consumerism. He believed in giving his workers a living wage, though he was entirely opposed to union labor. He had a warm and loving relationship with his wife, but sired a son with another woman. A rabid anti-Semite, he nonetheless embraced African American workers in the era of Jim Crow. Uncovering the man behind the myth, situating his achievements and their attendant controversies firmly within the context of early twentieth-century America, Watts has given us a comprehensive, illuminating, and fascinating biography of one of America's first mass-culture celebrities.","Not Even for Love. Jordan Hadlock seems to have it all: a great job and Helmut Eckherdt, a rich industrialist intent on marrying her -- even though she hasn't said yes. What more could she want? A clap of thunder and a pounding on her door soon give her an answer. Reeves Grant appears seeking shelter from a sudden downpour, but the real storm is inside Jordan and the passion they share. He disappears the next morning and then Jordan receives two more shocks. Helmut publicly announces they're to be wed -- at the very same moment she spies Reeves snapping pictures of her new ""fiance."" Now Jordan is moving toward the alter with a man she likes but doesn't love, while Reeves is often only inches away. And Jordan Hadlock has to choose between a man who wants her to be his wife and one who wants her to be his lover.","I Should Be Extremely Happy in Your Company: A Novel of Lewis and Clark. ""Meriwether Lewis and William Clark's expedition to the Pacific Ocean and back in the early nineteenth century is the most famous journey in American history. But its very fame has obscured its oddness. Its public image of discovery and triumphant return has veiled its private stories of longing and loss, of self-discovery and mutual ignorances, of good luck and mischance and fortunate misunderstanding."" ""Rather than concentrate exclusively on the expedition, Brian Hall has chosen to focus on emblematic moments through the whole range of the lives of its participants. Ever present as a backdrop is the violent collision of white and Native American cultures, and the broader tragedy of the inability of any human being to truly understand what lies in the heart of another."" Hall has written the novel in four competing voices. The primary one is that of Lewis, the troubled and mercurial figure who found that it was impossible to enter paradise without having it crumble around him. Hall bri","The Diary of Ellen Rimbauer: My Life at Rose Red. At the turn of the twentieth century, Ellen Rimbauer became the young bride of Seattle industrialist John Rimbauer, and began keeping a remarkable diary. This diary became the secret place where Ellen could confess her fears of the new marriage, her confusion over her emerging sexuality, and the nightmare that her life would become. The diary not only follows the development of a girl into womanhood, it follows the construction of the Rimbauer mansion--called Rose Red--an enormous home that would be the site of so many horrific and inexplicable tragedies in the years ahead. The Diary of Ellen Rimbauer: My Life at Rose Redis a rare document, one that gives us an unusual view of daily life among the aristocracy in the early 1900s, a window into one woman's hidden emotional torment, and a record of the mysterious events at Rose Red that scandalized Seattle society at the time--events that can only be fully understood now that the diary has come to light. Edited by Joyce Reardon, Ph.D. as","The Will to Power. Nietzsche's notebooks, kept by him during his most productive years, offer a fascinating glimpse into the workshop and mind of a great thinker, and compare favorably with the notebooks of . The Will to Power, compiled from the notebooks, is one of the most famous books of the past hundred years, but few have studied it. Here, at last, is the first critical edition in any language. Down through the Nazi period The Will to Powerwas often mistakenly considered to be Nietzsche's crowning systematic labor; since World War II it has frequently been denigrated, just as fallaciously, as being not worth reading. In fact, it represents a stunning selection from Nietzsche's notebooks, in a topical arrangement that enables the reader to find what Nietzsche wrote on nihilism, art, morality, religion, the theory of knowledge, and whatever else interested him. But no previous edition--even in the original German--shows which notes Nietzsche utilized subsequently in his works, and which sections are","The 158-Pound Marriage. The darker vision and sexual ambiguities of this erotic, ironic tale about a menage a quatre in a New England university town foreshadow those of The World According to Garp; but this very trim and precise novel is a marked departure from the author's generally robust, boisterous style. Though Mr. Irving's cool eye spares none of his foursome, he writes with genuine compassion for the sexual tests and illusions they perpetrate on each other; but the sexual intrigue between them demonstrates how even the kind can be ungenerous, and even the well-intentioned, destructive.",The Battle Of Corrin (Legends of Dune #3).,Sun Tzu: The Art of War for Managers; 50 Strategic Rules.,"Fast Food Nation: What The All-American Meal is Doing to the World. Fast Food Nation, Eric Schlosser's disturbing and timely exploration of one of the world's most controversial industries, has become a massive bestseller in America and rightly deserves to be so this side of the pond. On any given day, one out of four Americans opts for a quick and cheap meal at a fast-food restaurant, without giving either its speed or its cheapness a second thought. Fast food is so ubiquitous that it now seems harmless. But the industry's drive for consolidation, homogenisation and speediness has radically transformed the West's diet, landscape, economy and workforce, often in insidiously destructive ways.Eric Schlosser, an award-winning journalist, opens his ambitious and ultimately devastating expose with an introduction to the iconoclasts and high school dropouts, such as Harlan Sanders and the McDonald brothers, who first applied the principles of a factory assembly line to a commercial kitchen. However, he rapidly moves behind the counter to the overworked and u","Plays: Mrs Warren's Profession/Man and Superman/Major Barbara/Pygmalion. This collection presents a cross-section of Shaw's most important theater workaMrs. Warren's Profession, Man and Superman, Major Barbara, and Pygmalion. Each play is fully annotated. ""Contexts and Criticism"" features all-new material on the author and his work, from traditional critical readings to more theorized approaches, among them essays on Shaw's Fabianism and his alleged feminism. Contributors include Leon Hugo, Sally Peters, Tracy C. Davis, John A. Bertolini, Stanley Weintraub, and J. Ellen Gainor. A Chronology and a Selected Bibliography are included.","The Negro. Originally published: New York : Holt, 1915. Africa is at once the most romantic and the most tragic of continents. So begins ""The Negro,"" the first comprehensive history of African and African-derived people, from their early cultures through the period of the slave trade and into the twentieth century. Originally published in 1915, the book was acclaimed in its time, widely read, and deeply influential in both the white and black communities, yet this beautifully written history is virtually unknown today. As a wellspring of critical studies of Africa and African Americans, it directly and indirectly influenced and inspired the works of scholars such as C. L. R. James, Eric Williams, Herbert Aptheker, Eric Foner, Kwame Anthony Appiah, and Henry Louis Gates, Jr. One of the most important books on Africa ever written, it remains fresh, dynamic, and insightful to this day. ""The Negro"" is compelling on many levels. By comparing W. E. B. Du Bois's analysis with subsequent scholarship, Rob","The Portable Walt Whitman. When Walt Whitman self-published Leaves of Grassin 1855 it was a slim volume of twelve poems and he was a journalist and poet from Long Island, little-known but full of ambition and poetic fire. To give a new voice to the new nation shaken by civil war, he spent his entire life revising and adding to the work, but his initial act of bravado in answering Ralph Waldo Emerson's call for a national poet has made Whitman the quintessential American writer. This rich cross-section of his work includes poems from throughout Whitman's lifetime as published on his deathbed edition of 1891, short stories, his prefaces to the many editions of Leaves of Grass, and a variety of prose selections, including Democratic Vistas, Specimen Days, and Slang in America. For more than seventy years, Penguin has been the leading publisher of classic literature in the English-speaking world. With more than 1,700 titles, Penguin Classics represents a global bookshelf of the best works throughout history and acro","The Burgess Animal Book for Children. When Jenny Wren learns that Peter Rabbit would like to know more about the four-footed friends who share the Green Meadows and Green Forest with him, she encourages him to speak with Old Mother Nature who is only too happy to help. During their ""classroom"" chats, she not only teaches Peter about Arctic Hare and Antelope Jack but also tells him about such creatures as Flying Squirrel, Mountain Beaver, Pocket Gopher, Grasshopper Mouse, Silvery Bat, Mule Deer, and Grizzly Bear. Told with all the warmth and whimsy of Burgess's stories, this engaging book acquaints youngsters with many forms of wildlife and the animals' relationships with one another. The charming collection of entertaining tales is sure to transport today's young readers to the same captivating world of nature that delighted generations of children before them.","Brewer's Dictionary of Phrase and Fable. Brewer's Dictionary of Phrase and Fableis one of the world's best-loved reference books. First published in 1870, this treasury of 'words that have a story to tell' has established itself as one of the great reference classics--the first port of call for tens of thousands of terms, phrases and proper names, and a fund of fascinating, unusual and out-of-the-way information. At the heart of the dictionary lie entries on the meaning and origin of a vast range of words and expressions, from everyday English phrases to Latin tags. Alongside these are articles on people and events in mythology and religion, and on folk customs, superstitions and beliefs. Major events and people in history are also treated, as are movements in art and literature, famous literary characters, and key aspects of popular culture, philosophy, geography, science and magic. To complete this rich mix of information, Brewer and his subsequent editors have added an extraordinary and enticing miscellany of general knowl",Jimi Hendrix: The Complete Guide to His Music (Complete Guide to the Music of...).,"In the Beginning...Was the Command Line. This is ""the Word"" -- one man's word, certainly -- about the art (and artifice) of the state of our computer-centric existence. And considering that the ""one man"" is Neal Stephenson, ""the hacker Hemingway"" (Newsweek) -- acclaimed novelist, pragmatist, seer, nerd-friendly philosopher, and nationally bestselling author of groundbreaking literary works (Snow Crash, Cryptonomicon,etc., etc.) -- the word is well worth hearing. Mostly well-reasoned examination and partial rant, Stephenson's In the Beginning... was the Command Lineis a thoughtful, irreverent, hilarious treatise on the cyber-culture past and present; on operating system tyrannies and downloaded popular revolutions; on the Internet, Disney World, Big Bangs, not to mention the meaning of life itself.","Narcissus in Chains (Anita Blake Vampire Hunter #10). Hamilton's vampire-hunting Anita Blake faces a plethora of foes in her tenth outing. Just returned to St. Louis after six months away, Anita is still no closer to choosing between her lovers--Jean-Claude, a vampire, and Richard, a werewolf. But she has to rely on both for help after two of the wereleopards that she has been watching are abducted at a seedy club called Narcissus in Chains. Anita and her boyfriends rescue the wereleopards from the sinister people holding them, but Anita is wounded in the fight and put at risk of becoming a wereleopard herself. Richard angrily captures the wereleopard he believes is responsible and threatens to execute him. Anita must now rescue that wereleopard from Richard and the werewolves he leads, even as she mourns the apparent end of her relationship with him. Then she realizes that those who kidnapped the first two wereleopards are targeting other lycanthropes. Maybe she will be next. With plenty of steamy sex and graphic violence, this is engagi",Aristophanes 1: The Acharnians/Peace/Celebrating Ladies/Wealth.,"American Gods. American Godsis Neil Gaiman's best and most ambitious novel yet, a scary, strange, and hallucinogenic road-trip story wrapped around a deep examination of the American spirit. Gaiman tackles everything from the onslaught of the information age to the meaning of death, but he doesn't sacrifice the razor-sharp plotting and narrative style he's been delivering since his Sandman days.Shadow gets out of prison early when his wife is killed in a car crash. At a loss, he takes up with a mysterious character called Wednesday, who is much more than he appears. In fact, Wednesday is an old god, once known as Odin the All-father, who is roaming America rounding up his forgotten fellows in preparation for an epic battle against the upstart deities of the Internet, credit cards, television, and all that is wired. Shadow agrees to help Wednesday, and they whirl through a psycho-spiritual storm that becomes all too real in its manifestations. For instance, Shadow's dead wife Laura keeps showing up, a","A Young Person's Guide To Philosophy. From Socrates and Plato to Kant, Sartre, and Simone de Beauvoir, here is an entertaining look at the world's greatest thinkers and their ideas, presented in a lively way that makes this intriguing subject accessible to all ages - Discover the ideas and famous sayings at the heart of philosophy and understand their meanings- Find out about the people who spent their lives trying to find the answers.","Everything I Needed to Know about Being a Girl I Learned from Judy Blume. """"I wonder if Judy Blume really knows how many girls' lives she affected. I wonder if she knows that at least one of her books made a grown woman finally feel like she'd been a normal girl all along. . . ."""" -- FROM Everything I Needed to Know About Being a Girl I Learned from Judy Blume Whether laughing to tears reading ""Otherwise Known as Sheila the Great"" or clamoring for more unmistakable ""me too!"" moments in ""Are You There God? It's Me, Margaret,"" girls all over the world have been touched by Judy Blume's poignant coming-of-age stories. Now, in this anthology of essays, twenty-four notable female authors write straight from the heart about the unforgettable novels that left an indelible mark on their childhoods and still influence them today. After growing up from ""Tales of a Fourth Grade Nothing"" into ""Smart Women,"" these writers pay tribute, through their reflections and most cherished memories, to one of the most beloved authors of all time.","Sweet 18 (SVH Senior Year #48). In the first work, Jessica and her twin sister Elizabeth celebrate their eighteenth birthdays; and in the second work, Jessica and Elizabeth become rivals for the love of Todd Wilkins, a handsome basketball player.","Adam and Eve and Pinch Me. With consummate skill, Ruth Rendell pulls the colorful strands of this harrowing story ever tighter, increasing the tension page by page. Jock Lewis was supposed to have died in that terrible train crash at Paddington. Minty, his girlfriend, received a letter from Great Western telling her so. But, curiously, the police haven't been in touch. And Jock has borrowed all her savings . . . Zillah also got a letter from the railway company, informing her that her husband, Jerry Leach, was dead. Something about the letter struck her as suspicious, but she chooses not to mention her doubts to the up-and-coming Conservative Member of Parliament who has just proposed a marriage of convenience . . . Fiona, a successful banker, met Jeff Leigh before the Paddington crash in August. Although he never seemed to have a job, and borrowed money from her, she is utterly devoted to him--and can't understand why he suddenly has disappeared . . . As this novel gets under way, it is not immediately apparent",The Collected Letters of C.S. Lewis Volume 1: Family Letters 1905-1931.,Comoediae 1: Acharenses/Equites/Nubes/Vespae/Pax/Aves.,Everyday Pasta. Collects Italian cookery recipes that range from classic favorites to innovative new dishes and are accompanied by simple instructions for making fresh pasta and a selection of side dishes.,"His Majesty's Dragon (Temeraire #1). Aerial combat brings a thrilling new dimension to the Napoleonic Wars as valiant warriors ride mighty fighting dragons, bred for size or speed. When HMS Reliant captures a French frigate and seizes the precious cargo, an unhatched dragon egg, fate sweeps Captain Will Laurence from his seafaring life into an uncertain future - and an unexpected kinship with a most extraordinary creature. Thrust into the rarified world of the Aerial Corps as master of the dragon Temeraire, he will face a crash course in the daring tactics of airborne battle. For as France's own dragon-borne forces rally to breach British soil in Bonaparte's boldest gambit, Laurence and Temeraire must soar into their own baptism of fire.","Girls' Night In. 21 TALES FROM THE HOTTEST FEMALE WRITERS In this must-have short-story collection, Jennifer Weiner revisits on of her Good in Bedcharacters (and tells the story from, ahem, hispoint of view), Jill A. Davis (Girl's Poker Night)offers darkly humorous take on starting over in New York and working with ""the Elizabeths"" and Alisa Valdes-Rodriquez (The Dirty Girls Social Club)muses on how different the words ladyand womanare when paired with cat. Girl's Night Infeatures stories about growing up, growing out of, moving out, moving on, falling apart and getting it all together. So turn off your cell phone and curl up on the couch: this is one Girl's Night Inyou won't want to miss.","The Chronicles of Narnia CD Box Set. Listen to all seven stories in C. S. Lewis's classic fantasy series The Chronicles of Narniain this unabridged 31-CD collection, read by some of the world's most renowned performers: The Magician's Nephewnarrated by Kenneth Branagh The Lion, the Witch and the Wardrobenarrated by Michael York The Horse and His Boynarrated by Alex Jennings Prince Caspiannarrated by Lynn Redgrave The Voyage of the Dawn Treadernarrated by Derek Jacobi The Silver Chairnarrated by Jeremy Northam The Last Battlenarrated by Patrick Stewart Enter C. S. Lewis's magical world of Narnia. Each of these extraordinary, timeless stories stands alone, but together they are the history of a fantastic world that becomes as real as our own.","Having a Mary Heart in a Martha World: Finding Intimacy with God in the Busyness of Life. With nearly a million copies sold, Joanna Weaver's popular book shows women how to blend intimacy with Jesus and service for Him. An invitation for every woman who feels she isn't godly enough...isn't loving enough...isn't doing enough. The life of a woman today isn't really all that different from that of Mary and Martha in the New Testament. Like Mary, you long to sit at the Lord's feet...but the daily demands of a busy world just won't leave you alone. Like Martha, you love Jesus and really want to serve him...yet you struggle with weariness, resentment, and feelings of inadequacy. Then comes Jesus, right into the midst of your busy Mary/Martha life-and he extends the same invitation he issued long ago to the two sisters of Bethany. Tenderly he invites you to choose ""the better part""-a joyful life of ""living-room"" intimacy with him that flows naturally into ""kitchen service"" for him. How can you make that choice? With her fresh approach to the familiar Bible story and its creative,","The Lady Chosen (Bastion Club #1). Tristan Wemyss, Earl of Trentham, never expected he'd need to wed within a year or forfeit his inheritance. But he is not one to bow to the matchmaking mamas of the ton. No, he will marry a lady of his own choosing. And the lady he chooses is the enchanting neighbor living with her family next door. Miss Leonora Carling has beauty, spirit and passion; unfortunately, matrimony is the last thing on her mind . . . To Leonora, Tristan's kisses are oh-so-tempting, but once bitten, forever shy, she has determinedly turned her back on marriage. But Tristan is a seasoned campaigner who will not accept defeat. And when a mysterious man attempts to scare Leonora and her family from their home, Tristan realizes he's been given the perfect excuse to offer his services--as protector, seducer and, ultimately, husband.",There's Always Enough: The Miraculous Move of God in Mozambique.,"Gorgias. Taking the form of a dialogue between Socrates, Gorgias, Polus and Callicles, GORGIAS debates perennial questions about the nature of government and those who aspire to public office. Are high moral standards essential or should we give our preference to the pragmatist who gets things done or negotiates successfully? Should individuals be motivated by a desire for personal power and prestige, or genuine concern for the moral betterment of the citizens? These questions go to the heart of Athenian democratic principles and are more relevant than ever in today's political climate.","Father to Son (The Destroyer #129). There's some nasty sibling rivalry in the family assassination business . . . For Remo, Sinanju's Holiest tradition is ""cash up front"" But as his long road to the rank of Reigning Master of the venerable house of assassins nears its end, the Time of Successionritual begins. For the enforcement arm of CURE, this means making his way around the globe, killing the best assassins money can buy -- and proving to kings and presidents alike that Sinanju is the primostrategic weapon around. For a reasonable fee, of course. But there is a storm cloud on the horizon of Chiun's retirement and Remo's promotion: a dark nemesis has been reborn from the fires of evil and has unleashed his plot for vengeance. He starts by looting Chiun's treasure-filled basement in Sinanju. But he won't stop until he has fulfilled a prophecy of doom that even Chiun may not be able to thwart: the death of the Destroyer.","Love Sex & Tragedy: How the Ancient World Shapes Our Lives. In Love, Sex & TragedySimon Goldhill lifts the veil on our inheritance of classical traditions and offers a witty, engrossing survey of the Greek and Roman roots of everything from our overwhelming mania for ""hard bodies"" to our political systems. Encompassing Karl Marx, Clark Gable, George W. Bush, Oscar Wilde, and Sigmund Freud, Goldhill takes great delight in tracing both follies and fundamental philosophical questions through the centuries and continents to the birthplace of Western civilization as we know it. Underlying his brisk and learned excursions through history and art is the foundational belief, following Cicero, that learning about the classics makes a critical difference to our self-understanding. Whether we are considering the role of religion in contemporary society, our expectations about the boundaries between public and private life, or even how we spend our free time, recognizing the role of the classics is integral to our comprehension of modern life and our place","The Drift House: The First Voyage. In the tradition of The Lion, the Witch and the Wardrobeand A Wrinkle in Timecomes the first book in an exciting fantasy series about three siblings' adventures on the high sea--the Sea of Time, that is. After 9/11, Susan and her younger brothers, Charles and Murray, are sent to live with their uncle Farley in Canada. Uncle Farley's house looks like a ship perched at the edge of the sea, but it's not until a great flood comes that the house's name--Drift House--starts to make sense. Floating aimlessly on the Sea of Time, the ship-like house begins to yield its many secrets--including a mural that seems to predict the future, a dumbwaiter that enables Murray to travel into the future and back again, and a parrot historian who's also a gifted translator. But when a clan of diabolical mermaids trick the children and their uncle into helping them carry out a plan that will stop time forever, it will take all of Susan's ingenuity along with some help from a great whale, a band of pirates, a","Irish Girls Are Back in Town. You thought you'd heard the whole story? They painted the town green in the acclaimed international bestseller ""Irish Girls About Town."" Now ""Irish Girls Are Back In Town"" ...and their unique charm resonates throughout this high-spirited gathering of first-rate short fiction So cozy up with some of today's best Irish women writers -- many favorites from the first Irish Girls collection and some lively newcomers -- as they spin nineteen all-new tales ranging from poignant and heartwarming to provocative and outright hilarious. Against the madcap setting of a bingo hall, Cecelia Ahern conjures a woman's memories of her domineering mother in ""The Calling.."".Patricia Scanlan unwraps the truth behind ""Facades"" when two friends reconnect at the holidays. Are they as happy and successful as they appear?...A resolute widow pieces together a shocking betrayal -- and vows to outdo her competition -- in Gemma O'Connor's deliciously twisted ""Dinner with Annie.."".Sarah Webb reveals ""How Emily Got",Time For Kids: Butterflies!.,"Casino Royale. This, the first of Fleming's tales of agent 007, finds Bond on a mission to neutralize a lethal, high-rolling Russian operative called simply 'Le Chiffre' - by ruining him at the baccarat table and forcing his Soviet spy masters to 'retire' him. It seems that lady luck is taken with James - Le Chiffre has hit a losing streak. But some people just refuse to play by the rules, and Bond's attraction to a beautiful female agent leads him to disaster and an unexpected savior.","Team Yankee. NATO and the Soviet bloc are at war. The awesome Russian invasion force smashes across the West German border, driving for a breakthrough. With M-1 tanks and a mechanized infantry division, Captian Sean Bannon's ""Team Yankee"" must defend their vital strategic post. They will engage the enemy with the ultimate in sophisticated weaponry. They will fight beyond all limits of human endurance - on the brink of World War III... ""Team Yankee""","Ella Minnow Pea: A Novel in Letters. Ella Minnow Pea is a girl living happily on the fictional island of Nollop off the coast of South Carolina. Nollop was named after Nevin Nollop, author of the immortal pangram,* ""The quick brown fox jumps over the lazy dog."" Now Ella finds herself acting to save her friends, family, and fellow citizens from the encroaching totalitarianism of the island's Council, which has banned the use of certain letters of the alphabet as they fall from a memorial statue of Nevin Nollop. As the letters progressively drop from the statue they also disappear from the novel. The result is both a hilarious and moving story of one girl's fight for freedom of expression, as well as a linguistic tour de force sure to delight word lovers everywhere. *pangram: a sentence or phrase that includes all the letters of the alphabet","Candide. Brought up in the household of a powerful Baron, Candide is an open-minded young man, whose tutor, Pangloss, has instilled in him the belief that 'all is for the best'. But when his love for the Baron's rosy-cheeked daughter is discovered, Candide is cast out to make his own way in the world. And so he and his various companions begin a breathless tour of Europe, South America and Asia, as an outrageous series of disasters befall them - earthquakes, syphilis, a brush with the Inquisition, murder - sorely testing the young hero's optimism.","The Sparrow (The Sparrow #1). In 2019, humanity finds proof of extraterrestrial life when a listening post picks up exquisite singing from the planet Rakhat. While the U.N. debates possible contact missions, the Society of Jesus quietly organizes an 8-person expedition of its own. What the Jesuits find is a world so beyond comprehension that it will lead them to question what it means to be human.","Family Matters. Rohinton Mistry's enthralling novel is at once a domestic drama and an intently observed portrait of present-day Bombay in all its vitality and corruption. At the age of seventy-nine, Nariman Vakeel, already suffering from Parkinson's disease, breaks an ankle and finds himself wholly dependent on his family. His step-children, Coomy and Jal, have a spacious apartment (in the inaptly named Chateau Felicity), but are too squeamish and resentful to tend to his physical needs. Nariman must now turn to his younger daughter, Roxana, her husband, Yezad, and their two sons, who share a small, crowded home. Their decision will test not only their material resources but, in surprising ways, all their tolerance, compassion, integrity, and faith. Sweeping and intimate, tragic and mirthful, Family Mattersis a work of enormous emotional power.","The Love You Make: An Insider's Story of the Beatles. Here is the national bestseller that Newsdaycalled ""the most authoritative and candid look yet at the personal lives...of the oft-scrutinized group."" In The Love You Make,Peter Brown, a close friend of and business manager for the band--and the best man at John and Yoko's wedding--presents a complete look at the dramatic offstage odyssey of the four lads from Liverpool who established the greatest music phenomenon of the twentieth century. Written with the full cooperation of each of the group's members and their intimates, this book tells the inside story of the music and the madness, the feuds and the drugs, the marriages and the affairs--from the greatest heights to the self-destructive depths of the Fab Four. In-depth and definitive, The Love You Makeis an astonishing account of four men who transformed the way a whole generation of young people thought and lived. It reigns as the most comprehensive, revealing biography available of John, Paul, George, and Ringo. Includes 32 pages","Flowers of Evil and Other Works/Les Fleurs du Mal et Oeuvres Choisies : A Dual-Language Book (Dover Foreign Language Study Guides) (English and French Edition). Controversial book of verse, first published in 1857, presented in a handsome dual-language edition, together with superb selection of great French poet's other works: prose poems from ""Spleen of Paris,"" critical essays on art, music, and literature, as well as personal letters. Line-by-line English translation, with original French text on facing page.","Unweaving the Rainbow: Science Delusion and the Appetite for Wonder. Did Newton ""unweave the rainbow"" by reducing it to its prismatic colors, as Keats contended? Did he, in other words, diminish beauty? Far from it, says acclaimed scientist Richard Dawkins; Newton's unweaving is the key to much of modern astronomy and to the breathtaking poetry of modern cosmology. Mysteries don't lose their poetry because they are solved: the solution often is more beautiful than the puzzle, uncovering deeper mysteries. With the wit, insight, and spellbinding prose that have made him a best-selling author, Dawkins takes up the most important and compelling topics in modern science, from astronomy and genetics to language and virtual reality, combining them in a landmark statement of the human appetite for wonder. This is the book Richard Dawkins was meant to write: a brilliant assessment of what science is (and isn't), a tribute to science not because it is useful but because it is uplifting.",ヒカルの碁 6、院生試験.,"Republic. Platon (Eflatun, IO yaklasik 428/7-IO yaklasik 348/7): Bugunku universitenin atasi sayilan Akademia'nin kurucusu (IO 387) ve hocasi Sokrates'i konusturdugu ""diyaloglar""la felsefeyi yaziya en iyi aktarmis olan ustalardan biridir. Sokrates'in Savunmasi (Apologia) ile birlikte diyaloglarinin en taninmisi olan Devlet (Politeia)'te ise Platon, ""iyilik"", ""esitlik"", ""gucluluk"" ve ""haklilik"" gibi ""insanlik durumlari""ni irdeleyerek dusledigi en iyi devletti anlatmis, ve bu temel yapit, ister yaninda ister karsisinda olsunlar, 2000 yili askin suredir ortaya konan butun devlet kurami ya da toplum duzenlerinin basvuru kaynaklari arasinda yer almistir. Sabahattin Eyuboglu (1908-1973); Hasan Ali Yucel'in kurdugu Tercume Burosu'nun baskan yardimcisi ve Cumhuriyet doneminin en onemli kultur insanlarindan biriydi. Tek basina ya da ""imece"" birlikteligiyle yaptigi ceviriler, HayyamX'dan Montaigne'e, Platon'dan Shakespeare'e hep, dunya kulturunun doruk adlarindandi. M. Ali Cimcoz: Cevirmen, seslendirme sa",Robert Van Gulik: His Life His Work.,"Yakitate!! Japan Volume 3. Kazuma Azuma is a 16-year-old boy determined to make Ja-pan, the national bread of Japan. Blessed with magical ""Hands of the Sun,"" which allow dough to ferment faster, he goes to Tokyo to further his knowledge and skills at Pantasia, a giant bakery chain.",Premières Histoires.,"West from Home: Letters of Laura Ingalls Wilder San Francisco 1915 (Little House #11). In 1915, Laura Ingalls Wilder traveled by train from her home in Missouri to San Francisco. Laura's westward journey to visit her daughter, Rose Wilder Lane, coincided with a spectacular event taking place in that city-the Panama Pacific International Exposition. This was a great world's fair celebrating the completion of the Panama Canal, and Laura was amazed by the attractions that had been gathered there. Her husband, Almanzo, was unable to leave their Missouri farm, and it was Laura's letters that gave him the chance to see what she saw during her visit to California. These letters, gathered together here, allow the reader to experience Laura's adventures and her intimate thoughts as she shared with her husband the events of her exciting sojourn.","The Little Friend. Twelve-year-old Harriet is doing her best to grow up, which is not easy as her mother is permanently on medication, her father has silently moved to another city, and her serene sister rarely notices anything. All of them are still suffering from the shocking and mysterious death of her brother Robin twelve years earlier, and it seems to Harriet that the family may never recover. So, inspired by Captain Scott, Houdini, and Robert Louis Stevenson, she sets out with her only friend Hely to find Robin's murderer and punish him. But what starts out as a child's game soon becomes a dark and dangerous journey into the menacing underworld of a small Mississippi town.","The Killing Dance (Anita Blake Vampire Hunter #6). Dating both a vampire and a werewolf isn't easy. But just to complicate Anita's already messy life, someone has put a price on her head. Love cannot save her this time, so she turns to Edward, hitman extraordinaire, for help. But finding the person behind the threat won't be easy, because as both a vampire hunter and zombie reanimator, Anita has made a lot of enemies-both human and otherwise.",Guerilla Film Makers Movie Blueprint.,"A Bend in the River. When Salim, a young Indian man, is offered a small business in Central Africa, he accepts. As he strives to establish himself, he becomes closely involved with the fluid and dangerous politics of the newly-dependent state.","The Man Who Loved Jane Austen (The Man Who Loved Jane Austen #1). New York artist Eliza Knight certainly did not realize it at the time, but her life changed when she bought the old, beat-up vanity table one lazy Sunday afternoon. Tucked away behind the mirror she found two letters, one from Fitzwilliam Darcy, the fictional hero of Jane Austen's 'Pride and Prejudice', the other from Jane to Darcy.",Le Réseau Kinakuta (Cryptonomicon #2).,"Madouc (Lyonesse #3). The World Fantasy Award-winning third volume of the LYONESSE trilogy brings attention to the faerie changeling Madouc. Where princess Suldrun once meekly endured the proprieties of Castle Haidion, Madouc defends herself with rotten fruit. Vexed, King Casmir arranges a contest to marry her off, but Madouc has other ideas, and enlists the stableboy ""Sir Pom-pom"" on an impromptu quest to find her father. During their travels, they encounter swindlers, faeries, trolls, ogres, a knight in search of his youth, and a relatively pedestrian item known as the Holy Grail. As the sorcerers Shimrod and Murgen investigate portents of cataclysm in the world of magic, Casmir plans a murder that will bring all the lands under his iron rule; however, his ambitions will be complicated by one small but important oversight-he's failed to allow for Madouc!","The Last Temptation. Kazantzakis's classic novel, blacklisted by the Vatican, filmed by Scorsese, has been labelled heretical, blasphemous, and also a masterpiece. His Christ is an epic conception, wholly original. 'When Kazantzakis describes the raising of Lazarus, the early life of Mary Magdalene, the domestic lives of Martha and Mary, it is as if an old box of lantern slides had suddenly become a moving picture. The author has achieved a new and moving interpretation of a truly human Christ.' Times Literary Supplement","Bradbury Stories: 100 of His Most Celebrated Tales. For more than sixty years, the imagination of Ray Bradbury has opened doors into remarkable places, ushering us across unexplored territories of the heart and mind while leading us inexorably toward a profound understanding of ourselves and the universe we inhabit. In this landmark volume, America's preeminent storyteller offers us one hundred treasures from a lifetime of words and ideas. The stories within these pages were chosen by Bradbury himself, and span a career that blossomed in the pulp magazines of the early 1940s and continues to flourish in the new millennium. Here are representatives of the legendary author's finest works of short fiction, including many that have not been republished for decades, all forever fresh and vital, evocative and immensely entertaining.","Gunslinger. Dorn's high-spirited, crazy-quilt, complex anti-epic is a masterful critique of late twentieth-century capitalism and is one of the great comic poems of American literature. Dorn is one of the few political poets in America; this fantasy about a demigod cowboy, a saloon madam, and a talking horse named Claude Levi-Strauss, who travel the Southwest in search of Howard Hughes, has become a minor classic.","Coffin: The Art of Vampire Hunter D. For over 20 years, the character Vampire Hunter D has haunted the imaginations of people around the world, its image forever etched in the mind's eye through the dazzling artwork of Yoshitaka Amano. As the original novels appear in English for the first time, American readers are clamoring for a more extensive look at this singular creation. Coffin obliges. This gorgeous retrospective embraces the full scope of Amano's work with the character: in the novels, as inspiration for the animators of the two theatrical films, rare paintings, and illustrations created for release as limited edition prints.","Shutting Out the Sky: Life in the Tenements of New York 1880-1924. In a stunning nonfiction debut, award-winning author Deborah Hopkinson focuses on five immigrants' stories to reveal the triumphs and hardships of early 1900s immigrant life in New York. Acclaimed author Hopkinson recounts the lives of five immigrants to New York's Lower East Side through oral histories and engaging narrative. We hear Romanian-born Marcus Ravage's disappointment when his aunt pushes him outside to peddle chocolates on the street. And about the pickle cart lady who stored her pickles in a rat-infested basement. We read Rose Cohen's terrifying account of living through the Triangle Shirtwaist fire, and of Pauline Newman's struggles to learn English. But through it all, each one of these kids keeps working, keeps hoping, to achieve their own American dream.","An Inquiry into the Nature and Causes of the Wealth of Nations. An Inquiry into the Nature & Causes of the Wealth of Nations influenced a broad range of thinkers from David Ricardo to Karl Marx. Smith stresses the importance of the division of labor to economic progress. Opposing mercantilist monopolism, he offers a theoretical & historical case for free trade. Five editions appeared before his 1790 death: 1776, 1778, 1784, 1786 & 1789. Edwin Cannan's team collated the 1st five. The differences were published with a 6th edition in 1904. They found numerous minor differences between the 1st & 2nd editions, both of which were published in two volumes. Differences between the 2nd & 3rd editions are major. Smith annexed these 1st two editions with the 1784 publication of Additions & Corrections to the 1st & 2nd Editions of Dr Adam Smith's Inquiry into the Nature & Causes of the Wealth of Nations. He also published a 3-volume 3rd edition, incorporating Additions & Corrections & the 1st index. Additions & Corrections included entirely new sections. A 4th","The Journey That Saved Curious George: The True Wartime Escape of Margret and H.A. Rey. In 1940, Hans and Margret Rey fled their Paris home as the German army advanced. They began their harrowing journey on bicycles, pedaling to Southern France with children's book manuscripts among their few possessions. Louise Borden combed primary resources, including Hans Rey's pocket diaries, to tell this dramatic true story. Archival materials introduce readers to the world of Hans and Margret Rey while Allan Drummond dramatically and colorfully illustrates their wartime trek to a new home. Follow the Rey's amazing story in this unique large format book that resembles a travel journal and includes full-color illustrations, original photos, actual ticket stubs and more. A perfect book for Curious George fans of all ages.",Maison Ikkoku Volume 12 (Maison Ikkoku #12).,"The Life of Emily Dickinson. The life of Emily Dickinson, Richard B. Sewall's monumental biography of the great American poet (1830-1886), won the National Book Award when it was originally published in two volumes. Now available in a one-volume edition, it has been called ""by far the best and most complete study of the poet's life yet to be written, the result of nearly twenty years of work"" (The Atlantic). R.W.B. Lewis has hailed it as ""a major event in American letters,"" adding that ""Richard Sewall's biographical vision of Emily Dickinson is as complete as human scholarship, ingenuity, stylistic pungency, and common sense can arrive at.""","Dogged Pursuit (Jack and Jamie #5). In this suspenseful fifth book in our wonderful series created by veteran dog trainer Lee Charles Kelley, a clever kennel owner, his lady love, and his loyal canines must solve their most disturbing mystery yet! It's October in Maine and ex-cop/criminologist turned dog trainer Jack Field and his fiancee, Chief State Medical Examiner Dr. Jamie Cutter, are getting married in a few weeks. But fate puts a wrench in their plans when the police find a young woman's body in a secluded lake. Jamie asks Jack, who's been appointed her civilian advisor, to come to the scene. Seeing the body sparks a memory of a case Jack studied while taking a seminar at the FBI's Behavioral Science Unit. He suspects the death is the work of a serial killer and as the mystery unfolds, it becomes clear that suspects abound, including a sleazy private detective, a well-respected botanist, recruits in the upper echelons of the FBI, and even the wealthy husband of Jack's ex-girlfriend. Add an adorable Dalmatian named","Neil Gaiman's Neverwhere. Graphic adaptation of Neil Gaiman's Neverwhere collects all nine issues of the Vertigo maxiseries. An ordinary Londoner stops to help an enigmatic girl and joins a battle to save the strange underworld kingdom of London Below from destruction.","Wittgenstein's Vienna. This is a remarkable book about a man (perhaps the most important and original philosopher of our age), a society (the corrupt Austro-Hungarian Empire on the eve of dissolution), and a city (Vienna, with its fin-de siecle gaiety and corrosive melancholy). The central figure in this study of a crumbling society that gave birth to the modern world is Wittgenstein, the brilliant and gifted young thinker. With others, including Freud, Viktor Adler, and Arnold Schoenberg, he forged his ideas in a classical revolt against the stuffy, doomed, and moralistic lives of the old regime. As a portrait of Wittgenstein, the book is superbly realized; it is even better as a portrait of the age, with dazzling and unusual parallels to our own confused society. Allan Janik and Stephen Toulmin have acted on a striking premise: an understanding of prewar Vienna, Wittgenstein s native city, will make it easier to comprehend both his work and our own problems .This is an independent work containing much that",The Pleasure of the Text.,"Aches & Pains. The author of the bestselling Tara Road applies her signature warmth, wisdom, and understanding of the human experience to something new, a hilarious guide to the trials of hospitals, surgery, and convalescence.","InuYasha Ani-Manga Vol. 1 (Inuyasha Ani-Manga #1). Inu Yasha Visual Manga, Volume 1 covers the events of the first three exciting episodes of the TV and video series, using actual, full-color film frames to narrate the story. High-school coed Kagome lives with legends - a legendary tree, a legendary well, and a legendary fortune-teller grandfather. When her little brother goes into the shrine that houses the well, Kagome goes in to stop him from playing in dangerous places. Suddenly a demon appears and drags her into the well and out the other side into ... a legend. Rumiko Takahasi's vibrant tableaux of feudal Japan is filled with magic, demons, and a half dog-demon boy who is thrown together with the spirited, modern girl, Kagome, on an epic quest. This is where legends begin.","The Prize (deWarenne Dynasty #4). Vengeance ruled his day and nights. An infamous sea captain of the British Royal Navy, Devlin O'Neill is consumed with the need to destroy the man who brutally murdered his father. Having nearly ruined the Earl of Eastleigh financially, he is waiting to strike the final blow. And his opportunity comes in the form of a spirited young American woman, the earl's niece, who is about to set his cold, calculating world on fire. Pride inflamed her spirit. Born and raised on a tobacco plantation, orphan Virginia Hughes is determined to rebuild her beloved Sweet Briar. Daringly, she sails to England alone, hoping to convince her uncle to lend her the funds. Instead she finds herself ruthlessly kidnapped by the notorious Devlin O'Neill. As his hostage, she will soon find her best-laid plans thwarted by a passion that could seal their fates forever... Love conquered them both...",Beyond Death: The Gates of Consciousness.,"Rape: A Love Story. Teena Maguire should not have tried to shortcut her way home that Fourth of July. Not after midnight, not through Rocky Point Park. Not the way she was dressed: tank top, denim cut-offs, high-heeled sandals. Not with her twelve-year-old daughter, Bethie. Not with packs of local guys running loose on hormones, rage, and alcohol. A victim of gang rape, left for dead in the park boathouse, the once vital and sexy Teena Maguire can now only regret that she has survived. And Bethie can barely remember a childhood uncolored by fear. For they're not even a neighborhood away, the men that she identified for the Niagara Falls Police Department: the wide-browed, sandy-haired Pick brothers; the sneering Jimmy DeLucca; Fritz Haaber with his moustache and stubbled jaw. They've killed her grandmother's longhaired orange cat. At a relentless, compelling pace punctuated by lonely cries in the night and the whisper of terror in the afternoon, National Book Award-winner Joyce Carol Oates unfolds the sto","A Supposedly Fun Thing I'll Never Do Again: Essays and Arguments. In this exuberantly praised book - a collection of seven pieces on subjects ranging from television to tennis, from the Illinois State Fair to the films of David Lynch, from postmodern literary theory to the supposed fun of traveling aboard a Caribbean luxury cruiseliner - David Foster Wallace brings to nonfiction the same curiosity, hilarity, and exhilarating verbal facility that has delighted readers of his fiction, including the bestselling Infinite Jest.","Fourth of July Mice!. It's the most patriotic of all holidays--Independence Day! The Holiday Mice take part in all the activities that make the Fourth of July fun: a parade, a picnic, a baseball game and sack race, and a refreshing dip in the stream. Even Mr. Mouse, the littlest mouse's special toy, joins in the festivities. The best part of all comes at the end of the day: a spectacular fireworks show! Packed with plenty of red, white, and blue and featuring the four Holiday Mice at their most adorable, this story about our nation's birthday will delight readers young and old alike.","Three Men in a Boat: To Say Nothing of the Dog. George, William, and J. agree on one thing. They're overworked and need a rest. A week on ""the rolling deep"" -- they decide -- may be just the thing! So off they go with Montmorency, the dog, anticipating the joys of long, lazy days during a glorious Victorian summer. What happens to these bungling bachelors on a two-week rowing excursion up the Thames provides fodder for one of the best-known classics of English humor. Jerome's timeless comedy follows the trio's misadventures as they struggle with camping equipment and meal preparation, confront rampant hypochondria and unreliable weather, and contend with other disasters -- all of which trumpet simple truths that still resonate today.","The Days Are Just Packed. Zounds! Spaceman Spiff, Stupendous Man, the ferocious tiger Hobbes, and the rest of Calvin's riotous imagination are all included in The Days Are Just Packed. Calvin, the self-proclaimed ""Boy of Destiny,"" continues to save the universe with his alter egos, Spaceman Spiff and Stupendous Man, at least until Miss Wormwood or his mother bring him back to reality. Susie, Calvin's nemesis and love interest, remains Calvin's favorite target. And when he's not recovering from a ferocious tiger attack, Calvin creates hideous snowmen, plays a moral cat-and-mouse game with Santa, conducts his infamous Dad polls, and combats the monsters under his bed.","The Sleeping Doll (Kathryn Dance #1). When Special Agent Kathryn Dance -- a brilliant interrogator and kinesics expert with the California Bureau of Investigation -- is sent to question the convicted killer Daniel ""Son of Manson"" Pell as a suspect in a newly unearthed crime, she feels both trepidation and electrifying intrigue. Pell is serving a life sentence for the brutal murders of the wealthy Croyton family in Carmel years earlier -- a crime mirroring those perpetrated by Charles Manson in the 1960s. But Pell and his cult members were sloppy: Not only were they apprehended, they even left behind a survivor -- the youngest of the Croyton daughters, who, because she was in bed hidden by her toys that terrible night, was dubbed the Sleeping Doll. But the girl never spoke about that night, nor did the crime's mastermind. Indeed, Pell has long been both reticent and unrepentant about the crime. And so with the murderer transported from the Capitola superprison to an interrogation room in the Monterey County Courthouse, Danc","While I Was Gone. Jo Becker has every reason to be content. She has three dynamic daughters, a loving marriage, and a rewarding career. But she feels a sense of unease. Then an old housemate reappears, sending Jo back to a distant past when she lived in a communal house in Cambridge, Massachusetts. Drawn deeper into her memories of that fateful summer in 1968, Jo begins to obsess about the person she once was. As she is pulled farther from her present life, her husband, and her world, Jo struggles against becoming enveloped by her past and its dark secret. ""Riveting . . . While I Was Gone [celebrates] what is impulsive in human nature."" -The New York Times ""Miller weaves her themes of secrecy, betrayal, and forgiveness into a narrative that shines."" -Time ""[While I Was Gone] swoops gracefully between the past and the present, between a woman's complex feelings about her husband and her equally complex fantasies-and fears-about another man. . . . [Miller writes] well about the trials of faith."" -The New",The Centurions (The Centurions #1). A story of rivalry of two half-brothers in the Roman legions posted in Germania during the reign of Vespasian;,"Sk8er Boy (First Kiss Club #1). Are you a Good Girl? Do you... -Allow your parents to micromanage your life so you'll get into the ""right"" college (aka Dad's alma mater)? -Sign up for a gazillion after-school activities to be more ""well rounded"" (though at this point, you're so round, you may roll away!) -Hang out with fashion-obsessed Populars--who don't accept anyone who doesn't embrace the color pink? -Date rich, obnoxious jocks like Brent Baker III--who are so cheesy you can't stomach them without crackers? Or a Bad Girl? Do you... -Meet new cool people--like the headmaster's punk-rock daughter Starr? -Pierce random body parts (ok, just your belly button--but still!) and hope your parents don't notice? -Date an uber-hot sk8er boy from the wrong side of town--though your parents say ""No way!""? -Fall in love with the sk8er--in a tragic Romeo and Juliet (with text messaging) kind of way? Good Girl Dawn Miller is about to find out just how good it is to be bad!","Den of Thieves (Cat Royal #3). Cat Royal finds herself homeless, travels to Paris, becomes an underground reporter, nearly gets hung for being a traitor to the revolution, and is baffled by attention from numerous suitors - all the while being disguised as a prissy ballerina! As the French Royal family flee, Cat discovers the power of the people.","The Drifters. Ho la bon nguoi My, mot co gai Na Uy, mot co gai Anh. Chien tranh Viet Nam, chien tranh Trung Dong, nan phan biet chung toc, dao Hoi va nhung bong ma cua qua khu da xo day ho troi dat toi thanh pho mat troi, de roi, tu noi day, ho lai bat dau hanh trinh phieu luu moi den voi nhung dem phuong Nam Tay Ban Nha vo xe tam can, nhung tran dau bo rung ngan can treo soi toc, nhung thanh luy Bo Dao Nha thach thuc thoi gian, nhung rung ram chau Phi day am anh, nhung bao tap cuoc doi va nhung tan vo trong long nguoi... Khong tim bat cu goc canh nao de an nau, ho da cung nhau doi dien voi cuoc doi trong cuoc Thap Tu Chinh kiem tim nhung gia tri moi... Nhu mot bach khoa thu ket hop nhuan nhuyen sung ong va hoa hong, tinh yeu va tinh duc, ton giao va nghe thuat, du hanh va ma tuy, nhung ban ballad say long va tieng keu tham xe ruot, co the noi Sau nguoi di khap the gianla mot cuon tieu thuyet doc nhat vo nhi khong bao gio cu ve cuoc song...","First They Killed My Father: A Daughter of Cambodia Remembers. Chronicles the brutality of the Khmer Rouge in Cambodia, from the author's forced ''evacuation'' of Phnom Penh in 1975 to her family's subsequent movements from town to town and eventual separation.","The Call of the Wild. In this quintessential adventure story, Jack London takes readers on an arduous journey through the forbidding Alaskan landscape during the gold rush of the 1890s. Buck, a rangy mixed breed used to a comfortable, sun-filled life as a family dog, is stolen by a greedy opportunist and sold to dog traffickers. In no time, Buck finds himself on a team of sled dogs run ragged in the harsh winter of the Klondike. In a climate where every day is a savage struggle for survival, the last traces of Buck's soft, pampered existence are erased as his dormant primordial urges -- deeply embedded for generations -- are brutally awakened. The superb detail, taken from London's firsthand knowledge of Alaskan frontier life, makes this classic tale as gripping today as it was almost a hundred years ago. No other novel has so clearly shown the fragile separation between tame and wild, between man and beast. Now, paired with master illustrator Wendell Minor's exquisite paintings, this timeless story is avai","The Beleaguered City: The Vicksburg Campaign. The companion volume to Stars in Their Courses, this marvelous account of Grant's siege of the Mississippi port of Vicksburg continues Foote's narrative of the great battles of the Civil War--culled from his massive three-volume history--recounting a campaign which Lincoln called ""one of the most brilliant in the world"".","The Stars at Noon. Set in Nicaragua in 1984, The Stars at Noonis a story of passion, fear, and betrayal told in the voice of an American woman whose mission in Central America is as shadowy as her surroundings. Is she a reporter for an American magazine as she sometimes claims, or a contact person for Eyes of Peace? And who is the rough English businessman with whom she becomes involved? As the two foreigners become entangled in increasingly sinister plots, Denis Johnson masterfully dramatizes a powerful vision of spiritual bereavement and corruption.","About the B'nai Bagels. THE REAL NAME of the Little League team was the B'nai B'rith, but everyone called them the B'nai Bagels. Their manager was Bessie Setzer, but every one called her Mother Bagel, and the team grew to love her and even Spencer, Brother Bagel, their coach. Which was fine for everyone but Mark Setzer. For him it made problems. Because with a mother as manager and a brother as coach, he felt he had lost his right to be awful on the field and had gained a lot of sticky situations. Then, in addition to worrying about his performance on the baseball team, be had to worry about his performance at his Bar Mitzvah and about his friend, Hersch, who had moved to another part of town and found another best friend. Practicing in the relative privacy of The Projects, where there were some very good and very interesting players, helped Mark's game. It took more than that to help the rest, though. And there were some tough moments before Mark felt competent to handle the social situations and moral decis","Dear Genius: The Letters of Ursula Nordstrom. She trusted her immense intuition and generous heart--and published the most. Ursula Nordstrom, director of Harper's Department of Books for Boys and Girls from 1940 to 1973, was arguably the single most creative force for innovation in children's book publishing in the United States during the twentieth century. Considered an editor of maverick temperament and taste, her unorthodox vision helped create such classics as Goodnight Moon, Charlotte's Web, Where the Wild Things Are, Harold and the Purple Crayon, and The Giving Tree. Leonard S. Marcus has culled an exceptional collection of letters from the HarperCollins archives. The letters included here are representative of the brilliant correspondence that was instrumental in the creation of some of the most beloved books in the world today. Full of wit and humor, they are immensely entertaining, thought-provoking, and moving in their revelation of the devotion and high-voltage intellect of an incomparably gifted editor, mentor, and pu","Maelstrom. In Changelings, bestselling authors Anne McCaffrey and Elizabeth Ann Scarborough returned to the sentient planet Petaybee with a story of growth and transformation in the face of deadly new threats. The telepathic, shapeshifting twins Murel and Ronan found that Petaybee had plans for them as well. Now those plans begin to bear fruit with fresh possibilities... and dangers. MAELSTROM Now that Petaybee is forming a new equatorial island, the planet has agreed to harbor a group of new refugees, workers indentured to the powerful InterGal Corporation. But the mission to collect the immigrants becomes a rescue operation when it is revealed that InterGal is doing nothing to help these survivors of a world devastated by a meteor shower. Murel and Ronan set out to persuade the frightened refugees to come out of hiding, leave their world, and bring along their sacred totem animals, the gifted sea turtles called the Honus. But the twins discover that they've taken on more than they expected: the","A Virtuous Woman. When Blinking Jack Stokes met Ruby Pitt Woodrow, she was twenty and he was forty. She was the carefully raised daughter of Carolina gentry and he was a skinny tenant farmer who had never owned anything in his life. She was newly widowed after a disastrous marriage to a brutal drifter. He had never asked a woman to do more than help him hitch a mule. They didn't fall in love so much as they simply found each other and held on for dear life. Kaye Gibbons's first novel, Ellen Foster, won the Sue Kaufman Prize for First Fiction from the American Academy and Institute of Arts and Letters and the praise of writers from Walker Percy to Eudora Welty. In A Virtuous Woman, Gibbons transcends her early promise, creating a multilayered and indelibly convincing portrait of two seemingly ill-matched people who somehow miraculously make a marriage.",Photos of the Gods: The Printed Image and Political Struggle in India.,"Star by Star (Star Wars: The New Jedi Order #9). The New York Times bestselling Star Wars series The New Jedi Order enthralls readers with its epic drama and thrilling adventure. Now readers will pierce the very heart of darkness... It is a solemn time for the New Republic, as the merciless Yuuzhan Vong continue their campaign of destruction. The brutal enemy has unleashed a savage creature capable of finding--and killing--Jedi Knights. And now Leia Organa Solo faces a terrible ultimatum. If the location of the secret Jedi base is not revealed within one week, the Yuuzhan Vong will blast millions of refugee ships into oblivion. As the battered but still unbroken Jedi scramble to deal with the newest onslaught, Leia's son Anakin lays out a daring plan. He will lead a Jedi strike force into the heart of enemy territory in order to sabotage the Yuuzhan Vong's deadliest weapons. There, with his brother and sister at his side, he will come face-to-face with his destiny--as the New Republic, still fighting the good fight, will come face-to","Broken (Women of the Otherworld #6). In this thrilling new novel from the author of Industrial Magic, a pregnant werewolf may have unwittingly unleashed Jack the Ripper on twenty-first-century--and become his next target. Ever since she discovered she's pregnant, Elena Michaels has been on edge. After all, she's never heard of another living female werewolf, let alone one who's given birth. But thankfully, her expertise is needed to retrieve a stolen letter allegedly written by Jack the Ripper. As a distraction, the job seems simple enough--only the letter contains a portal to Victorian London's underworld, which Elena inadvertently triggers--unleashing a vicious killer and a pair of zombie thugs. Now Elena must find a way to seal the portal before the unwelcome visitors get what they're looking for--which, for some unknown reason, is Elena.",True Harvest: Readings From Henry David Thoreau For Every Day Of The Year.,"Shahnameh: The Persian Book of Kings. Among the great works of world literature, perhaps one of the least familiar to English readers is the Shahnameh: ThePersian Book of Kings, the national epic of Persia. This prodigious narrative, composed by the poet Ferdowsi between the years 980 and 1010, tells the story of pre- Islamic Iran, beginning in the mythic time of Creation and continuing forward to the Arab invasion in the seventh century. As a window on the world, Shahnamehbelongs in the company of such literary masterpieces as Dante's Divine Comedy, the plays of Shakespeare, the epics of Homer classics whose reach and range bring whole cultures into view. In its pages are unforgettable moments of national triumph and failure, human courage and cruelty, blissful love and bitter grief. In tracing the roots of Iran, Shahnamehinitially draws on the depths of legend and then carries its story into historical times, when ancient Persia was swept into an expanding Islamic empire. Now Dick Davis, the greatest modern translator o","Beatrice's Goat. More than anything, Beatrice longs to be a schoolgirl. But in her small African village, only children who can afford uniforms and books can go to school. Beatrice knows that with six children to care for, her family is much too poor. But then Beatrice receives a wonderful gift from some people far away -- a goat! Fat and sleek as a ripe mango, Mugisa (which means ""luck"") gives milk that Beatrice can sell. With Mugisa's help, it looks as if Beatrice's dream may come true after all. Page McBrier and Lori Lohstoeter beautifully recount this true story about how one child, given the right tools, is able to lift her family out of poverty. Thanks to Heifer Project International -- a charitable organization that donates livestock to poor communities around the world -- other families like Beatrice's will also have a chance to change their lives.","The O. Henry Prize Stories 2003. Since its establishment in 1919, the O. Henry Prize stories collection has offered an exciting selection of the best stories published in hundreds of literary magazines every year. Such classic works of American literature as Ernest Hemingway's The Killers (1927); William Faulkner's Barn Burning (1939); Carson McCuller's A Tree. A Rock. A Cloud (1943); Shirley Jackson's The Lottery(1949); J.D. Salinger's For Esme with Love and Squalor (1963); John Cheever's The Country Husband(1956) ; and Flannery O'Conner's Everything that Rises Must Converge(1963) all were O. Henry Prize stories. An accomplished new series editor--novelist and short story writer Laura Furman--has read more than a thousand stories to identify the 20 winners, each one a pleasure to read today, each one a potential classic. The O. Henry Prize Stories 2003also contains brief essays from each of the three distinguished judges on their favorite story, and comments from the prize-winning writers on what inspired their stori",Rob Roy.,The Colossus and Other Poems.,"An Hour Before Daylight: Memories of a Rural Boyhood. In An Hour Before Daylight,Jimmy Carter, bestselling author of Living Faithand Sources of Strength,recreates his Depression-era boyhood on a Georgia farm before the civil rights movement forever changed it and the country. Carter writes about the powerful rhythms of countryside and community in a sharecropping economy, offering an unforgettable portrait of his father, a brilliant farmer and a strict segregationist who treated black workers with respect and fairness; his strong-willed and well-read mother; and the five other people who shaped his early life, three of whom were black. Carter's clean and eloquent prose evokes a time when the cycles of life were predictable and simple and the rules were heartbreaking and complex. In his singular voice and with a novelist's gift for detail, Jimmy Carter creates a sensitive portrait of an era that shaped the nation and recounts a classic, American story of enduring importance.","The Rainmaker. John Grisham's five novels -- A Time To Kill, The Firm, The Pelican Brief, The Client, and The Chamber-- have been number one best-sellers, and have a combined total of 47 million copies in print. Now, inThe Rainmaker, Grisham returns to the courtroom for the first time since A Time To Kill, and weaves a riveting tale of legal intrigue and corporate greed. Combining suspense, narrative momentum, and humor as only John Grisham can, this is another spellbinding read from the most popular author of our time. Grisham's sixth spellbinding novel of legal intrigue and corporate greed displays all of the intricate plotting, fast-paced action, humor, and suspense that have made him the most popular author of our time. In his first courtroom thriller since A Time To Kill, John Grisham tells the story of a young man barely out of law school who finds himself taking on one of the most powerful, corrupt, and ruthless companies in America -- and exposing a complex, multibillion-dollar insurance scam",Fergus and the Night-Demon.,"Why Orwell Matters. In this widely acclaimed biographical essay, Christopher Hitchens assesses the life, the achievements, and the myth of the great political writer and participant George Orwell. In true emulative and contrarian style, Hitchens is both admiring and aggressive, sympathetic yet critical, taking true measure of his subject as hero and problem. Answering both the detractors and the false claimants, Hitchens tears down the facade of sainthood erected by the hagiographers and rebuts the critics point by point. He examines Orwell and his perspectives on fascism, empire, feminism, and Englishness, as well as his outlook on America, a country and culture towards which he exhibited much ambivalence. Whether thinking about empires or dictators, race or class, nationalism or popular culture, Orwell's moral outlook remains indispensable in a world that has undergone vast changes in the fifty years since his death. Combining the best of Hitchens's polemical punch and intellectual elegance in a tightly","Three to Get Deadly (Stephanie Plum #3). A ""saintly"" old candy store owner is on the lam - and bounty hunter extraordinaire Stephanie Plum is on the case. As the body count rises, Stephanie finds herself dealing with dead drug dealers and slippery fugitives on the chase of her life. And with the help of eccentric friends and family, Steph must see to it that this case doesn't end up being her last....","The Scotch-Irish: A Social History. Dispelling much of what he terms the ""mythology"" of the Scotch-Irish, James Leyburn provides an absorbing account of their heritage. He traces their life in Scotland, when the essentials of their character and culture were shaped; their removal to Northern Ireland; and their successive migrations to America, where many settled in the backcountry of Pennsylvania, Virginia, the Carolinas, and Georgia, before joining the flow of pioneeers westward in the wake of the Revolutionary War.",Noches de tormenta.,"Key Lime Pie Murder (Hannah Swensen #9). The yummy [ninth] smalltown cozy from Fluke (after 2006's Cherry Cheesecake Murder) finds sometime sleuth Hannah Swensen, owner of the Cookie Jar in Lake Eden, Minn., judging the baking contest at the Tri-County Fair. When one of her fellow judges, home economics teacher Willa Sunquist, is murdered, Hannah determines to sniff out the killer. Was it a man from Willa's mysterious past? Or a student she flunked? Fluke has developed a charming supporting cast -- Hannah's besotted (and slightly spineless) two suitors, her overbearing but likable mother, her endearing sisters and her levelheaded business partner all feel like friends by the time the murder is solved. The dozens of tempting recipes Fluke includes are an added treat. This text refers to the Hardcover edition.","Fugitive Prince (Wars of Light and Shadow #4). The wars of light and shadowWith the appalling destruction of the Vastmark warhost, recoil and grief reshapes the balance of power in the Five Kingdoms. Two half brothers, cursed by a Mistwraith to a lifelong enmity, are set into violent conflict: ""Lysaer, "" Prince of the Light. ""Arithon, "" Master of Shadow. And there are those between who will stop at nothing to fulfill secret desires and consolidate their own power. With faction set against faction, heart set against heart, and spells of high mastery engaged to cast down the ancient mysteries, the moves made by hunters and fugitive alike will remake the course of world destiny.","You Can't Go Home Again. George Webber has written a successful novel about his family and hometown. When he returns to that town he is shaken by the force of the outrage and hatred that greets him. Family and friends feel naked and exposed by the truths they have seen in his book, and their fury drives him from his home. He begins a search for his own identity that takes him to New York and a hectic social whirl; to Paris with an uninhibited group of expatriates; to Berlin, lying cold and sinister under Hitler's shadow. At last Webber returns to America and rediscovers it with love, sorrow, and hope.","Red and Black. Handsome & ambitious, Julien Sorel is determined to rise above his humble peasant origins & make something of his life. By adopting the code of hypocrisy by which his society operates Julien ultimately commits a crime--out of passion, principle or insanity--that will bring about his downfall. The Red & the Black is a lively, satirical picture of French Restoration society after Waterloo, riddled with corruption, greed & ennui. The complex, sympathetic portrayal of Julien, the cold exploiter whose Machiavellian campaign is undercut by his own emotions, makes him Stendhal's most brilliant & human creation--& one of the greatest characters in European literature.","Poems New and Collected. Described by Robert Hass as ""unquestionably one of the great living European poets"" and by Charles Simic as ""one of the finest poets living today,"" Szymborska mesmerizes her readers with poetry that captivates their minds and captures their hearts. This is the book that her many fans have been anxiously awaiting-the definitive, complete collection of poetry by the Nobel Prize-winning poet, including 164 poems in all, as well as the full text of her Nobel acceptance speech of December 7, 1996, in Stockholm. Beautifully translated by Stanislaw Bara<