summaryrefslogtreecommitdiff
path: root/tests/feed.rss
blob: 9fddfda2d92cbcd6475fc9c4da53e2099a8b17e3 (plain)
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
<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0">
<channel>
	<title>Apple's Movie Trailers</title>
	<link>http://rtcfeeds.com/ufeeds/feeds/applemovietrailers/</link>
	<description>Unofficial Feed of Apple's Movie Trailers</description>
	<language>en</language>
	<generator>TS-RSS RTC Feeds V0.1 http://rtcfeeds.com</generator>
	<docs>http://rtcfeeds.com/</docs>
		<image>
			<url>http://rtcfeeds.com/img/applemovietrailers.png</url>
			<title>Unofficial Feed of Apple's Movie Trailers</title>
			<link>http://rtcfeeds.com/ufeeds/feeds/applesmovietrailers/</link>
		</image>
	<item>
		<title>Find In Articles</title>
		<link>http://findinarticles.com/</link>
		<description><![CDATA[ Search, submit or download unlimited free article content, tutorials, journals and online guides at <a href="http://findinarticles.com/" title="Find in Articles">Find in articles</a>. ]]></description>
		<category>articles</category>
		<pubDate>Tue, 04 Sep 2007 09:54:43 -0500</pubDate>
	</item>
	<item>
		<title>Great World of Sound</title>
		<link>http://www.apple.com/trailers/magnolia/greatworldofsound/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/greatworldofsound_l200708301843.jpg" alt="Great World of Sound"/>
				</td>
				<td>
								<h1>Great World of Sound</h1>
								<span>© Copyright 2007 Magnolia Pictures</span>
								<br/><a href="http://www.tkqlhce.com/ka108r09608OQVRUSSUOQPRYTQTS?sid=rss"><img border="0" src="http://www.ftjcfx.com/9q97p59y31NPUQTRRTNPOQXSPSR"/></a>
								<p>An audience-pleasing riff on the dirty underbelly of the American Idol phenomenon, GREAT WORLD OF SOUND stars Patrick Healy and Kene Holliday as Martin and Clarence, two normal southern guys who get caught up in the excitement of a record industry talent scouting scheme.  Unemployed one day and record producers the next, Martin and Clarence have a blast signing new acts and hit the road looking for the next big thing.  But what happens once the checks are cashed? Craig Zobel’s independent film bona fides are firmly in place: he served on the crew of David Gordon Green’s early films, and Green serves as executive producer of GREAT WORLD OF SOUND.  But it may be more helpful to go into GREAT WORLD OF SOUND knowing that Zobel has recently made a living between films by working on reality TV shows like The Apprentice. “I became fascinated by how desperate people were to get on TV, but how little they seemed to care about how they were portrayed once they got there,” he says</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-14</h4>
											<p>
												Comedy<br />
												Rating: R
											</p>
											<p>
												Craig Zobe (dir.)<br />Pat Healy<br/>
Kene Holliday<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/magnolia_pictures/greatworldofsound/greatworldofsound_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/magnolia_pictures/greatworldofsound/greatworldofsound_h640w.mov"/>
	</item>
	<item>
		<title>Unlimited Domain Hosting with 200GB bandwidth</title>
		<link>http://secure.hostony.com/affil/?User_ID=501251&amp;uuid=wappl36</link>
		<description><![CDATA[ Free Domain name registrations  200 Gb Bandwidth 15GB webspace 
Unlimited Domain Hosting, Unlimited Email accounts Unlimited database all $6.95/m these guy must be crazy!!!. Supports PHP + MySQL + Postgres]]></description>
		<category>Offers</category>
		<guid>http://secure.hostony.com/affil/?User_ID=501251&amp;uuid=wappl36</guid>
		<pubDate>Tue, 04 Sep 2007 09:54:43 -0500</pubDate>
	</item>
	<item>
		<title>The Comebacks</title>
		<link>http://www.apple.com/trailers/fox_atomic/thecomebacks/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/fox_atomic/posters/thecomebacks_l200708291122.jpg" alt="The Comebacks"/>
				</td>
				<td>
								<h1>The Comebacks</h1>
								<span>© Copyright 2007 Fox Atomic</span>
								<br/><a href="http://www.kqzyfj.com/7h104hz74z6MOTPSQQSMONQNRROO?sid=rss"><img border="0" src="http://www.afcyhf.com/gp70qmqeki35A69779354748855"/></a>
								<p>Coach Fields (David Koechner) is pathetic.  He has the distinction of being the worst coach in the history of sports anyone can recall.  A loser of enormous proportions, the incompetent and seemingly hopeless coach is convinced by fellow coach Freddie Wiseman (Carl Weathers) to return to the field for one last shot.  Assuring his long suffering wife (Melora Hardin) that he will not ignore his family, Coach moves them to Plainfolk, Texas where he hopes to redeem himself and his reputation.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-26</h4>
											<p>
												Comedy<br />
												Rating: Not yet rated
											</p>
											<p>
												Tom Brady (dir.)<br />Matthew Lawrence<br/>
Carl Weathers<br/>
Melora Hardin<br/>
David Koechner<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/fox/the_comebacks/the_comebacks-tlrc_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/fox/the_comebacks/the_comebacks-tlrc_h640w.mov"/>
	</item>
	<item>
		<title>$15 OFF on Buy.com</title>
		<link>http://www.kqzyfj.com/je116ar-xrzEGLHKIIKEGFINONGH?sid=rssa&amp;uuid=wappl36</link>
		<description><![CDATA[$15 OFF $200 Coupon in our Computer, Software, Home Networking, Digital Camera and Electronic Stores! New Customers Only! Exp 08-31-05!]]></description>
		<category>Offers</category>
		<guid>http://www.kqzyfj.com/je116ar-xrzEGLHKIIKEGFINONGH?sid=rssa&amp;uuid=wappl36</guid>
		<pubDate>Tue, 04 Sep 2007 09:54:43 -0500</pubDate>
	</item>
	<item>
		<title>Eastern Promises</title>
		<link>http://www.apple.com/trailers/focus_features/easternpromises/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/focus_features/posters/easternpromises_l200708291129.jpg" alt="Eastern Promises"/>
				</td>
				<td>
								<h1>Eastern Promises</h1>
								<span>© Copyright 2007 Focus Features</span>
								<br/><a href="http://www.anrdoezrs.net/4i77p-85-7NPUQTRRTNPORVWWPP?sid=rss"><img border="0" src="http://www.ftjcfx.com/4877snrflj46B7A88A4658CDD66"/></a>
								<p>The new thriller reteaming acclaimed director David Cronenberg with his A History of Violence leading man Viggo Mortensen, Eastern Promises is written by Steve Knight (Academy Award-nominated screenwriter of Dirty Pretty Things).  As in the earlier film, director and star together explore the psyche, physicality, and fortunes of a man whose true nature may never be wholly revealed.  The mysterious and charismatic Russian-born Nikolai Luzhin (Mr. Mortensen) is a driver for one of London’s most notorious organized crime families of Eastern European origin. The family itself is part of the Vory V Zakone criminal brotherhood. Headed by Semyon (Academy Award nominee Armin Mueller-Stahl), whose courtly charm as the welcoming proprietor of the plush Trans-Siberian restaurant impeccably masks a cold and brutal core, the family’s fortunes are tested by Semyon’s volatile son and enforcer, Kirill (Vincent Cassel), who is more tightly bound to Nikolai than to his own father.  But Nikolai’s carefully maintained existence is jarred once he crosses paths at Christmastime with Anna Khitrova (Academy Award nominee Naomi Watts), a midwife at a North London hospital. Anna is deeply affected by the desperate situation of a young teenager who dies while giving birth to a baby. Anna resolves to try to trace the baby’s lineage and relatives. The girl’s personal diary also survives her; it is written in Russian, and Anna seeks answers in it.  Anna’s mother Helen (Sinéad Cusack) does not discourage her, but Anna’s irascible Russian-born uncle Stepan (Jerzy Skolimowski) urges caution. He is right to do so; by delving into the diary, Anna has accidentally unleashed the full fury of the Vory.  With Semyon and Kirill closing ranks and Anna pressing her inquiries, Nikolai unexpectedly finds his loyalties divided. The family tightens its grip on him; who can, or should, he trust? Several lives - including his own - hang in the balance as a harrowing chain of murder, deceit, and retribution reverberates through the darkest corners of both the family and London itself.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-14</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												David Cronenberg (dir.)<br />Viggo Mortensen<br/>
Naomi Watts<br/>
Armin Mueller-Stahl<br/>
Vincent Cassel<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/focus_features/eastern_promises/eastern_promises_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/focus_features/eastern_promises/eastern_promises_h640w.mov"/>
	</item>
	<item>
		<title>Drillbit Taylor</title>
		<link>http://www.apple.com/trailers/paramount/drillbittaylor/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/paramount/posters/drillbittaylor_l200708281721.jpg" alt="Drillbit Taylor"/>
				</td>
				<td>
								<h1>Drillbit Taylor</h1>
								<span>© Copyright 2008 Paramount Pictures</span>
								<br/><a href="http://www.kqzyfj.com/m3117shqnhp46B7A88A4658DEB5E?sid=rssb"><img border="0" src="http://www.ftjcfx.com/f9104elpdjh249586682436BC93C"/></a>
								<p>Ryan, Wade and Emmit attend their first day at high school and they’re pumped ... until they meet up with Filkins, a school bully who comes off like a little Hannibal Lecter. Before they become completely engulfed in Filkins’ reign of terror, they seek out some protection by placing an ad in soldier of fortune magazine. Their best response - and the cheapest - comes from Drillbit Taylor (Owen Wilson), a down-on-his luck soldier of fortune who lives a homeless - he likes to say “home free” - existence on the beach. He enrolls them in some physical and mental training.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2008-03-21</h4>
											<p>
												Comedy<br />
												Rating: Not yet rated
											</p>
											<p>
												Steven Brill (dir.)<br />Owen Wilson<br/>
David Dorfman<br/>
Leslie Mann<br/>
Danny Mcbride<br/>
Josh Peck<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/paramount/drillbit_taylor/drillbit_taylor-tlr1r_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/paramount/drillbit_taylor/drillbit_taylor-tlr1r_h640w.mov"/>
	</item>
	<item>
		<title>Hostony Crazy hosting</title>
		<link>http://secure.hostony.com/affil/?User_ID=501251&amp;uuid=wappl36</link>
		<description><![CDATA[15GB web space 200GB Bandwidth the rest is unlimited just $6.95/month]]></description>
		<category>Offers</category>
		<guid>http://secure.hostony.com/affil/?User_ID=501251&amp;uuid=wappl36</guid>
		<pubDate>Tue, 04 Sep 2007 09:54:43 -0500</pubDate>
	</item>
	<item>
		<title>Reservation Road</title>
		<link>http://www.apple.com/trailers/focus_features/reservationsroad/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/focus_features/posters/reservationsroad_l200708281103.jpg" alt="Reservation Road"/>
				</td>
				<td>
								<h1>Reservation Road</h1>
								<span>© Copyright 2007 Focus Features</span>
								<br/><a href="http://www.jdoqocy.com/fr121ar-xrzEGLHKIIKEGFIOHLKH?sid=rssb"><img border="0" src="http://www.awltovhc.com/gb81m-3sywHJOKNLLNHJILRKONK"/></a>
								<p>On a warm September evening, college professor Ethan Learner (Joaquin Phoenix), his wife Grace (Jennifer Connelly), and their daughter Emma (Elle Fanning) are attending a recital. Their 10-year-old son Josh (Sean Curley) is playing cello — beautifully, as usual. His younger sister looks up to him, and his parents are proud of their son. On the way home, they all stop at a gas station on Reservation Road. There, in one terrible instant, he is taken from them forever. On a warm September evening, law associate Dwight Arno (Mark Ruffalo) and his 11-year-old son Lucas (Eddie Alderson) are attending a baseball game. Their favorite team, the Red Sox, is playing - and, hopefully, heading for the World Series. Dwight cherishes his time spent with Lucas. Driving his son back to his ex-wife, Lucas’ mother Ruth Wheldon (Mira Sorvino), Dwight heads towards his fateful encounter at Reservation Road. The accident happens so fast that Lucas is all but unaware, while Ethan — the only witness — is all too aware, as a panicked Dwight speeds away. The police are called, and an investigation begins. Haunted by the tragedy, both fathers react in unexpected ways, as do Grace and Emma. As a reckoning looms, the two fathers are forced to make the hardest choices of their lives.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-19</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Terry George (dir.)<br />Joaquin Phoenix<br/>
Mark Ruffalo<br/>
Jennifer Connelly<br/>
Mira Sorvino<br/>
Elle Fanning<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/focus_features/reservation_road/reservation_road_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/focus_features/reservation_road/reservation_road_h640w.mov"/>
	</item>
	<item>
		<title>Download high-quality videos to your PC</title>
		<link>http://www.kqzyfj.com/ke104tenkem138475571325B6273?sid=rssa&amp;uuid=wappl36</link>
		<description><![CDATA[Try TotalVid FREE for 30 days!]]></description>
		<category>Offers</category>
		<guid>http://www.kqzyfj.com/ke104tenkem138475571325B6273?sid=rssa&amp;uuid=wappl36</guid>
		<pubDate>Tue, 04 Sep 2007 09:54:43 -0500</pubDate>
	</item>
	<item>
		<title>The Hunting Party</title>
		<link>http://www.apple.com/trailers/weinstein/thehuntingparty/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/weinstein/posters/thehuntingparty_l200708241644.jpg" alt="The Hunting Party"/>
				</td>
				<td>
								<h1>The Hunting Party</h1>
								<span>© Copyright 2007 Weinstein Company</span>
								<br/><a href="http://www.kqzyfj.com/5777biroiq57C8B99B5769CE8A7?sid=rssb"><img border="0" src="http://www.ftjcfx.com/c0110uuymsqBDIEHFFHBDCFIKEGD"/></a>
								<p>TV News reporter Simon Hunt (Richard Gere) and cameraman Duck (Terrence Howard have worked in the world’s hottest war zones: from Bosnia to Iraq, from Somalia to El Salvador. Together they have dodged bullets, filed incisive reports and collected Emmy awards. Then one terrible day in a Bosnian village everything changes. During a live broadcast on national television, Simon has a meltdown. After that, Duck is promoted and Simon just disappears. Five years later Duck returns to Sarajevo with rookie reporter Benjamin (Jessie Eisenberg) to cover the fifth anniversary of the end of the war. Simon shows up, a ghost from the past, with the promise of a world exclusive. He convinces Duck that he knows the whereabouts of Bosnia’s most wanted war criminal “The Fox.” Armed with only spurious information Simon, Duck and Benjamin embark on a dark and dangerous mission that takes them deep into hostile territory.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-07</h4>
											<p>
												Drama<br />
												Rating: Not yet rated
											</p>
											<p>
												Richard Shepard (dir.)<br />Richard Gere<br/>
Terrence Howard<br/>
Jesse Eisenberg<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/weinstein/the_hunting_party/the_hunting_party-tlr2_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/weinstein/the_hunting_party/the_hunting_party-tlr2_h640w.mov"/>
	</item>
	<item>
		<title>Closing Escrow</title>
		<link>http://www.apple.com/trailers/magnolia/closingescrow/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/closingescrow_l200708231748.jpg" alt="Closing Escrow"/>
				</td>
				<td>
								<h1>Closing Escrow</h1>
								<span>© Copyright 2007 Magnolia Pictures</span>
								<br/><a href="http://www.dpbolvw.net/h4102vpyvpxCEJFIGGICEDFMHFIL?sid=rssb"><img border="0" src="http://www.afcyhf.com/be100vvzntrCEJFIGGICEDFMHFIL"/></a>
								<p>The story of three quirky families seeking to buy their next home. They’re all moving for different reasons-and none of them are getting along with their real estate agents. African American attorneys Bobby and Tamika have hired Hillary Macella as their real estate agent.  Hillary is a racially hyper-sensitive white woman dealing with more than her share of white guilt.  That is until she gets mugged, and starts seeing the world quite a bit differently. Tom and Dawn are an unconventional couple. When they met, Tom was happily married to another woman. But thanks to Dawn’s unstoppable persistence (the police reports called it stalking, but Dawn doesn’t like to think of it that way), Tom was convinced to leave his wife and start his life over again in a new home with Dawn. They’ve wound up with a shady real estate agent with a knack for damaging homes to make them more affordable for his clients. This makes house hunting somewhat awkward for Tom and Dawn, not to mention a little dangerous.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-28</h4>
											<p>
												Comedy<br />
												Rating: PG
											</p>
											<p>
												Armen Kaprelian, Kent Llewellyn (dir.)<br />Wendi Mclendon-Covey<br/>
Cedric Yarbrough<br/>
April Barnett<br/>
Rob Brownstein<br/>
Colleen Crabtree<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/independent/closing_escrow/closing_escrow_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/independent/closing_escrow/closing_escrow_h640w.mov"/>
	</item>
	<item>
		<title>The Nines</title>
		<link>http://www.apple.com/trailers/newmarket/thenines/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/newmarket/posters/thenines_l200708221111.jpg" alt="The Nines"/>
				</td>
				<td>
								<h1>The Nines</h1>
								<span>© Copyright 2007 Newmarket Films</span>
								<br/><a href="http://www.anrdoezrs.net/h8117ar-xrzEGLHKIIKEGFINHJIJ?sid=rssb"><img border="0" src="http://www.ftjcfx.com/7081elpdjh249586682436B5767"/></a>
								<p>John August, the acclaimed screenwriter of GO, BIG FISH, CHARLIE AND THE CHOCOLATE FACTORY and THE CORPSE BRIDE, makes his directorial debut with THE NINES, an intricately constructed intriguing blur of reality, virtual reality and metaphysical fantasy.  The film unfolds in three parts, featuring the same actors in different (and in some ways overlapping) incarnations.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-31</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												John August (dir.)<br />Ryan Reynolds<br/>
Melissa McCarthy<br/>
Hope Davis<br/>
Elle Fanning<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/newmarket/the_nines/the_nines_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/newmarket/the_nines/the_nines_h640w.mov"/>
	</item>
	<item>
		<title>The Signal</title>
		<link>http://www.apple.com/trailers/magnolia/thesignal/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/thesignal_l200708221625.jpg" alt="The Signal"/>
				</td>
				<td>
								<h1>The Signal</h1>
								<span>© Copyright 1969 Magnolia Pictures</span>
								<br/><a href="http://www.kqzyfj.com/bs122ar-xrzEGLHKIIKEGFHNHMIG?sid=rssb"><img border="0" src="http://www.ftjcfx.com/6r105g04tzxIKPLOMMOIKJLRLQMK"/></a>
								<p>It’s New Year’s Eve in the city of Terminus and chaos is this year’s resolution. All forms of communication have been jammed by an enigmatic transmission that preys on fear and desire driving everyone in the city to murder and madness. In a place once marked by conformity but now sent into complete anarchy, the rebellious Ben must save the woman he loves from the bedlam in the streets as well as her crazed sadistic husband. But the only way he can tell who to trust or who has given in to violence is by uncovering the true nature of The Signal.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: </h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												David Bruckner, Jacob Gentry, Dan Bush (dir.)<br />AJ Bowen<br/>
Justin Welborn<br/>
Anessa Ramsey<br/>
Scott Poythress<br/>
Cheri Christan<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/magnolia_pictures/the_signal/the_signal_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/magnolia_pictures/the_signal/the_signal_h640w.mov"/>
	</item>
	<item>
		<title>VeggieTales: the Pirates Who Don’t Do Anything</title>
		<link>http://www.apple.com/trailers/universal/veggietalesthepirateswhodontdoanything/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/universal/posters/veggietalesthepirateswhodontdoanything_l200708221124.jpg" alt="VeggieTales: the Pirates Who Don’t Do Anything"/>
				</td>
				<td>
								<h1>VeggieTales: the Pirates Who Don’t Do Anything</h1>
								<span>© Copyright 2008 Universal Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/ne98js0ys-FHMILJJLFHGJOGGMK?sid=rss"><img border="0" src="http://www.lduhtrp.net/7q105g04tzxIKPLOMMOIKJMRJJPN"/></a>
								<p>From the creators of 2002’s wildly successful Jonah—A VeggieTales Movie comes a new story of heroism in the beloved VeggieTales’ world, The Pirates Who Don’t Do Anything.  Now, we follow the comic misadventures of three animated veggie pals who reluctantly set sail for adventure and discover that real heroes don’t have to be tall, strong, handsome…or even human.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2008-01-11</h4>
											<p>
												Family<br />
												Rating: Not yet rated
											</p>
											<p>
												Mike Nawrocki (dir.)<br />Mike Nawrocki<br/>
Phil Vischer<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/universal/veggie_tales_pirates/veggie_tales_pirates_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Family</category>
		<enclosure url="http://movies.apple.com/movies/universal/veggie_tales_pirates/veggie_tales_pirates_h640w.mov"/>
	</item>
	<item>
		<title>In the Valley of Elah</title>
		<link>http://www.apple.com/trailers/warner_independent_pictures/inthevalleyofelah/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/warner_independent_pictures/posters/inthevalleyofelah_l200708211836.jpg" alt="In the Valley of Elah"/>
				</td>
				<td>
								<h1>In the Valley of Elah</h1>
								<span>© Copyright 2007 Warner Independent Pictures</span>
								<br/><a href="http://www.tkqlhce.com/ot114y1A719PRWSVTTVPRQTYZZWY?sid=rssb"><img border="0" src="http://www.lduhtrp.net/or80qmqeki35A697793547CDDAC"/></a>
								<p>”In the Valley of Elah” tells the story of a war veteran (Tommy Lee Jones), his wife (Susan Sarandon) and the search for their son, a soldier who recently returned from Iraq but has mysteriously gone missing, and the police detective (Charlize Theron) who helps in the investigation.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-14</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Paul Haggis (dir.)<br />Tommy Lee Jones<br/>
Charlize Theron<br/>
Susan Sarandon<br/>
Jason Patric<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/warner_independent/inthevalleyofelah/inthevalleyofelah-tlr1a_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/warner_independent/inthevalleyofelah/inthevalleyofelah-tlr1a_h640w.mov"/>
	</item>
	<item>
		<title>War</title>
		<link>http://www.apple.com/trailers/lions_gate/war/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/lions_gate/posters/war_l200707161646.jpg" alt="War"/>
				</td>
				<td>
								<h1>War</h1>
								<span>© Copyright 2007 Lionsgate</span>
								<br/><a href="http://www.tkqlhce.com/is75r09608OQVRUSSUOQTXURRQ?sid=rssbn"><img border="0" src="http://www.tqlkg.com/jm70vvzntrCEJFIGGICEHLIFFE"/></a>
								<p>A full-throttle, martial arts thriller, Lionsgate’s WAR stars Jet Li (FEARLESS, UNLEASHED, THE ONE) and Jason Statham (CRANK, THE ITALIAN JOB) as two adversaries set on a violent collision course in the Asian mob underground. Produced by Steven Chasman, Jim Thompson and Christopher Petzel, WAR is directed by Philip G. Atwell from a script by Lee Anthony Smith and Gregory J. Bradley. After his partner is brutally murdered by the infamous assassin Rogue (Jet Li), FBI agent Jack Crawford (Jason Statham) vows to find the elusive killer and personally avenge his partner’s death. But Rogue proves untraceable until three years later when he resurfaces to ignite a bloody turf war between Chinese mob leader Chang (John Lone) and Japanese Yakuza boss Shiro (Ryo Ishibashi). Eager to capture Rogue once and for all, Crawford leads his team of crime specialists headlong into the conflict. But Crawford’s thirst for vengeance jeopardizes his professional judgment, and as the violence escalates, Crawford finally comes face to face with his enemy to discover that nothing about Rogue or his plan is quite what it seems.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-24</h4>
											<p>
												Action and Adventure<br />
												Rating: R
											</p>
											<p>
												Philip G. Atwell (dir.)<br />Jet Li<br/>
Jason Statham<br/>
John Lone<br/>
Devon Aoki<br/>
Luis Guzman<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/lionsgate/war/war-tlr1a_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Action and Adventure</category>
		<enclosure url="http://movies.apple.com/movies/lionsgate/war/war-tlr1a_h640w.mov"/>
	</item>
	<item>
		<title>Alvin and the Chipmunks</title>
		<link>http://www.apple.com/trailers/fox/alvinandthechipmunks/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/fox/posters/alvinandthechipmunks_l200708171256.jpg" alt="Alvin and the Chipmunks"/>
				</td>
				<td>
								<h1>Alvin and the Chipmunks</h1>
								<span>© Copyright 2007 20th Century Fox</span>
								<br/><a href="http://www.tkqlhce.com/ot114y1A719PRWSVTTVPRQTYZZWY?sid=rssb"><img border="0" src="http://www.lduhtrp.net/or80qmqeki35A697793547CDDAC"/></a>
								<p>A global treasure that has delighted three generations of fans, comes to the big screen for the first time.  The live-action/CGI motion picture event brings together the celebrated history of its beloved characters - Dave Seville and singing chipmunks Alvin, Simon and Theodore - adding a new comic sensibility and edge.  The squeaky-voiced trio and Dave Seville made recording, broadcasting and merchandising history - selling 43 million albums, winning several Grammys, and headlining an animated prime time series, numerous TV specials, and a top-rated Saturday morning series seen in over 100 countries and translated into 40 languages.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-12-14</h4>
											<p>
												Family<br />
												Rating: Not yet rated
											</p>
											<p>
												Tim Hill (dir.)<br />Jason Lee<br/>
David Cross<br/>
Cameron Richardson<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/fox/alvinandthechipmunks/alvinandthechipmunks-tlra_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Family</category>
		<enclosure url="http://movies.apple.com/movies/fox/alvinandthechipmunks/alvinandthechipmunks-tlra_h640w.mov"/>
	</item>
	<item>
		<title>Enchanted</title>
		<link>http://www.apple.com/trailers/disney/enchanted/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/disney/posters/enchanted_l200708171437.jpg" alt="Enchanted"/>
				</td>
				<td>
								<h1>Enchanted</h1>
								<span>© Copyright 2007 Walt Disney Pictures</span>
								<br/><a href="http://www.jdoqocy.com/i6104ar-xrzEGLHKIIKEGFINOLGH?sid=rssb"><img border="0" src="http://www.afcyhf.com/pk97elpdjh249586682436BC945"/></a>
								<p>A classic Disney fairytale collides with modern-day New York City in a story about a fairytale princess (AMY ADAMS) from the past who is thrust into present-day by an evil queen (SUSAN SARANDON).  Soon after her arrival, Princess Giselle begins to change her views on life and love after meeting a handsome lawyer (PATRICK DEMPSEY).  Can a storybook view of romance survive in the real world?</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-11-21</h4>
											<p>
												Family<br />
												Rating: PG
											</p>
											<p>
												Kevin Lima (dir.)<br />Amy Adams<br/>
Patrick Dempsey<br/>
James Marsden<br/>
Timothy Spall<br/>
Idina Menzel<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/disney/enchanted/enchanted-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Family</category>
		<enclosure url="http://movies.apple.com/movies/disney/enchanted/enchanted-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>Exiled</title>
		<link>http://www.apple.com/trailers/magnolia/exiled/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/exiled_l200708171528.jpg" alt="Exiled"/>
				</td>
				<td>
								<h1>Exiled</h1>
								<span>© Copyright 2007 Magnolia Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/as101hz74z6MOTPSQQSMONQVWOOV?sid=rssb"><img border="0" src="http://www.tqlkg.com/hc103m-3sywHJOKNLLNHJILQRJJQ"/></a>
								<p>The time is 1998. Every living soul jumps at every chance to make quick money before the Portuguese colony ushers in a new era under the Chinese rule. For the jaded hit men, they wonder where this journey will end. Against this background of fin-de-siècle malaise come two hit men from Hong Kong sent to take out a renegade member trying to turn over a new leaf with his wife and newborn baby. They soon find themselves in the throes of a dilemma when two of their former associates also show up, intent on thwarting them at every cost.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-31</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Johnny To (dir.)<br />Anthony Wong Chau-Sang<br/>
Francis Ng<br/>
Simon Yam<br/>
Nick Cheung<br/>
Richie Jen<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/magnolia_pictures/exiled/exiled_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/magnolia_pictures/exiled/exiled_h640w.mov"/>
	</item>
	<item>
		<title>Halloween</title>
		<link>http://www.apple.com/trailers/weinstein/halloween/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/weinstein/posters/halloween_l200708171250.jpg" alt="Halloween"/>
				</td>
				<td>
								<h1>Halloween</h1>
								<span>© Copyright 2007 Weinstein Company</span>
								<br/><a href="http://www.tkqlhce.com/ka108r09608OQVRUSSUOQPRYTQTS?sid=rss"><img border="0" src="http://www.ftjcfx.com/9q97p59y31NPUQTRRTNPOQXSPSR"/></a>
								<p>From acclaimed musician and filmmaker Rob Zombie (The Devil’s Rejects, House of 1000 Corpses) comes an entirely new take on the highly successful film and terrifying Halloween legacy that began in 1978.  While revealing a new chapter in the established Michael Myers saga, the film will surprise both classic and modern horror fans with a departure from prior films in the Halloween franchise.  Audiences should brace themselves for unprecendented fear as Zombie turns back time to uncover the making of a pathologically disturbed, even cursed child named Michael Myers.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-31</h4>
											<p>
												Horror<br />
												Rating: R
											</p>
											<p>
												Rob Zombie (dir.)<br />Malcolm McDowell<br/>
Brad Dourif<br/>
Scout Taylor-Compton<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/weinstein/halloween/halloween_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Horror</category>
		<enclosure url="http://movies.apple.com/movies/weinstein/halloween/halloween_h640w.mov"/>
	</item>
	<item>
		<title>Horton Hears a Who</title>
		<link>http://www.apple.com/trailers/fox/hortonhearsawho/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/fox/posters/hortonhearsawho_l200708171304.jpg" alt="Horton Hears a Who"/>
				</td>
				<td>
								<h1>Horton Hears a Who</h1>
								<span>© Copyright 2008 20th Century Fox</span>
								<br/><a href="http://www.tkqlhce.com/ot114y1A719PRWSVTTVPRQTYZZWY?sid=rssb"><img border="0" src="http://www.lduhtrp.net/or80qmqeki35A697793547CDDAC"/></a>
								<p>A new CG animated feature film from 20th Century Fox Animation, the makers of the “Ice Age” films, based on the beloved book, first published in 1954, by Ted Geisel, who wrote under the pen name Dr. Seuss.  Seuss books are among the defining works of family literature, have sold over 200 million copies, and have been translated into fifteen languages.  The “Horton” series (“Horton Hears a Who,” “Horton Hatches the Egg”) are consistently among the top-selling of all Seuss titles — generation after generation. HORTON HEARS A WHO is about an imaginative elephant who hears a cry for help coming from a tiny speck of dust floating through the air. Suspecting there may be life on that speck and despite a surrounding community which thinks he has lost his mind, Horton is determined to help.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2008-03-14</h4>
											<p>
												Family<br />
												Rating: Not yet rated
											</p>
											<p>
												Jimmy Hayward, Steve Martino (dir.)<br />Jim Carrey<br/>
Steve Carell<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/fox/hortonhearsawho/hortonhearsawho-tlrb_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Family</category>
		<enclosure url="http://movies.apple.com/movies/fox/hortonhearsawho/hortonhearsawho-tlrb_h640w.mov"/>
	</item>
	<item>
		<title>The Last Legion</title>
		<link>http://www.apple.com/trailers/weinstein/thelastlegion/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/weinstein/posters/thelastlegion_l200708171532.jpg" alt="The Last Legion"/>
				</td>
				<td>
								<h1>The Last Legion</h1>
								<span>© Copyright 2007 Weinstein Company</span>
								<br/><a href="http://www.dpbolvw.net/l8122js0ys-FHMILJJLFHGIOLPOG?sid=rss"><img border="0" src="http://www.afcyhf.com/kt72r6Az42OQVRUSSUOQPRXUYXP"/></a>
								<p>The Last Legion” is a fantasy action-adventure in the vein of “The Sword and the Stone” set against the fall of Rome and its last emperor, 12 year-old Romulus Augustus, the boy who would rule for a day before losing all that he loved: his family, his home, and an empire that once stood for truth and honor.  Imprisoned on the island-fortress of Capri, Romulus searches for a means of escape.  He discovers instead “excaliburnus,” the legendary sword of Julius Caesar, and realizes that he must do all in his power to save Rome.  Aided by the clever strategies of his teacher, Ambrosinus, and the heroic skills of his loyal legionnaire, Aurelius, Romulus escapes the island.  Accompanied by his friends and a mysterious envoy from Constantinople, Romulus travels to Britannia in search of the last Roman Legion - the fabled Dragon Legion.  There, Romulus will fight alongside his friends to make his last stand for Rome and take his first steps to becoming a man and the king who would father a legend.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-17</h4>
											<p>
												Action and Adventure<br />
												Rating: PG-13
											</p>
											<p>
												Doug Lefler (dir.)<br />Colin Firth<br/>
Ben Kingsley<br/>
Aishwarya Rai<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/weinstein/the_last_legion/the_last_legion_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Action and Adventure</category>
		<enclosure url="http://movies.apple.com/movies/weinstein/the_last_legion/the_last_legion_h640w.mov"/>
	</item>
	<item>
		<title>Michael Clayton</title>
		<link>http://www.apple.com/trailers/wb/michaelclayton/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/wb/posters/michaelclayton_l200708171605.jpg" alt="Michael Clayton"/>
				</td>
				<td>
								<h1>Michael Clayton</h1>
								<span>© Copyright 2007 Warner Bros. Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/c4106uoxuowBDIEHFFHBDCFJIIJL?sid=rss"><img border="0" src="http://www.tqlkg.com/4381g04tzxIKPLOMMOIKJMQPPQS"/></a>
								<p>Michael Clayton (GEORGE CLOONEY) is an in-house “fixer” at one of the largest corporate law firms in New York.  A former criminal prosecutor, Clayton takes care of Kenner, Bach & Ledeen’s dirtiest work at the behest of the firm’s co-founder Marty Bach (SYDNEY POLLACK).  Though burned out and hardly content with his job as a fixer, his divorce, a failed business venture and mounting debt have left Clayton inextricably tied to the firm. At U/North, meanwhile, the career of litigator Karen Crowder (TILDA SWINTON) rests on the multi-million dollar settlement of a class action suit that Clayton’s firm is leading to a seemingly successful conclusion.  But when Kenner Bach’s brilliant and guilt-ridden attorney Arthur Edens (TOM WILKINSON) sabotages the U/North case, Clayton faces the biggest challenge of his career and his life</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-05</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Tony Gilroy (dir.)<br />George Clooney<br/>
Tom Wilkinson<br/>
Tilda Swinton<br/>
Sydney Pollack<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/wb/michael_clayton/michael_clayton-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/wb/michael_clayton/michael_clayton-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>Rendition</title>
		<link>http://www.apple.com/trailers/newline/rendition/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/newline/posters/rendition_l200708171504.jpg" alt="Rendition"/>
				</td>
				<td>
								<h1>Rendition</h1>
								<span>© Copyright 2007 New Line Cinema</span>
								<br/><a href="http://www.anrdoezrs.net/pe122qgpmgo35A697793547BD4AB?sid=rssb"><img border="0" src="http://www.awltovhc.com/n2117kpthnl68D9CAAC687AEG7DE"/></a>
								<p>Reese Witherspoon, Jake Gyllenhaal, Meryl Streep, Peter Sarsgaard and Alan Arkin head an all-star ensemble cast in “Rendition,” a compelling thriller from Academy Award-winning director Gavin Hood (“Tsotsi”). Witherspoon plays Isabella El-Ibrahimi, the American wife of Egyptian-born chemical engineer Anwar El-Ibrahimi (Omar Metwally) who disappears on a flight from South Africa to Washington. Isabella desperately tries to track her husband down, while a CIA analyst (Gyllenhaal) at a secret detention facility outside the U.S. is forced to question his assignment as he becomes party to the man’s unorthodox interrogation. “Rendition” is produced by Steve Golin (“Babel”) and Marcus Viscidi (“The Last Kiss”) from a screenplay by Kelly Sane.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-19</h4>
											<p>
												Drama<br />
												Rating: Not yet rated
											</p>
											<p>
												Chris Weitz (dir.)<br />Jake Gyllenhaal<br/>
Reese Witherspoon<br/>
Alan Arkin<br/>
Peter Sarsgaard<br/>
Meryl Streep<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/newline/rendition/rendition-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/newline/rendition/rendition-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>Elizabeth: the Golden Age</title>
		<link>http://www.apple.com/trailers/universal/elizabeththegoldenage/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/universal/posters/elizabeththegoldenage_l200708161730.jpg" alt="Elizabeth: the Golden Age"/>
				</td>
				<td>
								<h1>Elizabeth: the Golden Age</h1>
								<span>© Copyright 2007 Universal Pictures</span>
								<br/><a href="http://www.tkqlhce.com/is75r09608OQVRUSSUOQTXURRQ?sid=rssbn"><img border="0" src="http://www.tqlkg.com/jm70vvzntrCEJFIGGICEHLIFFE"/></a>
								<p>Reprising the roles they originated in seven-time Academy Award-nominated Elizabeth, Cate Blanchett and Geoffrey Rush return for a gripping historical thriller laced with treachery and romance - The Golden Age.  Joining them in the epic is Clive Owen as Sir Walter Raleigh, a dashing seafarer and newfound temptation for Elizabeth.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-12</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Shekhar Kapur (dir.)<br />Cate Blanchett<br/>
Geoffrey Rush<br/>
Clive Owen<br/>
Rhys Ifans<br/>
Jordi Molla<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/universal/elizabeththegoldenage/elizabeththegoldenage-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/universal/elizabeththegoldenage/elizabeththegoldenage-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>Self-Medicated</title>
		<link>http://www.apple.com/trailers/independent/selfmedicated/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/independent/posters/selfmedicated_l200708161836.jpg" alt="Self-Medicated"/>
				</td>
				<td>
								<h1>Self-Medicated</h1>
								<span>© Copyright 2007 </span>
								<br/><a href="http://www.jdoqocy.com/i6104ar-xrzEGLHKIIKEGFINOLGH?sid=rssb"><img border="0" src="http://www.afcyhf.com/pk97elpdjh249586682436BC945"/></a>
								<p>On the outskirts of Las Vegas, far from the bright lights of the Strip, 17 year-old Andrew’s life is spiraling out of control.  Powerless to intervene as he backslides into drugs, alcohol, and violence, his mother decides to hire a private company to forcibly kidnap Andrew and take him to a locked-down (and corrupt) psychiatric center for teens.  As Andrew is subjected to the physical and emotional abuses of the program, something inside of him is re-awakened, and he decides the only way to get back on track is to face his demons head-on.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-31</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Monty Lapica (dir.)<br />Diane Venora<br/>
Monty Lapica<br/>
Greg Germann<br/>
Michael Bowen<br/>
Kristina Anapau<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/thinkfilm/self_medicated/self_medicated_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/thinkfilm/self_medicated/self_medicated_h640w.mov"/>
	</item>
	<item>
		<title>Ira and Abby</title>
		<link>http://www.apple.com/trailers/magnolia/iraandabby/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/iraandabby_l200708091155.jpg" alt="Ira and Abby"/>
				</td>
				<td>
								<h1>Ira and Abby</h1>
								<span>© Copyright 2007 Magnolia Pictures</span>
								<br/><a href="http://www.guerilla69.com/?ape=gt5450&#038;grid=276"><img border="0" src="http://www.doesitworth.com/b/gt/bikinitabloid_468x60_2.gif"/></a>
								<p>A sweet, hilarious and slightly subversive romantic comedy that examines the issues of marriage, monogamy and whether “I do” is the only path to life-long love and happiness. Ira Black is brilliant, neurotic, Jewish and has so many issues he can’t fit them into 12 years of analysis. Abby Willoughby is a free spirit who works in a gym and is better at solving her friends’ problems than selling memberships. When the two meet, the impossible happens: they fall in love, meet each other’s parents and decide to get married, all in a few breathless hours. And life is good, for a while, until a series of comic misadventures (multiple divorces, in-laws, affairs, exes, and too many therapists) force the couple to rethink their strategies.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-14</h4>
											<p>
												Comedy<br />
												Rating: R
											</p>
											<p>
												Robert Cary (dir.)<br />Jennifer Westfeldt<br/>
Frances Conroy<br/>
Fred Willard<br/>
Robert Klein<br/>
Chris Messina<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/magnolia_pictures/ira_and_abby/ira_and_abby_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/magnolia_pictures/ira_and_abby/ira_and_abby_h640w.mov"/>
	</item>
	<item>
		<title>Dan In Real Life</title>
		<link>http://www.apple.com/trailers/touchstone/daninreallife/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/touchstone/posters/daninreallife_l200708091509.jpg" alt="Dan In Real Life"/>
				</td>
				<td>
								<h1>Dan In Real Life</h1>
								<span>© Copyright 2007 Touchstone Pictures</span>
								<br/><a href="http://www.dpbolvw.net/h4102vpyvpxCEJFIGGICEDFMHFIL?sid=rssb"><img border="0" src="http://www.afcyhf.com/be100vvzntrCEJFIGGICEDFMHFIL"/></a>
								<p>Advice columnist Dan Burns is an expert on relationships, but somehow struggles to succeed as a brother, a son and a single parent in this heartfelt comedy from director Peter Hedges (“Pieces Of April”).</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-26</h4>
											<p>
												Comedy<br />
												Rating: PG-13
											</p>
											<p>
												Peter Hedges (dir.)<br />Steve Carell<br/>
Juliette Binoche<br/>
Dane Cook<br/>
John Mahoney<br/>
Emily Blunt<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/touchstone/daninreallife/daninreallife-tlr_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/touchstone/daninreallife/daninreallife-tlr_h640w.mov"/>
	</item>
	<item>
		<title>My Kid Could Paint That</title>
		<link>http://www.apple.com/trailers/sony/mykidcouldpaintthat/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/sony/posters/mykidcouldpaintthat_l200708091149.jpg" alt="My Kid Could Paint That"/>
				</td>
				<td>
								<h1>My Kid Could Paint That</h1>
								<span>© Copyright 2007 Sony Pictures Classics</span>
								<br/><a href="http://www.tkqlhce.com/ka108r09608OQVRUSSUOQPRYTQTS?sid=rss"><img border="0" src="http://www.ftjcfx.com/9q97p59y31NPUQTRRTNPOQXSPSR"/></a>
								<p>In the span of only a few months, 4-year-old Marla Olmstead rocketed from total obscurity into international renown – and sold over $300,000 dollars worth of paintings.  She was compared to Kandinsky and Pollock, and called “a budding Picasso.”  Inside Edition, The Jane Pauley Show, and NPR did pieces, and The Today Show and Good Morning America got in a bidding war over an appearance by the bashful toddler.  There was talk of corporate sponsorship with the family fielding calls from The Gap and Crayola. But not all of the attention was positive.  From the beginning, many faulted her parents for exposing Marla to the glare of the media and accused the couple of exploiting their daughter for financial gain. Others felt her work was, in fact, comparable to the great abstract expressionists – but saw this as emblematic of the meaninglessness of Modern Art.  “She is painting exactly as all the adult paintings have been in the past 50 years, but painting like a child, too.  That is what everybody thinks but they don’t dare to say it,” said Oggi, the leading Italian weekly.  Through no intention of her own, Marla revived the age-old question, ‘what is art?’</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-05</h4>
											<p>
												Documentary<br />
												Rating: PG-13
											</p>
											<p>
												Amir Bar-Lev (dir.)<br />Marla Olmstead<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/sony/mykidcouldpaintthat/mykidcouldpaintthat-tlr1r_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Documentary</category>
		<enclosure url="http://movies.apple.com/movies/sony/mykidcouldpaintthat/mykidcouldpaintthat-tlr1r_h640w.mov"/>
	</item>
	<item>
		<title>Lars and the Real Girl</title>
		<link>http://www.apple.com/trailers/mgm/larsandtherealgirl/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/mgm/posters/larsandtherealgirl_l200708081650.jpg" alt="Lars and the Real Girl"/>
				</td>
				<td>
								<h1>Lars and the Real Girl</h1>
								<span>© Copyright 2007 Metro-Goldwyn-Mayer Studios Inc.</span>
								<br/><a href="http://www.guerilla69.com/?ape=gt5450&#038;grid=276"><img border="0" src="http://www.doesitworth.com/b/gt/bikinitabloid_468x60_2.gif"/></a>
								<p>Written by Six Feet Under scribe Nancy Oliver, Lars and the Real Girl is a heartfelt comedy starring Academy-Award nominated Ryan Gosling as Lars Lindstrom a loveable introvert whose emotional baggage has kept him from fully embracing life. After years of what is almost solitude, he invites Bianca, a friend he met on the internet to visit him. He introduces Bianca to his Brother Gus (Paul Schneider) and his wife Karen (Emily Mortimer) and they are stunned. They don’t know what to say to Lars or Bianca — because she is a life-size doll, not a real person and he is treating her as though she is alive. They consult the family doctor Dagmar (Patricia Clarkson) who explains this is a delusion he’s created — for what reason she doesn’t yet know but they should all go along with it. What follows is an emotional journey for Lars and the people around him.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-12</h4>
											<p>
												Comedy<br />
												Rating: PG-13
											</p>
											<p>
												Craig Gillespie (dir.)<br />Ryan Gosling<br/>
Emily Mortimer<br/>
Paul Schneider<br/>
Kelli Garner<br/>
Patricia Clarkson<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/mgm/larsandtherealgirl/larsandtherealgirl_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/mgm/larsandtherealgirl/larsandtherealgirl_h640w.mov"/>
	</item>
	<item>
		<title>National Treasure: Book of Secrets</title>
		<link>http://www.apple.com/trailers/disney/nationaltreasurebookofsecrets/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/disney/posters/nationaltreasurebookofsecrets_l200708021810.jpg" alt="National Treasure: Book of Secrets"/>
				</td>
				<td>
								<h1>National Treasure: Book of Secrets</h1>
								<span>© Copyright 2007 Walt Disney Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/c4106uoxuowBDIEHFFHBDCFJIIJL?sid=rss"><img border="0" src="http://www.tqlkg.com/4381g04tzxIKPLOMMOIKJMQPPQS"/></a>
								<p>In this follow up to the box-office hit “National Treasure,” treasure hunter Ben Gates (Nicolas Cage) once again sets out on an exhilarating, action-packed new global quest to unearth hidden history and treasures. When a missing page from the diary of John Wilkes Booth surfaces, Ben’s great-great grandfather is suddenly implicated as a key conspirator in Abraham Lincoln’s death. Determined to prove his ancestor’s innocence, Ben follows an international chain of clues that takes him on a chase from Paris to London and ultimately back to America.  This journey leads Ben and his crew not only to surprising revelations - but to the trail of the world’s most treasured secrets.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-12-21</h4>
											<p>
												Family<br />
												Rating: Not yet rated
											</p>
											<p>
												Jon Turteltaub (dir.)<br />Nicolas Cage<br/>
Jon Voight<br/>
Harvey Keitel<br/>
Ed Harris<br/>
Diane Kruger<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/disney/national_treasure_book/national_treasure_book-tsr_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Family</category>
		<enclosure url="http://movies.apple.com/movies/disney/national_treasure_book/national_treasure_book-tsr_h640w.mov"/>
	</item>
	<item>
		<title>Bratz</title>
		<link>http://www.apple.com/trailers/lions_gate/bratz/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/lions_gate/posters/bratz_l200706011554.jpg" alt="Bratz"/>
				</td>
				<td>
								<h1>Bratz</h1>
								<span>© Copyright 2007 Lionsgate</span>
								<br/><a href="http://www.anrdoezrs.net/2174zw41w3JLQMPNNPJLKNPQNOM?sid=rss"><img border="0" src="http://www.lduhtrp.net/gg77vvzntrCEJFIGGICEDGIJGHF"/></a>
								<p>As long as they can remember, Yasmin (Nathalia Ramos), Jade (Janel Parrish), Sasha (Logan Browning) and Cloe (Skyler Shaye) have been “BFF” - Best Friends Forever. Inseparable since they first met, the young girls have always supported each other’s individual personalities, talents and fabulous fashion styles.  But now as the foursome enter Carry Nation High, Yasmin, Jade, Sasha and Cloe face a brand new world: a blackboard jungle, where for the first time they discover life as a teenager means dealing with a system of social cliques, all strictly enforced by senior Meredith Baxter Dimly.  Finding themselves being pulled further and further apart, the girls band together and rise up as “the Bratz” to fight peer pressure, in turn learning how true empowerment means standing up for your friends, being true to oneself and living out one’s dreams & aspirations.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007/08/03</h4>
											<p>
												Comedy<br />
												Rating: PG
											</p>
											<p>
												 (dir.)<br />Nathalia Ramos<br/>
Janel Parrish<br/>
Logan Browning<br/>
Skyler Shaye<br/>
Chelsea Staub<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/lionsgate/bratz/bratz-tlr1r_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/lionsgate/bratz/bratz-tlr1r_h640w.mov"/>
	</item>
	<item>
		<title>Dedication</title>
		<link>http://www.apple.com/trailers/weinstein/dedication/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/weinstein/posters/dedication_l200707271713.jpg" alt="Dedication"/>
				</td>
				<td>
								<h1>Dedication</h1>
								<span>© Copyright 2007 Weinstein Company</span>
								<br/><a href="http://www.anrdoezrs.net/c4106uoxuowBDIEHFFHBDCFJIIJL?sid=rss"><img border="0" src="http://www.tqlkg.com/4381g04tzxIKPLOMMOIKJMQPPQS"/></a>
								<p>Henry Roth is messed up.  A New York children’s book author who tells kids that Santa doesn’t exist, he hates sleeping with - and next to - anyone, including his girlfriend and must lay on the floor, usually with heavy objects on top of him just to feel safe.  His motto is Life is nothing but the occasional burst of laughter rising above the interminable wail of grief. “Dedication,” a modern love story in which a misanthropic, emotionally complex author of a hit children’s book series (Billy Crudup) is forced to team with a beautiful illustrator (Mandy Moore) after his best friend and creative collaborator (Tom Wilkinson) passes away marks the directorial debut of Justin Theroux.  As Henry struggles with letting go of the ghosts of love and life, he discovers that sometimes you have to take a gamble at life to find love.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-24</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Justin Theroux (dir.)<br />Billy Crudup<br/>
Mandy Moore<br/>
Tom Wilkinson<br/>
Martin Freeman<br/>
Dianne Wiest<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/weinstein/dedication/dedication_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/weinstein/dedication/dedication_h640w.mov"/>
	</item>
	<item>
		<title>Things We Lost In the Fire</title>
		<link>http://www.apple.com/trailers/dreamworks/thingswelostinthefire/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/dreamworks/posters/thingswelostinthefire_l200707271548.jpg" alt="Things We Lost In the Fire"/>
				</td>
				<td>
								<h1>Things We Lost In the Fire</h1>
								<span>© Copyright 2007 DreamWorks S.K.G.</span>
								<br/><a href="http://www.jdoqocy.com/ep122ox52x4KMRNQOOQKMLOTUURP?sid=rssb"><img border="0" src="http://www.ftjcfx.com/ik101g04tzxIKPLOMMOIKJMRSSPN"/></a>
								<p>Academy Award-winners Halle Berry and Benicio Del Toro star in “Things We Lost in the Fire,” a compelling drama about two people brought together by fate. Audrey Burke’s (Berry) life has been shattered by the sudden death of her husband. In grief, she turns to one of his life-long friends, Jerry Sunborne (Del Toro), a former lawyer who is on a serious downward spiral. Together, they work to repair their lives.  Produced by Oscar-winner Sam Mendes and Sam Mercer and helmed by acclaimed Oscar(r)-nominated Danish director Susanne Bier.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-26</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Susanne Bier (dir.)<br />Halle Berry<br/>
Benicio del Toro<br/>
David Duchovny<br/>
Omar Benson Miller<br/>
Alison Lohman<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/dreamworks/thingswelostinthefire/thingswelostinthefire_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/dreamworks/thingswelostinthefire/thingswelostinthefire_h640w.mov"/>
	</item>
	<item>
		<title>Death Sentence</title>
		<link>http://www.apple.com/trailers/fox_atomic/deathsentence/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/fox_atomic/posters/deathsentence_l200707261719.jpg" alt="Death Sentence"/>
				</td>
				<td>
								<h1>Death Sentence</h1>
								<span>© Copyright 2007 Fox Atomic</span>
								<br/><a href="http://www.kqzyfj.com/jl65kjspjr68D9CAAC687AFG887?sid=rssb"><img border="0" src="http://www.lduhtrp.net/or80m-3sywHJOKNLLNHJILQRJJI"/></a>
								<p>Nick Hume (Kevin Bacon) is a mild-mannered executive with a perfect life, until one gruesome night he witnesses something that changes him forever.  Transformed by grief, Hume eventually comes to the disturbing conclusion that no length is too great when protecting his family.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-31</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												James Wan (dir.)<br />Kevin Bacon<br/>
Kelly Preston<br/>
John Goodman<br/>
Aisha Tyler<br/>
Stuart Lafferty<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/fox_atomic/death_sentence/death_sentence_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/fox_atomic/death_sentence/death_sentence_h640w.mov"/>
	</item>
	<item>
		<title>Lust, Caution</title>
		<link>http://www.apple.com/trailers/focus_features/lustcaution/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/focus_features/posters/lustcaution_l200707261711.jpg" alt="Lust, Caution"/>
				</td>
				<td>
								<h1>Lust, Caution</h1>
								<span>© Copyright 2007 Focus Features</span>
								<br/><a href="http://www.dpbolvw.net/j4116zw41w3JLQMPNNPJLKNPSKKR?sid=rss"><img border="0" src="http://www.tqlkg.com/ip105bosgmk57C8B99B5769BE66D"/></a>
								<p>Director Ang Lee’s new film, following his Academy Award win for directing “Brokeback Mountain,” is an espionage thriller set in WWII-era Shanghai. Asian cinema icon Tony Leung (“Hero,” “In the Mood for Love”) stars as Mr. Yee, a powerful political figure in 1940s Shanghai. Tang Wei, a rising star in mainland China, makes her feature film debut as Wang Jiazhi, a young woman who gets swept up in a dangerous game of emotional intrigue with Mr. Yee.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-28</h4>
											<p>
												Drama<br />
												Rating: Not yet rated
											</p>
											<p>
												Ang Lee (dir.)<br />Tony Leung<br/>
Tang Wei<br/>
Joan Chen<br/>
Wang Leehom<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/focus_features/lust_caution/lust_caution_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/focus_features/lust_caution/lust_caution_h640w.mov"/>
	</item>
	<item>
		<title>Beowulf</title>
		<link>http://www.apple.com/trailers/paramount/beowulf/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/paramount/posters/beowulf_l200707251531.jpg" alt="Beowulf"/>
				</td>
				<td>
								<h1>Beowulf</h1>
								<span>© Copyright 2007 Paramount Pictures</span>
								<br/><a href="http://www.tkqlhce.com/ka108r09608OQVRUSSUOQPRYTQTS?sid=rss"><img border="0" src="http://www.ftjcfx.com/9q97p59y31NPUQTRRTNPOQXSPSR"/></a>
								<p>In a time of heroes, the mighty warrior Beowulf slays the demon Grendel and incurs the wrath of its monstrous yet seductive mother in a conflict that transforms a king into a legend. Groundbreaking director Robert Zemeckis offers a vision of the Beowulf saga that has never been told before “Beowulf,” starring Ray Winstone in the title role and Anthony Hopkins as the corrupt King Hrothgar, as well as John Malkovich, Robin Wright Penn, Brendan Gleeson, Crispin Glover, Alison Lohman, and Angelina Jolie as Grendel’s mother. Neil Gaiman (“Mirrormask, the graphic novel,” “Sandman”) & Roger Avary (“Pulp Fiction”) adapted the legend for the screen.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-11-16</h4>
											<p>
												Fantasy<br />
												Rating: Not yet rated
											</p>
											<p>
												Robert Zemeckis (dir.)<br />Ray Winstone<br/>
Anthony Hopkins<br/>
John Malkovich<br/>
Robin Wright Penn<br/>
Brendan Gleeson<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/paramount/beowulf/beowulf-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Fantasy</category>
		<enclosure url="http://movies.apple.com/movies/paramount/beowulf/beowulf-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>The Darjeeling Limited</title>
		<link>http://www.apple.com/trailers/fox_searchlight/thedarjeelinglimited/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/fox_searchlight/posters/thedarjeelinglimited_l200707231749.jpg" alt="The Darjeeling Limited"/>
				</td>
				<td>
								<h1>The Darjeeling Limited</h1>
								<span>© Copyright 2007 Fox Searchlight Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/pe122qgpmgo35A697793547BD4AB?sid=rssb"><img border="0" src="http://www.awltovhc.com/n2117kpthnl68D9CAAC687AEG7DE"/></a>
								<p>An emotional comedy about three brothers re-forging family bonds. The eldest, played by Wilson, hopes to reconnect with his two younger siblings by taking them on a train trip across the vibrant and sensual landscape of India.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-29</h4>
											<p>
												Comedy<br />
												Rating: R
											</p>
											<p>
												Wes Anderson (dir.)<br />Owen Wilson<br/>
Adrien Brody<br/>
Jason Schwartzman<br/>
Anjelica Huston<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/fox_searchlight/the_darjeeling_limited/the_darjeeling_limited-tlrb_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/fox_searchlight/the_darjeeling_limited/the_darjeeling_limited-tlrb_h640w.mov"/>
	</item>
	<item>
		<title>December Boys</title>
		<link>http://www.apple.com/trailers/warner_independent_pictures/decemberboys/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/warner_independent_pictures/posters/decemberboys_l200707181602.jpg" alt="December Boys"/>
				</td>
				<td>
								<h1>December Boys</h1>
								<span>© Copyright 2007 Warner Independent Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/ld104kjspjr68D9CAAC6F89DAFG?sid=rss"><img border="0" src="http://www.awltovhc.com/ns80wquiom79EADBBD7G9AEBGH"/></a>
								<p>Based on the classic Michael Noonan novel, “December Boys” is the story of four orphan teenagers growing up behind the closed doors of a Catholic convent in outback Australia during the 1960s. As the boys watch younger kids get adopted by loving families, they begin to realize that as they get older, their turn may never come. When the convent sends the boys to visit the seaside one summer, they finally have something to look forward to.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-14</h4>
											<p>
												Drama<br />
												Rating: PG-13
											</p>
											<p>
												Rod Hardy (dir.)<br />Daniel Radcliffe<br/>
Christian Byers<br/>
Lee Cormie<br/>
James Fraser<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/warner_independent/december_boys/december_boys_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/warner_independent/december_boys/december_boys_h640w.mov"/>
	</item>
	<item>
		<title>No End In Sight</title>
		<link>http://www.apple.com/trailers/magnolia/noendinsight/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/noendinsight_l200707181616.jpg" alt="No End In Sight"/>
				</td>
				<td>
								<h1>No End In Sight</h1>
								<span>© Copyright 2007 Magnolia Pictures</span>
								<br/><a href="http://www.jdoqocy.com/9r75ft1zt0GINJMKKMGQIHKNHK?sid=rss"><img border="0" src="http://www.ftjcfx.com/68104qmqeki35A697793D547A47"/></a>
								<p>The first film of its kind to chronicle the reasons behind Iraq’s descent into guerilla war, warlord rule, criminality and anarchy, NO END IN SIGHT is a jaw-dropping, insider’s tale of wholesale incompetence, recklessness and venality. Based on over 200 hours of footage, the film provides a candid retelling of the events following the fall of Baghdad in 2003 by high ranking officials such as former Deputy Secretary of State Richard Armitage, Ambassador Barbara Bodine (in charge of Baghdad during the Spring of 2003), Colonel Lawrence Wilkerson, former Chief of Staff to Colin Powell, and General Jay Garner (in charge of the occupation of Iraq through May 2003), as well as Iraqi civilians, American soldiers and prominent analysts. NO END IN SIGHT examines the manner in which the principal errors of U.S. policy - the use of insufficient troop levels, allowing the looting of Baghdad, the purging of professionals from the Iraqi government and the disbanding of the Iraqi military - largely created the insurgency and chaos that engulf Iraq today.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-07-27</h4>
											<p>
												Drama<br />
												Rating: Not yet rated
											</p>
											<p>
												Charles Ferguson (dir.)<br /></p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/magnolia_pictures/noendinsight/noendinsight_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/magnolia_pictures/noendinsight/noendinsight_h640w.mov"/>
	</item>
	<item>
		<title>No Country For Old Men</title>
		<link>http://www.apple.com/trailers/miramax/nocountryforoldmen/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/miramax/posters/nocountryforoldmen_l200708081612.jpg" alt="No Country For Old Men"/>
				</td>
				<td>
								<h1>No Country For Old Men</h1>
								<span>© Copyright 2007 Miramax Films</span>
								<br/><a href="http://www.kqzyfj.com/5777biroiq57C8B99B5769CE8A7?sid=rssb"><img border="0" src="http://www.ftjcfx.com/c0110uuymsqBDIEHFFHBDCFIKEGD"/></a>
								<p>Based on the acclaimed novel by Pulitzer Prize winning American master Cormac McCarthy. The time is our own, when rustlers have given way to drug- runners and small towns have become free-fire zones. The story begins when Llewelyn Moss (BROLIN) finds a pickup truck surrounded by a sentry of dead men. A load of heroin and two million dollars in cash are still in the back. When Moss takes the money, he sets off a chain reaction of catastrophic violence that not even the law - in the person of aging, disillusioned Sheriff Bell (JONES) - can contain. As Moss tries to evade his pursuers - in particular a mysterious mastermind who flips coins for human lives (BARDEM) - the film simultaneously strips down the American crime drama and broadens its concerns to encompass themes as ancient as the Bible and as bloodily contemporary as this morning’s headlines.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-11-09</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Joel Coen, Ethan Coen (dir.)<br />Tommy Lee Jones<br/>
Javier Bardem<br/>
Josh Brolin<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/miramax/nocountryforoldmen/nocountryforoldmen_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/miramax/nocountryforoldmen/nocountryforoldmen_h640w.mov"/>
	</item>
	<item>
		<title>3:10 To Yuma</title>
		<link>http://www.apple.com/trailers/lions_gate/310toyuma/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/lions_gate/posters/310toyuma_l200707131758.jpg" alt="3:10 To Yuma"/>
				</td>
				<td>
								<h1>3:10 To Yuma</h1>
								<span>© Copyright 1969 Lionsgate</span>
								<br/><a href="http://www.anrdoezrs.net/mt80tenkem1384755713327878?sid=rss"><img border="0" src="http://www.ftjcfx.com/tk72r6Az42OQVRUSSUOQQPUVUV"/></a>
								<p>Stars Russell Crowe, Christian Bale, Ben Foster, Gretchen Mol and Peter Fonda in a modern take on the classic western by Elmore Leonard from producing/writing/ directing team Cathy Konrad and James Mangold (WALK THE LINE). In Arizona in the late 1800’s, infamous outlaw Ben Wade (Crowe) and his vicious gang of thieves and murderers have plagued the Southern Railroad. When Wade is captured, Civil War veteran Dan Evans (Christian Bale), struggling to survive on his drought-plagued ranch, volunteers to deliver him alive to the “3:10 to Yuma”, a train that will take the killer to trial. On the trail, Evans and Wade, each from very different worlds, begin to earn each other’s respect. But with Wade’s outfit on their trail - and dangers at every turn - the mission soon becomes a violent, impossible journey toward each man’s destiny.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: </h4>
											<p>
												Action and Adventure<br />
												Rating: Not yet rated
											</p>
											<p>
												James Mangold (dir.)<br />Christian Bale<br/>
Russell Crowe<br/>
Ben Foster<br/>
Alan Tudyk<br/>
Gretchen Mol<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/lionsgate/310_to_yuma/310_to_yuma_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Action and Adventure</category>
		<enclosure url="http://movies.apple.com/movies/lionsgate/310_to_yuma/310_to_yuma_h640w.mov"/>
	</item>
	<item>
		<title>Dynamite Warrior</title>
		<link>http://www.apple.com/trailers/magnolia/dynamitewarrior/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/magnolia/posters/dynamitewarrior_l200707131137.jpg" alt="Dynamite Warrior"/>
				</td>
				<td>
								<h1>Dynamite Warrior</h1>
								<span>© Copyright 2007 Magnolia Pictures</span>
								<br/><a href="http://www.kqzyfj.com/5777biroiq57C8B99B5769CE8A7?sid=rssb"><img border="0" src="http://www.ftjcfx.com/c0110uuymsqBDIEHFFHBDCFIKEGD"/></a>
								<p>A supernatural, action packed movie with high-grade special effects and the kind of raw action scenes the world is coming to expect from Thailand. Set in rural Thailand during the 1920s Dan Chupong (Born To Fight) plays Jone Bang Fai a young man riddled with grief and bent on revenge after witnessing his parents’ murder by a callous and malicious killer. The only information Jone has as to the killer’s identity is the memory of a tattoo-covered man who is part of an organized group of cattle rustlers. Jone makes it his mission to stop all cattle rustlers and in the process return each head of cattle back to its rightful owner. After searching the country high and low, Jone finally believes he has found the murderer in a small rural village in the North of Thailand.  To Jone’s dismay he learns that the killer is in fact a warlock of immense power, a nearly invincible mystical man who is trying to control the whole village. His one weakness?  He can be harmed only by weapons that have been treated with the menstrual blood of a young virgin. Armed with this knowledge and a few hundred highly charged rockets (and a dash of menstrual blood), our intrepid hero goes up against one of the most dangerous men to have ever walked the Earth.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-07-06</h4>
											<p>
												Action and Adventure<br />
												Rating: R
											</p>
											<p>
												Chalerm Wongpim (dir.)<br />Dan Chupong<br/>
Puttipong Sriwat<br/>
Panna Rittikrai<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/magnolia_pictures/dynamite_warrior/dynamite_warrior_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Action and Adventure</category>
		<enclosure url="http://movies.apple.com/movies/magnolia_pictures/dynamite_warrior/dynamite_warrior_h640w.mov"/>
	</item>
	<item>
		<title>Feast of Love</title>
		<link>http://www.apple.com/trailers/mgm/feastoflove/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/mgm/posters/feastoflove_l200708221738.jpg" alt="Feast of Love"/>
				</td>
				<td>
								<h1>Feast of Love</h1>
								<span>© Copyright 2007 Metro-Goldwyn-Mayer Studios Inc.</span>
								<br/><a href="http://www.anrdoezrs.net/c4106uoxuowBDIEHFFHBDCFJIIJL?sid=rss"><img border="0" src="http://www.tqlkg.com/4381g04tzxIKPLOMMOIKJMQPPQS"/></a>
								<p>From venerable Academy Award(r) winning director Robert Benton (KRAMER VS. KRAMER), comes a kaleidoscopic ode to life and love in all its funny, sad, sexy, crazy, heartbreaking and life sustaining facets: FEAST OF LOVE.  In a coffee shop in a tight-knit Oregon community, local professor Harry Stevenson (Academy Award(r) winner Morgan Freeman) witnesses love and attraction whipping up mischief among the town’s residents.  From the unlucky in love, die-hard romantic coffee shop owner Bradley (Academy Award(r) nominee Greg Kinnear) who has a serial habit of looking for love in all the wrong places, including with his current wife Kathryn (Selma Blair); to the edgy real estate agent Diana (Radha Mitchell) who is caught up in an affair with a married man (Billy Burke) with whom she shares an ineffable connection; to the beautiful young newcomer Chloe (Alexa Davalos) who defies fate in romancing the troubled Oscar (Toby Hemingway); to Harry himself, whose adoring wife (Jane Alexander) is looking to break through his wall of grief after the wrenching loss of a beloved . . .  they all intertwine into one remarkable story in which no one can escape being bent, broken, befuddled, delighted and ultimately redeemed by love’s inescapable spell.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-28</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Robert Benton (dir.)<br />Morgan Freeman<br/>
Greg Kinnear<br/>
Radha Mitchell<br/>
Billy Burke<br/>
Selma Blair<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/mgm/feast_of_love/feast_of_love-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/mgm/feast_of_love/feast_of_love-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>The Game Plan</title>
		<link>http://www.apple.com/trailers/disney/thegameplan/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/disney/posters/thegameplan_l200707131749.jpg" alt="The Game Plan"/>
				</td>
				<td>
								<h1>The Game Plan</h1>
								<span>© Copyright 2007 Walt Disney Pictures</span>
								<br/><a href="http://www.guerilla69.com/?ape=gt5450&#038;grid=277"><img border="0" src="http://www.doesitworth.com/b/gt/iwebcamfriends_468x60.gif"/></a>
								<p>Tells the story of rugged superstar quarterback Joe Kingman (DWAYNE “THE ROCK” JOHNSON), whose Boston-based team is chasing a championship. A ‘serial bachelor’, Kingman is living the ultimate fantasy: he’s rich, famous and the life of the party. But this dream is suddenly sacked for a loss when he discovers the 7-year-old daughter (newcomer MADISON PETTIS) he never knew he had - the product of a last fling before parting years ago with his young wife. Now, during the most important time in his career, he must figure out how to juggle his parties, practices and dates with the newfound ballet classes, bedtime stories and dolls that come with his daughter. Equally perplexed is his hard-edged mega-agent, Stella (KYRA SEDGWICK), herself without a parental bone in her body. Despite the often hilarious misadventures that come with being a new father, Joe discovers that’s there’s more to life than money, endorsements and thousands of adoring fans: the love and care of one very special small fan is the only thing that matters.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-28</h4>
											<p>
												Comedy<br />
												Rating: PG
											</p>
											<p>
												Andy Fickman (dir.)<br />Dwayne “The Rock” Johnson<br/>
Roselyn Sanchez<br/>
Kyra Sedgwick<br/>
Morris Chestnut<br/>
Madison Pettis<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/disney/the_game_plan/the_game_plan-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/disney/the_game_plan/the_game_plan-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>In the Shadow of the Moon</title>
		<link>http://www.apple.com/trailers/thinkfilm/intheshadowofthemoon/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/thinkfilm/posters/intheshadowofthemoon_l200707131240.jpg" alt="In the Shadow of the Moon"/>
				</td>
				<td>
								<h1>In the Shadow of the Moon</h1>
								<span>© Copyright 2007 THINKfilm</span>
								<br/><a href="http://www.jdoqocy.com/h4102r09608OQVRUSSUOSXXQUSX?sid=rssb"><img border="0" src="http://www.tqlkg.com/ho70kpthnl68D9CAAC6AFF8CAF"/></a>
								<p>Between 1968 and 1972, nine American spacecraft voyaged to the Moon, and 12 men walked upon its surface. IN THE SHADOW OF THE MOON brings together for the first, and possibly the last, time surviving crew members from every single Apollo mission that flew to the Moon along with visually stunning archival material re-mastered from the original NASA film footage. The result is an intimate epic that vividly communicates the daring, the danger, the pride, and the promise of this extraordinary era in history when the whole world literally looked up at America.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-09-07</h4>
											<p>
												Documentary<br />
												Rating: PG
											</p>
											<p>
												David Sington (dir.)<br />Jim Lovell<br/>
Dave Scott<br/>
John Young<br/>
Gene Cernan<br/>
Mike Collins<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/thinkfilm/intheshadowofthemoon/intheshadowofthemoon_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Documentary</category>
		<enclosure url="http://movies.apple.com/movies/thinkfilm/intheshadowofthemoon/intheshadowofthemoon_h640w.mov"/>
	</item>
	<item>
		<title>King of Kong</title>
		<link>http://www.apple.com/trailers/picturehouse/kingofkong/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/picturehouse/posters/kingofkong_l200707131202.jpg" alt="King of Kong"/>
				</td>
				<td>
								<h1>King of Kong</h1>
								<span>© Copyright 2007 Picturehouse</span>
								<br/><a href="http://www.tkqlhce.com/ka108r09608OQVRUSSUOQPRYTQTS?sid=rss"><img border="0" src="http://www.ftjcfx.com/9q97p59y31NPUQTRRTNPOQXSPSR"/></a>
								<p>Follows a middle school science teacher as he battles a hot sauce mogul for the Guinness World Record on the arcade classic Donkey Kong.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-17</h4>
											<p>
												Documentary<br />
												Rating: PG-13
											</p>
											<p>
												Seth Gordon (dir.)<br /></p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/picturehouse/king_of_kong/king_of_kong_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Documentary</category>
		<enclosure url="http://movies.apple.com/movies/picturehouse/king_of_kong/king_of_kong_h640w.mov"/>
	</item>
	<item>
		<title>Rocket Science</title>
		<link>http://www.apple.com/trailers/picturehouse/rocketscience/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/picturehouse/posters/rocketscience_l200707131153.jpg" alt="Rocket Science"/>
				</td>
				<td>
								<h1>Rocket Science</h1>
								<span>© Copyright 2007 Picturehouse</span>
								<br/><a href="http://www.jdoqocy.com/pa117efolfn2495866824373699C?sid=rssb"><img border="0" src="http://www.tqlkg.com/jl65uuymsqBDIEHFFHBDCGCFIIL"/></a>
								<p>A teenager tackles the mysteries of life, love and public speaking in Rocket Science, a wry comedy of adolescent angst by Jeffrey Blitz, director of the Academy Award-nominated documentary Spellbound. Making his feature narrative debut, Blitz leaves behind the conventions and cliches of coming-of-age tales to instead conjure a world where everyone, regardless of age, is befuddled by desire and the longing for human connection. Mixing humor with a compassionate regard for his characters and their idiosyncrasies, Blitz creates a film about the little insights that can emerge from, and ultimately eclipse, the agonies and disappointments of youth.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-10</h4>
											<p>
												Comedy<br />
												Rating: R
											</p>
											<p>
												Jeffrey Blitz (dir.)<br />Reece Daniel Thompson<br/>
Anna Kendrick<br/>
Nicholas DiAgosto<br/>
Vincent Piazza<br/>
Margo Martindale<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/picturehouse/rocket_science/rocket_science_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/picturehouse/rocket_science/rocket_science_h640w.mov"/>
	</item>
	<item>
		<title>The Spiderwick Chronicles</title>
		<link>http://www.apple.com/trailers/paramount/thespiderwickchronicles/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/paramount/posters/thespiderwickchronicles_l200707131244.jpg" alt="The Spiderwick Chronicles"/>
				</td>
				<td>
								<h1>The Spiderwick Chronicles</h1>
								<span>© Copyright 1969 Paramount Pictures</span>
								<br/><a href="http://www.anrdoezrs.net/h8117ar-xrzEGLHKIIKEGFINHJIJ?sid=rssb"><img border="0" src="http://www.ftjcfx.com/7081elpdjh249586682436B5767"/></a>
								<p>From the beloved best-selling series of books comes “The Spiderwick Chronicles,” a fantasy adventure for the child in all of us. Peculiar things start to happen the moment the Grace family (Jared, his twin brother Simon, sister Mallory and their mom) leave New York and move into the secluded old house owned by their great, great uncle Arthur Spiderwick. Unable to explain the strange disappearances and accidents that seem to be happening on a daily basis, the family blames Jared. When he, Simon and Mallory investigate what’s really going on, they uncover the fantastic truth of the Spiderwick estate and of the creatures that inhabit it.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: </h4>
											<p>
												Family<br />
												Rating: Not yet rated
											</p>
											<p>
												Mark Waters (dir.)<br />Freddie Highmore<br/>
Mary-Louise Parker<br/>
Nick Nolte<br/>
Joan Plowright<br/>
David Strathairn<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/paramount/the_spiderwick_chronicles/the_spiderwick_chronicles-tsr_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Family</category>
		<enclosure url="http://movies.apple.com/movies/paramount/the_spiderwick_chronicles/the_spiderwick_chronicles-tsr_h640w.mov"/>
	</item>
	<item>
		<title>10,000 B.C.</title>
		<link>http://www.apple.com/trailers/wb/10000bc/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/wb/posters/10000bc_l200707121503.jpg" alt="10,000 B.C."/>
				</td>
				<td>
								<h1>10,000 B.C.</h1>
								<span>© Copyright 2008 Warner Bros. Pictures</span>
								<br/><a href="http://www.kqzyfj.com/5777biroiq57C8B99B5769CE8A7?sid=rssb"><img border="0" src="http://www.ftjcfx.com/c0110uuymsqBDIEHFFHBDCFIKEGD"/></a>
								<p>It was a time when man and beast were untamed and the mighty mammoth roamed the earth.  A time when ideas and beliefs were born that forever shaped mankind. 10,000 B.C. follows a young hunter (Steven Strait) on his quest to lead an army across a vast desert, battling saber tooth tigers and prehistoric predators as he unearths a lost civilization and attempts to rescue the woman he loves (Camilla Belle) from an evil warlord determined to possess her.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2008-03-07</h4>
											<p>
												Action and Adventure<br />
												Rating: Not yet rated
											</p>
											<p>
												Roland Emmerich (dir.)<br />Steven Strait<br/>
Camilla Belle<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/wb/10000_bc/10000_bc-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Action and Adventure</category>
		<enclosure url="http://movies.apple.com/movies/wb/10000_bc/10000_bc-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>Charlie Bartlett</title>
		<link>http://www.apple.com/trailers/mgm/charliebartlett/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/mgm/posters/charliebartlett_l200707121625.jpg" alt="Charlie Bartlett"/>
				</td>
				<td>
								<h1>Charlie Bartlett</h1>
								<span>© Copyright 2007 Metro-Goldwyn-Mayer Studios Inc.</span>
								<br/><a href="http://www.kqzyfj.com/5777biroiq57C8B99B5769CE8A7?sid=rssb"><img border="0" src="http://www.ftjcfx.com/c0110uuymsqBDIEHFFHBDCFIKEGD"/></a>
								<p>Among the classic high-school rebels of American movies, there have been truants, delinquents, pranksters and con artists – but there has never been anyone quite like Charlie Bartlett.  An optimist, a truth-teller and a fearless schemer, when Charlie slyly positions himself as his new school’s resident “psychiatrist,” dishing out both honest advice and powerful prescriptions, he has no idea the ways in which he will transform his classmates, the school principal and the potential of his own life.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-08-03</h4>
											<p>
												Comedy<br />
												Rating: R
											</p>
											<p>
												Jon Poll (dir.)<br />Anton Yelchin<br/>
Robert Downey, Jr.<br/>
Hope Davis<br/>
Kat Dennings<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/independent/charlie_bartlett/charlie_bartlett_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/independent/charlie_bartlett/charlie_bartlett_h640w.mov"/>
	</item>
	<item>
		<title>Get Smart</title>
		<link>http://www.apple.com/trailers/wb/getsmart/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/wb/posters/getsmart_l200707121554.jpg" alt="Get Smart"/>
				</td>
				<td>
								<h1>Get Smart</h1>
								<span>© Copyright 2008 Warner Bros. Pictures</span>
								<br/><a href="http://www.jdoqocy.com/a073efolfn249586682435B4574?sid=rss"><img border="0" src="http://www.afcyhf.com/r975elpdjh249586682435B4574"/></a>
								<p>In the all-new action comedy “Get Smart,” Maxwell Smart (Steve Carell) is on a mission to thwart the latest plot for world domination by the evil crime syndicate known as KAOS. When the headquarters of U.S. spy agency Control is attacked and the identities of its agents compromised, the Chief (Alan Arkin) has no choice but to promote his ever-eager analyst Maxwell Smart, who has always dreamt of working in the field alongside stalwart superstar Agent 23 (Dwayne “The Rock” Johnson). Smart is partnered instead with the only other agent whose identity has not been compromised: the lovely-but-lethal veteran Agent 99 (Anne Hathaway).  As Smart and 99 get closer to unraveling KAOS’ master plan—and each other—they discover that key KAOS operative Siegfried (Terence Stamp) and his sidekick Shtarker (Kenneth Davitian) are scheming to cash in with their network of terror. Given little field experience and even less time, Smart—armed with nothing but a few spy-tech gadgets and his unbridled enthusiasm—must defeat KAOS if he is to save the day.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2008-06-20</h4>
											<p>
												Comedy<br />
												Rating: Not yet rated
											</p>
											<p>
												Peter Segal (dir.)<br />Steve Carell<br/>
Anne Hathaway<br/>
Dwayne “The Rock” Johnson<br/>
Alan Arkin<br/>
Terrence Stamp<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/wb/get_smart/get_smart-tlr1_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Comedy</category>
		<enclosure url="http://movies.apple.com/movies/wb/get_smart/get_smart-tlr1_h640w.mov"/>
	</item>
	<item>
		<title>Ghosts of Cite Soleil</title>
		<link>http://www.apple.com/trailers/thinkfilm/ghostsofcitesoleil/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/thinkfilm/posters/ghostsofcitesoleil_l200707111755.jpg" alt="Ghosts of Cite Soleil"/>
				</td>
				<td>
								<h1>Ghosts of Cite Soleil</h1>
								<span>© Copyright 2007 THINKfilm</span>
								<br/><a href="http://www.jdoqocy.com/i6104ar-xrzEGLHKIIKEGFINOLGH?sid=rssb"><img border="0" src="http://www.afcyhf.com/pk97elpdjh249586682436BC945"/></a>
								<p>An epic portrait of a family and a culture torn apart by poverty and violence, Ghosts of Cite Soleil is a powerful and unsettling documentary that takes us inside the lives of the notorious gang leaders who dominate the Haitian slum of Cite Soleil, one of the most desperate communities in the Western hemisphere.  Set to a score by Wyclef Jean, who also executive produced the film and serves as an inspiration to the young men of Haiti, the film follows two of the gang leaders, who happen to be brothers, and are also aspiring rappers.  The foot soldiers of these gang leaders are known as chimeres (or “ghosts”) and it was those ghosts whom former President Jean-Bertrand Aristide is said to have employed to silence his opponents. Filmed in the months leading up to Aristide’s overthrow in 2004, the film captures the smoldering tensions between the two rival gang leaders, and their love for the same woman, set in a city the United Nations has declared the most dangerous place on Earth.</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-07-27</h4>
											<p>
												Documentary<br />
												Rating: NR
											</p>
											<p>
												Asger Leth (dir.)<br /></p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/thinkfilm/ghostsofcitesoleil/ghostsofcitesoleil_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Documentary</category>
		<enclosure url="http://movies.apple.com/movies/thinkfilm/ghostsofcitesoleil/ghostsofcitesoleil_h640w.mov"/>
	</item>
	<item>
		<title>Gone Baby Gone</title>
		<link>http://www.apple.com/trailers/miramax/gonebabygone/</link>
		<description><![CDATA[ <table cellspacing="5" cellpadding="0">
			<tr>
				<td >
					<img src="http://images.apple.com/moviesxml/s/miramax/posters/gonebabygone_l200707121516.jpg" alt="Gone Baby Gone"/>
				</td>
				<td>
								<h1>Gone Baby Gone</h1>
								<span>© Copyright 2007 Miramax Films</span>
								<br/><a href="http://www.dpbolvw.net/h4102vpyvpxCEJFIGGICEDFMHFIL?sid=rssb"><img border="0" src="http://www.afcyhf.com/be100vvzntrCEJFIGGICEDFMHFIL"/></a>
								<p>“Gone Baby Gone” is Ben Affleck’s directorial debut and is based on the novel from the acclaimed author of “Mystic River.”  It is an intense look inside an ongoing investigation about the mysterious disappearance of a little girl.  Two young private detectives (Casey Affleck and Michelle Monaghan) are hired to take a closer look at the case and soon discover that nothing is what it seems.  Ultimately, they will have to risk everything — their relationship, their sanity, and even their lives — to find a little girl-lost.  The film also stars Academy Award Winner Morgan Freeman (“Million Dollar Baby”) and Academy Award Nominee Ed Harris (“Pollack”).</p>
								<table>
									<tr>
										<td>
											<h4>In Theatres: 2007-10-19</h4>
											<p>
												Drama<br />
												Rating: R
											</p>
											<p>
												Ben Affleck (dir.)<br />Casey Affleck<br/>
Michelle Monaghan<br/>
Morgan Freeman<br/>
Ed Harris<br/>
</p>
										</td>
										<td>
											<ul>
												<li><a href="http://movies.apple.com/movies/miramax/gone_baby_gone/gone_baby_gone_h640w.mov">Trailer</a></li>
											</ul>
										</td>
									</tr>
								</table>
							</td>
						</tr>
					</table>
				]]></description>
		<category>Drama</category>
		<enclosure url="http://movies.apple.com/movies/miramax/gone_baby_gone/gone_baby_gone_h640w.mov"/>
	</item>
</channel>
</rss>