summaryrefslogtreecommitdiff
path: root/tests/data/nature-journal-toc.html
blob: 5046933e061bf197922dbfd5e1e5b8302babaec6 (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

	





































	

	
		
				<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head>
			<!-- super head top -->		      










                





































        
               
      











        
        
        
  

 



	





	
				


 

 


 
 

     

 
  




<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="robots" content="noarchive" />

<meta name="keywords" content="Nature, science, science news, biology, physics, genetics, astronomy, astrophysics, quantum physics, evolution, evolutionary biology, geophysics, climate change, earth science, materials science, interdisciplinary science, science policy, medicine, systems biology, genomics, transcriptomics, palaeobiology, ecology, molecular biology, cancer, immunology, pharmacology, development, developmental biology, structural biology, biochemistry, bioinformatics, computational biology, nanotechnology, proteomics, metabolomics, biotechnology, drug discovery, environmental science, life, marine biology, medical research, neuroscience, neurobiology, functional genomics, molecular interactions, RNA, DNA, cell cycle, signal transduction, cell signalling" />
<meta name="description" content="Nature is the international weekly journal of science: a magazine style journal that publishes full-length research papers in all disciplines of science, as well as News and Views, reviews, news, features, commentaries, web focuses and more, covering all branches of science and how science impacts upon all aspects of society and life." />
<link rel="shortcut icon" href="http://www.nature.com.ezproxy.lib.utexas.edu/favicon.ico" />
<link rel="home" href="/nature/" title="home" />
<link rel="copyright" href="/info/copyright_statement.html" title="copyright" />
<link rel="help" title="help" href="/help/" />
<link href="/nature/current_issue/rss/index.html" type="application/rss+xml" rel="alternate" title="Nature current issue RSS feed" />
			
		<title>Table of contents : Nature</title>
	
	






<script type="text/javascript"><!--//--><![CDATA[//><!--
	var include = '';

	var wp = '';
	if (wp != '') include += 'wp='+wp;
	include += ';';

	var rf = '';
	if (rf != '') include += "rf="+rf;
	include += ';';

	var sp = '';
	if (sp != '') include += "sp="+sp;
	include += ";";

	var ps = '';
	if (ps != '') include += "ps="+ps;
	include += ";";

	var adinf = "lg=no;";

	if(include != ";;;;")
	{
		adinf = include;
	}

	var time = new Date();
	ordval= (time.getTime());

		ord=Math.random()*10000000000000000;
//--><!]]></script>

		

																													<style type="text/css" media="screen, projection, print"><!--/*--><![CDATA[/*><!--*/
	/* high pass filter to hide @imports from browsers with poor CSS1 parsing - also hide from mac IE \*/
	@import "/common/style/null.css?\"\{";
	@import "/common/includes/header/03/style/header.css";	@import "/common/includes/footer/03/style/footer.css";
		    @import "/common/style/layout.css";
		    @import "/common/style/layout_wide_banner.css";
		    @import "/common/style/main.css";
		    @import "/common/style/header_footer_smallfonts.css";
		    @import "/nature/style/site.css";
		
	 		@import "/common/style/restrict_width/966px.css";
						#hdr .login-nav {background-image: url(/nature/images/journal_header_v3.jpg);}
				
/* end hide from mac ie */
/*]]>*/--></style>
<link rel="stylesheet" type="text/css" href="/common/style/print.css" media="print" title="Print Stylesheet" />

<script type="text/javascript"><!--//--><![CDATA[//><!--
//--><!]]></script>



																																																		
<!--[if lte IE 7]>
<style type="text/css" media="screen, projection">
	@import "/common/style/null.css?\"\{";
	@import "/common/includes/header/03/style/ie-specific/lte-ie-7.css";
	@import "/common/style/ie-specific/lte-ie-7.css";
</style>
<![endif]-->
																																																																												
<!--[if IE 7]>
<style type="text/css" media="screen, projection">
	@import "/common/includes/header/03/style/ie-specific/ie-7.css";
	@import "/common/style/ie-specific/ie-7.css";
</style>
<![endif]-->
																																																																																																																
<!--[if IE 6]>
<script type="text/javascript" src="/common/scripts/ie-specific/ie-6.js"></script>
<style type="text/css" media="screen, projection">
	@import "/common/includes/header/03/style/ie-specific/ie-6.css";
	@import "/common/includes/footer/03/style/ie-specific/ie-6.css";
	@import "/common/style/ie-specific/ie-6.css";
	@import "/nature/style/ie-specific/ie-6.css";
</style>
<![endif]-->
																																																																																																																																																																																																																																																																																																																																																																																																																																								

			<!-- super head bottom -->
	<!-- resource metadata -->
				
		
			
				
											
	
	
							
																											<meta name="DCS.dcssip" content="www.nature.com" />
					<meta name="Access" content="Yes" />
					<meta name="WT.cg_n" content="Nature" />
					</head><body id="toc" class="www-nature-com-nature">
<!-- super body top -->
<div class="clearfix" id="header"><!-- global links -->


																		

				</div><!-- /#header -->
		<div class="constrain-outer"><div class="constrain">


<div id="hdr">
			<div class="publications-search" id="top">
			<div class="publications">
				<ul>
														<li class="first jumplink"><a href="#content">Jump&nbsp;to&nbsp;main&nbsp;content</a></li>
										<li class="jumplink"><a href="#journalnav">Jump&nbsp;to&nbsp;navigation</a></li>
																		<li class="nature-link"><a href="/">nature.com<span class="hidden"> homepage</span></a></li>
																	<li class="pub1"><a href="/siteindex/">Publications&nbsp;A-Z&nbsp;index</a></li><li><a href="/browse/">Browse&nbsp;by&nbsp;subject</a></li>								
																																																																																																																	</ul>
			</div>	
		</div>
	
	<span class="cleardiv"><!-- --></span>

			<div class="leaderboard-links">
									
																																							
			
							<div class="user-services">
																					<ul class="list">
																						<li class="us-link li1"><a href="http://www.nature.com.ezproxy.lib.utexas.edu/myaccount/">My account</a></li><li class="us-link li2"><a href="http://mts-nature.nature.com.ezproxy.lib.utexas.edu/cgi-bin/main.plex" title="Submit  manuscript">Submit manuscript</a></li>															<li class="us-link li3"><a href="http://www.nature.com.ezproxy.lib.utexas.edu/register/" title="Register with Nature.com">Register</a></li><li class="us-link li4"><a href="https://secure-nature-com.ezproxy.lib.utexas.edu/subscribe/nature" title="Subscribe to Nature">Subscribe</a></li>													</ul>
																<span class="cleardiv"><!-- --></span>
								</div>
						
							<!-- leaderboard ad -->
				<div class="leaderboard">
										<div class="padder">
																								










		
<div class="adunit-leaderboard">
<script type="text/javascript"><!--//--><![CDATA[//><!--
		document.write('<script type="text/javascript" src="http://ad.doubleclick.net/adj/nature.com/tocpage;abr=!webtv;artid=index;issue=7254;subco=;chaco=;keywd=;njdis=;njreg=;crstg=;pos=top;sz=728x90;ptile=1;ord=' + ord + '?" ><\/script>');

	if ((!document.images && navigator.userAgent.indexOf('Mozilla/2.') >= 0) || (navigator.userAgent.indexOf("WebTV") >= 0)) {
		document.write('<a href="http://ad.doubleclick.net/jump/nature.com/tocpage;keywd=;sz=728x90;ord=' + ord + '?">');
		document.write('<img src="http://ad.doubleclick.net/ad/nature.com/tocpage;keywd=;sz=728x90;ord=' + ord + '?" width="728" height="90" border="0"></a>');
	}
//--><!]]></script>
<noscript>
	<div><a href="http://ad.doubleclick.net/jump/nature.com/tocpage;abr=!NN2;tile=1;artid=index;issue=7254;subco=;chaco=;keywd=;njdis=;njreg=;crstg=;pos=top;sz=728x90;ptile=1;ord=123456789?"><img src="http://ad.doubleclick.net/ad/nature.com/tocpage;abr=!NN2;tile=1;artid=index;issue=7254;subco=;chaco=;keywd=;njdis=;njreg=;crstg=;pos=top;sz=728x90;ptile=1;ord=123456789?" alt="Advertisement" style="border:0" /></a></div>
</noscript>

</div>


					</div>
				</div>
				<!-- end leaderboard ad -->
					</div>
		
		<span class="cleardiv"><!-- --></span>
		
	<div class="login-nav">
		
						
					
						
																	<div class="logon">
					<p><a href="/foxtrot/svc/login" class="login" title="login to Nature.com">Login</a></p>
									</div>
													
														
		<a href="/nature/" class="journal-header" title="Nature homepage"><img src="/nature/images/journal_header_v3.jpg" alt="Nature homepage" style="display:block;" class="journal-header-image" /></a>		
				
				<form class="search" action="/search/executeSearch?" method="get">
			<div>
				<label for="searchtext">Search</label>
														<select name="sp-q-1">
												<option value="NATURE,NEWS">This journal</option>
												<option value="">All of Nature.com</option>
											</select>
													<input type="text" id="searchtext" name="sp-q" value="" />
												<input type="hidden" name="sp-c" value="25" />
												<input type="hidden" name="sp-m" value="0" />
												<input type="hidden" name="sp-s" value="date_descending" />
												<input type="hidden" name="include-collections" value="journals_nature,crawled_content" />
												<input type="hidden" name="exclude-collections" value="journals_palgrave,lab_animal" />
																
														<input type="hidden" name="sp-a" value="sp1001702d" />
										<input type="hidden" name="sp-sfvl-field" value="subject|ujournal" />
										<input type="hidden" name="sp-x-1" value="ujournal" />
										<input type="hidden" name="sp-p-1" value="phrase" />
										<input type="hidden" name="sp-p" value="all" />
													<input type="submit" name="submit" class="button" value="go" title="search now" /> 					
							</div>
		</form>
		
							<span class="cleardiv"><!-- --></span>
			</div>
</div>


				<div style="display:none;">
		</div></div><!-- close constrain divs -->
	<!-- end global links -->
</div><div id="constrain"><div class="constrain"><div id="breadcrumb"><div><a href="/nature/index.html">Journal home</a><span class="divider"> &gt; </span>
				<a href="/nature/journal/v460/n7254/index.html">
Current Issue</a><span class="divider"> &gt; </span><span class="thisitem">Table of contents</span></div></div><div id="content-journalnav"><div id="content"><h1 class="page-header">Table of contents</h1><div class="issue"><h2>Volume 460 Number 7254 <abbr title="printed pages">pp</abbr>435-544</h2><div class="cover-navigation"><img alt="" src="/nature/journal/v460/n7254/images/cover_nature.jpg"/><p class="about-cover"><a href="/nature/journal/v460/n7254/covers/">About the cover</a></p></div><div class="issue-links"><h3>In this issue (23 July 2009)</h3><div class="wrapper clearfix"><ul class="anchor"><li><a href="#ed">Editorials</a></li><li><a href="#rhighlts">Research Highlights</a></li><li><a href="#jcb">Journal Club</a></li><li><a href="#nw">News</a></li><li><a href="#nf">News Features</a></li><li><a href="#cr">Correspondence</a></li><li><a href="#essay">Essay</a></li><li><a href="#ba">Books and Arts</a></li></ul></div><div class="wrapper clearfix"><ul class="anchor second"><li><a href="#nv">News and Views</a></li><li><a href="#af">Articles</a></li><li><a href="#lt">Letters</a></li><li><a href="#cg">Corrigendum</a></li><li><a href="#naturejobs">Naturejobs</a></li><li><a href="#fut">Futures</a></li></ul></div><h3 class="also">Also this week</h3><ul class="anchor"><li><a class="out" href="edsumm/index.html">Editor's Summary</a></li><li><a class="out" href="/nature/podcast/index.html">Podcast</a></li><li><a class="out" href="/nature/journal/v460/n7254/authors/index.html">Authors</a></li></ul><span class="cleardiv"><!-- --></span>
</div><span class="cleardiv"><!-- --></span>
</div><div class="prevnext">
<a title="previous issue" class="previous" href="/nature/journal/v460/n7253/index.html">Previous issue</a><span class="hidden"> | </span><a class="japanese" href="/nature/journal/v460/n7254/index.html?lang=ja">Japanese table of contents</a><span class="cleardiv"><!-- --></span>
</div><p class="online-only"><span class="hidden">(this content only available online) </span>indicates content that is available online only</p><div class="container"></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="ed">Editorials</h3><h4><span class="atl">Growing pains</span> <span class="page"><abbr title="page">p</abbr>435</span></h4><p class="abs">The fledgling European Research Council is struggling against the constraints imposed by the European Commission. It needs to be completely independent.</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460435a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460435a.html" title="Growing pains">Full Text</a>
| <a title="PDF (539K) of Growing pains" href="/nature/journal/v460/n7254/pdf/460435a.pdf"><abbr title="Portable Document Format">PDF</abbr> (539K)</a></p><hr class="separator" />
<h4><span class="atl">Beyond the pristine</span> <span class="page"><abbr title="page">p</abbr>435</span></h4><p class="abs">Earth's disturbed ecosystems have much more to offer than many would give them credit for.</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460435b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460435b.html" title="Beyond the pristine">Full Text</a>
| <a title="PDF (675K) of Beyond the pristine" href="/nature/journal/v460/n7254/pdf/460435b.pdf"><abbr title="Portable Document Format">PDF</abbr> (675K)</a></p><hr class="separator" />
<h4><span class="atl">The carbon count</span> <span class="page"><abbr title="page">p</abbr>436</span></h4><p class="abs">Scientists need better Earth-monitoring tools to see whether climate policies are working.</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460436a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460436a.html" title="The carbon count">Full Text</a>
| <a title="PDF (624K) of The carbon count" href="/nature/journal/v460/n7254/pdf/460436a.pdf"><abbr title="Portable Document Format">PDF</abbr> (624K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="rhighlts">Research Highlights</h3><h4><span class="atl">Biophysics: Skink or swim?</span> <span class="page"><abbr title="page">p</abbr>438</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460438a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460438a.html" title="Biophysics: Skink or swim?">Full Text</a>
| <a title="PDF (633K) of Biophysics: Skink or swim?" href="/nature/journal/v460/n7254/pdf/460438a.pdf"><abbr title="Portable Document Format">PDF</abbr> (633K)</a></p><hr class="separator" />
<h4><span class="atl">Astronomy: Reionizers spotted</span> <span class="page"><abbr title="page">p</abbr>438</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460438b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460438b.html" title="Astronomy: Reionizers spotted">Full Text</a>
| <a title="PDF (633K) of Astronomy: Reionizers spotted" href="/nature/journal/v460/n7254/pdf/460438b.pdf"><abbr title="Portable Document Format">PDF</abbr> (633K)</a></p><hr class="separator" />
<h4><span class="atl">Cell biology: Spindle sandwich</span> <span class="page"><abbr title="page">p</abbr>438</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460438c</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460438c.html" title="Cell biology: Spindle sandwich">Full Text</a>
| <a title="PDF (633K) of Cell biology: Spindle sandwich" href="/nature/journal/v460/n7254/pdf/460438c.pdf"><abbr title="Portable Document Format">PDF</abbr> (633K)</a></p><hr class="separator" />
<h4><span class="atl">Physics: Scattered showers</span> <span class="page"><abbr title="page">p</abbr>438</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460438d</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460438d.html" title="Physics: Scattered showers">Full Text</a>
| <a title="PDF (633K) of Physics: Scattered showers" href="/nature/journal/v460/n7254/pdf/460438d.pdf"><abbr title="Portable Document Format">PDF</abbr> (633K)</a></p><hr class="separator" />
<h4><span class="atl">Cancer biology: Doing more with less</span> <span class="page"><abbr title="page">p</abbr>438</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460438e</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460438e.html" title="Cancer biology: Doing more with less">Full Text</a>
| <a title="PDF (633K) of Cancer biology: Doing more with less" href="/nature/journal/v460/n7254/pdf/460438e.pdf"><abbr title="Portable Document Format">PDF</abbr> (633K)</a></p><hr class="separator" />
<h4><span class="atl">Neuroscience: Knowledge rewards</span> <span class="page"><abbr title="page">p</abbr>438</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460438f</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460438f.html" title="Neuroscience: Knowledge rewards">Full Text</a>
| <a title="PDF (717K) of Neuroscience: Knowledge rewards" href="/nature/journal/v460/n7254/pdf/460438f.pdf"><abbr title="Portable Document Format">PDF</abbr> (717K)</a></p><hr class="separator" />
<h4><span class="atl">Evolution: Safe sex for primroses</span> <span class="page"><abbr title="page">p</abbr>439</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460439a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460439a.html" title="Evolution: Safe sex for primroses">Full Text</a>
| <a title="PDF (624K) of Evolution: Safe sex for primroses" href="/nature/journal/v460/n7254/pdf/460439a.pdf"><abbr title="Portable Document Format">PDF</abbr> (624K)</a></p><hr class="separator" />
<h4><span class="atl">Bioenergetics: Winter wrecked</span> <span class="page"><abbr title="page">p</abbr>439</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460439b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460439b.html" title="Bioenergetics: Winter wrecked">Full Text</a>
| <a title="PDF (624K) of Bioenergetics: Winter wrecked" href="/nature/journal/v460/n7254/pdf/460439b.pdf"><abbr title="Portable Document Format">PDF</abbr> (624K)</a></p><hr class="separator" />
<h4><span class="atl">Physics: Jet stream</span> <span class="page"><abbr title="page">p</abbr>439</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460439c</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460439c.html" title="Physics: Jet stream">Full Text</a>
| <a title="PDF (624K) of Physics: Jet stream" href="/nature/journal/v460/n7254/pdf/460439c.pdf"><abbr title="Portable Document Format">PDF</abbr> (624K)</a></p><hr class="separator" />
<h4><span class="atl">Palaeontological genetics: Untraceable Etruscans</span> <span class="page"><abbr title="page">p</abbr>439</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460439d</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460439d.html" title="Palaeontological genetics: Untraceable Etruscans">Full Text</a>
| <a title="PDF (624K) of Palaeontological genetics: Untraceable Etruscans" href="/nature/journal/v460/n7254/pdf/460439d.pdf"><abbr title="Portable Document Format">PDF</abbr> (624K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="jcb">Journal Club</h3><h4><span class="atl">Journal club</span> <span class="page"><abbr title="page">p</abbr>439</span></h4><p class="aug">Rex Cocroft</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460439e</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460439e.html" title="Journal club">Full Text</a>
| <a title="PDF (624K) of Journal club" href="/nature/journal/v460/n7254/pdf/460439e.pdf"><abbr title="Portable Document Format">PDF</abbr> (624K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a>













<h3 id="nw">News</h3><h4><span class="atl">Red tape strangles basic research grants</span> <span class="page"><abbr title="page">p</abbr>440</span></h4><p class="abs">European Research Council finds itself mired in bureaucracy.</p><p class="aug">Natasha Gilbert</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460440a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460440a.html" title="Red tape strangles basic research grants">Full Text</a>
| <a title="PDF (1,231K) of Red tape strangles basic research grants" href="/news/2009/090722/pdf/460440a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,231K)</a></p><hr class="separator" />
<h4><span class="atl">Cuts bite in California</span> <span class="page"><abbr title="page">p</abbr>441</span></h4><p class="abs">University faces hard times as budget gets squeezed.</p><p class="aug">Erika Check Hayden
						&amp;
			Rex Dalton</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460441a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460441a.html" title="Cuts bite in California">Full Text</a>
| <a title="PDF (904K) of Cuts bite in California" href="/news/2009/090722/pdf/460441a.pdf"><abbr title="Portable Document Format">PDF</abbr> (904K)</a></p><hr class="separator" />
<h4><span class="atl">Insuring against climate</span> <span class="page"><abbr title="page">p</abbr>442</span></h4><p class="abs">Negotiators push for policies to help weather natural disasters.</p><p class="aug">Jeff Tollefson</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460442a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460442a.html" title="Insuring against climate">Full Text</a>
| <a title="PDF (848K) of Insuring against climate" href="/news/2009/090722/pdf/460442a.pdf"><abbr title="Portable Document Format">PDF</abbr> (848K)</a></p><hr class="separator" />
<h4><span class="atl">US Congress revives hydrogen vehicle research</span> <span class="page"><abbr title="page">p</abbr>442</span></h4><p class="abs">House vote is set to put programme back on the road.</p><p class="aug">Jeff Tollefson</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460442b</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460442b.html" title="US Congress revives hydrogen vehicle research">Full Text</a>
| <a title="PDF (848K) of US Congress revives hydrogen vehicle research" href="/news/2009/090722/pdf/460442b.pdf"><abbr title="Portable Document Format">PDF</abbr> (848K)</a></p><hr class="separator" />
<h4><span class="atl">Psychiatry manual revisions spark row</span> <span class="page"><abbr title="page">p</abbr>445</span></h4><p class="abs">US psychiatrists divided by claims of secrecy and scientific overreach.</p><p class="aug">Heidi Ledford</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460445a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460445a.html" title="Psychiatry manual revisions spark row">Full Text</a>
| <a title="PDF (786K) of Psychiatry manual revisions spark row" href="/news/2009/090722/pdf/460445a.pdf"><abbr title="Portable Document Format">PDF</abbr> (786K)</a></p><hr class="separator" />
<h4><span class="atl">Regulators face tough flu-jab choices</span> <span class="page"><abbr title="page">p</abbr>446</span></h4><p class="abs">Rich countries' pandemic strategies may cause vaccine shortages elsewhere.</p><p class="aug">Declan Butler</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460446a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460446a.html" title="Regulators face tough flu-jab choices">Full Text</a>
| <a title="PDF (484K) of Regulators face tough flu-jab choices" href="/news/2009/090722/pdf/460446a.pdf"><abbr title="Portable Document Format">PDF</abbr> (484K)</a></p><hr class="separator" />
<h4><span class="atl">Scientists strive to boost US&#8211;Cuban collaboration</span> <span class="page"><abbr title="page">p</abbr>447</span></h4><p class="abs">Breaking the barriers proves to be a slow process.</p><p class="aug">Rex Dalton</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460447a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460447a.html" title="Scientists strive to boost US&ndash;Cuban collaboration">Full Text</a>
| <a title="PDF (424K) of Scientists strive to boost US&ndash;Cuban collaboration" href="/news/2009/090722/pdf/460447a.pdf"><abbr title="Portable Document Format">PDF</abbr> (424K)</a></p><hr class="separator" />
<h4><span class="atl">Cash boost for mapping the human brain</span> <span class="page"><abbr title="page">p</abbr>449</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460449a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460449a.html" title="Cash boost for mapping the human brain">Full Text</a>
| <a title="PDF (812K) of Cash boost for mapping the human brain" href="/news/2009/090722/pdf/460449a.pdf"><abbr title="Portable Document Format">PDF</abbr> (812K)</a></p><hr class="separator" />
<h4><span class="atl">ExxonMobil invests in algae for biofuel</span> <span class="page"><abbr title="page">p</abbr>449</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460449b</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460449b.html" title="ExxonMobil invests in algae for biofuel">Full Text</a>
| <a title="PDF (812K) of ExxonMobil invests in algae for biofuel" href="/news/2009/090722/pdf/460449b.pdf"><abbr title="Portable Document Format">PDF</abbr> (812K)</a></p><hr class="separator" />
<h4><span class="atl">Italian court sidesteps stem-cell challenge</span> <span class="page"><abbr title="page">p</abbr>449</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460449c</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460449c.html" title="Italian court sidesteps stem-cell challenge">Full Text</a>
| <a title="PDF (812K) of Italian court sidesteps stem-cell challenge" href="/news/2009/090722/pdf/460449c.pdf"><abbr title="Portable Document Format">PDF</abbr> (812K)</a></p><hr class="separator" />
<h4><span class="atl">Copernicus honoured in periodic-table addition</span> <span class="page"><abbr title="page">p</abbr>449</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460449d</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460449d.html" title="Copernicus honoured in periodic-table addition">Full Text</a>
| <a title="PDF (812K) of Copernicus honoured in periodic-table addition" href="/news/2009/090722/pdf/460449d.pdf"><abbr title="Portable Document Format">PDF</abbr> (812K)</a></p><hr class="separator" />
<h4><span class="atl">Jupiter takes a hit</span> <span class="page"><abbr title="page">p</abbr>449</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460449e</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460449e.html" title="Jupiter takes a hit">Full Text</a>
| <a title="PDF (812K) of Jupiter takes a hit" href="/news/2009/090722/pdf/460449e.pdf"><abbr title="Portable Document Format">PDF</abbr> (812K)</a></p><hr class="separator" />
<h4><span class="atl">Nominate Japan's best mentors</span> <span class="page"><abbr title="page">p</abbr>449</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460449f</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460449f.html" title="Nominate Japan's best mentors">Full Text</a>
| <a title="PDF (812K) of Nominate Japan's best mentors" href="/news/2009/090722/pdf/460449f.pdf"><abbr title="Portable Document Format">PDF</abbr> (812K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="nf">News Features</h3><h4><span class="atl">Ecology: Ragamuffin Earth</span> <span class="page"><abbr title="page">p</abbr>450</span></h4><p class="abs">A small group of ecologists is looking beyond the pristine to study the scrubby, feral and untended. Emma Marris learns to appreciate 'novel ecosystems'.</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460450a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460450a.html" title="Ecology: Ragamuffin Earth">Full Text</a>
| <a title="PDF (1,915K) of Ecology: Ragamuffin Earth" href="/news/2009/090722/pdf/460450a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,915K)</a></p><hr class="separator" />
<h4><span class="atl">Environment: The globe's green avenger</span> <span class="page"><abbr title="page">p</abbr>454</span></h4><p class="abs">Maurice Strong has shaped how nations respond to planetary crises. Ehsan Masood meets the man whose successes — and failures — laid the groundwork for the current climate talks.</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460454a</span></p><p class="links"><a class="fulltext" href="/news/2009/090722/full/460454a.html" title="Environment: The globe's green avenger">Full Text</a>
| <a title="PDF (889K) of Environment: The globe's green avenger" href="/news/2009/090722/pdf/460454a.pdf"><abbr title="Portable Document Format">PDF</abbr> (889K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a>











<h3 id="cr">Correspondence</h3><h4><span class="atl">Outrage at high price paid for a fossil</span> <span class="page"><abbr title="page">p</abbr>456</span></h4><p class="aug">Elwyn L. Simons,
			Friderun Ankel-Simons,
			Prithijit S. Chatrath,
			Richard S. Kay,
			Blythe Williams,
			John G. Fleagle,
			Daniel L. Gebo,
			Christopher K. Beard,
			Mary Dawson,
			Ian Tattersall
						&amp;
			Kenneth D. Rose</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460456a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460456a.html" title="Outrage at high price paid for a fossil">Full Text</a>
| <a title="PDF (336K) of Outrage at high price paid for a fossil" href="/nature/journal/v460/n7254/pdf/460456a.pdf"><abbr title="Portable Document Format">PDF</abbr> (336K)</a></p><hr class="separator" />
<h4><span class="atl">Peer review and impact statements vital to UK research</span> <span class="page"><abbr title="page">p</abbr>456</span></h4><p class="aug">David Delpy</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460456b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460456b.html" title="Peer review and impact statements vital to UK research">Full Text</a>
| <a title="PDF (336K) of Peer review and impact statements vital to UK research" href="/nature/journal/v460/n7254/pdf/460456b.pdf"><abbr title="Portable Document Format">PDF</abbr> (336K)</a></p><hr class="separator" />
<h4><span class="atl">Time running out to deal with banks of greenhouse gases</span> <span class="page"><abbr title="page">p</abbr>457</span></h4><p class="aug">Jeff Cohen</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460457a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460457a.html" title="Time running out to deal with banks of greenhouse gases">Full Text</a>
| <a title="PDF (309K) of Time running out to deal with banks of greenhouse gases" href="/nature/journal/v460/n7254/pdf/460457a.pdf"><abbr title="Portable Document Format">PDF</abbr> (309K)</a></p><hr class="separator" />
<h4><span class="atl">Petitioning for a revised statement on climate change</span> <span class="page"><abbr title="page">p</abbr>457</span></h4><p class="aug">S. Fred Singer,
			Hal Lewis,
			Will Happer,
			Larry Gould,
			Roger Cohen
						&amp;
			Robert H. Austin</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460457b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460457b.html" title="Petitioning for a revised statement on climate change">Full Text</a>
| <a title="PDF (309K) of Petitioning for a revised statement on climate change" href="/nature/journal/v460/n7254/pdf/460457b.pdf"><abbr title="Portable Document Format">PDF</abbr> (309K)</a></p><hr class="separator" />
<h4><span class="atl">Indigenous people defend rainforest as well as their rights</span> <span class="page"><abbr title="page">p</abbr>457</span></h4><p class="aug">Glenn H. Shepard</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460457c</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460457c.html" title="Indigenous people defend rainforest as well as their rights">Full Text</a>
| <a title="PDF (309K) of Indigenous people defend rainforest as well as their rights" href="/nature/journal/v460/n7254/pdf/460457c.pdf"><abbr title="Portable Document Format">PDF</abbr> (309K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="essay">Essay</h3><h4><span class="atl">The incredible shrinking venture capital</span> <span class="page"><abbr title="page">p</abbr>459</span></h4><p class="abs">Venture funding is declining quickly and is unlikely to bounce back. But less money means lower expectations &#8212; good news for smaller science start-ups, says John Browning.</p><p class="aug">John Browning</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460459a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460459a.html" title="The incredible shrinking venture capital">Full Text</a>
| <a title="PDF (582K) of The incredible shrinking venture capital" href="/nature/journal/v460/n7254/pdf/460459a.pdf"><abbr title="Portable Document Format">PDF</abbr> (582K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="ba">Books and Arts</h3><h4><span class="atl">Great inventions of life</span> <span class="page"><abbr title="page">p</abbr>460</span></h4><p class="abs">A book setting out the ten greatest transformations delivered by evolution contains surprises but neglects crucial innovations such as proteins and embryos, Lewis Wolpert finds.</p><p class="aug">Lewis Wolpert</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460460a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460460a.html" title="Great inventions of life">Full Text</a>
| <a title="PDF (693K) of Great inventions of life" href="/nature/journal/v460/n7254/pdf/460460a.pdf"><abbr title="Portable Document Format">PDF</abbr> (693K)</a></p><hr class="separator" />
<h4><span class="atl">Digesting evolution</span> <span class="page"><abbr title="page">p</abbr>461</span></h4><p class="aug">Randolph M. Nesse reviews <i>The Evolution of Obesity</i> by Michael L. Power
						&amp;
			Jay Schulkin</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460461a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460461a.html" title="Digesting evolution">Full Text</a>
| <a title="PDF (579K) of Digesting evolution" href="/nature/journal/v460/n7254/pdf/460461a.pdf"><abbr title="Portable Document Format">PDF</abbr> (579K)</a></p><hr class="separator" />
<h4><span class="atl">Mathematical memories</span> <span class="page"><abbr title="page">p</abbr>461</span></h4><p class="aug">Jennifer Rohn reviews <i>The Housekeeper and the Professor</i> by Yoko Ogawa</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460461b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460461b.html" title="Mathematical memories">Full Text</a>
| <a title="PDF (899K) of Mathematical memories" href="/nature/journal/v460/n7254/pdf/460461b.pdf"><abbr title="Portable Document Format">PDF</abbr> (899K)</a></p><hr class="separator" />
<h4><span class="atl">Reflecting the impossible</span> <span class="page"><abbr title="page">p</abbr>462</span></h4><p class="aug">Richard Taylor reviews <i>Virtual Worlds: M. C. Escher and Paradox</i></p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460462a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460462a.html" title="Reflecting the impossible">Full Text</a>
| <a title="PDF (885K) of Reflecting the impossible" href="/nature/journal/v460/n7254/pdf/460462a.pdf"><abbr title="Portable Document Format">PDF</abbr> (885K)</a></p><hr class="separator" />
<h4><span class="atl">Correction</span> <span class="page"><abbr title="page">p</abbr>462</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460462b</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460462b.html" title="Correction">Full Text</a>
| <a title="PDF (885K) of Correction" href="/nature/journal/v460/n7254/pdf/460462b.pdf"><abbr title="Portable Document Format">PDF</abbr> (885K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="nv">News and Views</h3><h4><span class="atl">Ecology:&nbsp;Production in pristine lakes</span> <span class="page"><abbr title="page">p</abbr>463</span></h4><p class="abs">An investigation of lakes in Sweden has delivered results that run counter to the idea that primary production is generally limited by the availability of nutrients. There are lessons for limnologists in this.</p><p class="aug">Jonathan J. Cole</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460463a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460463a.html" title="EcologyProduction in pristine lakes">Full Text</a>
| <a title="PDF (1,027K) of EcologyProduction in pristine lakes" href="/nature/journal/v460/n7254/pdf/460463a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,027K)</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Ecology: Production in pristine lakes" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-08.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Quantum mechanics:&nbsp;Hidden context</span> <span class="page"><abbr title="page">p</abbr>464</span></h4><p class="abs">The idea that physical phenomena might be described by a more down-to-earth theory than quantum physics has met with resistance from many physicists. Indeed, it seems that nature is not as simple as we would like.</p><p class="aug">Boris Blinov</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460464a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460464a.html" title="Quantum mechanicsHidden context">Full Text</a>
| <a title="PDF (927K) of Quantum mechanicsHidden context" href="/nature/journal/v460/n7254/pdf/460464a.pdf"><abbr title="Portable Document Format">PDF</abbr> (927K)</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Quantum mechanics: Hidden context" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-05.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Materials science:&nbsp;Soft particles feel the squeeze</span> <span class="page"><abbr title="page">p</abbr>465</span></h4><p class="abs">It's hard to fit in when you're different &#8212; especially if you're a large particle trying to squeeze into an array of smaller ones. But some soft, polymeric particles simply shrink to fit the space available.</p><p class="aug">Daan Frenkel</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460465a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460465a.html" title="Materials scienceSoft particles feel the squeeze">Full Text</a>
| <a title="PDF (900K) of Materials scienceSoft particles feel the squeeze" href="/nature/journal/v460/n7254/pdf/460465a.pdf"><abbr title="Portable Document Format">PDF</abbr> (900K)</a></p><hr class="separator" />
<h4><span class="atl">Cancer:&nbsp;Three birds with one stone</span> <span class="page"><abbr title="page">p</abbr>466</span></h4><p class="abs">The core domain of the p53 protein has been found to affect microRNA processing &#8212; its third known antitumour activity. Most cancerous p53 mutations affect this domain and may abolish all tumour-suppressor functions.</p><p class="aug">Franck Toledo
						&amp;
			Boris Bardot</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460466a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460466a.html" title="CancerThree birds with one stone">Full Text</a>
| <a title="PDF (1,237K) of CancerThree birds with one stone" href="/nature/journal/v460/n7254/pdf/460466a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,237K)</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Cancer: Three birds with one stone" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-13.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">50 &amp; 100 years ago</span> <span class="page"><abbr title="page">p</abbr>467</span></h4><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460467a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460467a.html" title="50 &amp; 100 years ago">Full Text</a>
| <a title="PDF (1,065K) of 50 &amp; 100 years ago" href="/nature/journal/v460/n7254/pdf/460467a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,065K)</a></p><hr class="separator" />
<h4><span class="atl">Geomorphology:&nbsp;Landscape texture set to scale</span> <span class="page"><abbr title="page">p</abbr>468</span></h4><p class="abs">Why, in many landscapes, does ridge&#8211;valley spacing show such regularity? The combination of high-resolution data and an elegant model offers a solution to this long-standing puzzle, for some cases at least.</p><p class="aug">Kelin X. Whipple</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460468a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460468a.html" title="GeomorphologyLandscape texture set to scale">Full Text</a>
| <a title="PDF (1,762K) of GeomorphologyLandscape texture set to scale" href="/nature/journal/v460/n7254/pdf/460468a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,762K)</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Geomorphology: Landscape texture set to scale" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-07.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Bioengineering:&nbsp;Cellular control in two clicks</span> <span class="page"><abbr title="page">p</abbr>469</span></h4><p class="abs">If complex tissues are to be engineered, synthetic materials will be needed that provide cells with precisely located molecular cues. A method that attaches such cues to specific areas of a gel could be the answer.</p><p class="aug">Jason A. Burdick</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460469a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460469a.html" title="BioengineeringCellular control in two clicks">Full Text</a>
| <a title="PDF (1,519K) of BioengineeringCellular control in two clicks" href="/nature/journal/v460/n7254/pdf/460469a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,519K)</a></p><hr class="separator" />
<h4><span class="atl">Infectious diseases:&nbsp;An ill wind for wild chimps?</span> <span class="page"><abbr title="page">p</abbr>470</span></h4><p class="abs">Simian immunodeficiency virus is associated with increased mortality in a subspecies of chimpanzee living under natural conditions in East Africa. This is worrying news for the chimpanzee populations involved.</p><p class="aug">Robin A. Weiss
						&amp;
			Jonathan L. Heeney</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460470a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460470a.html" title="Infectious diseasesAn ill wind for wild chimps?">Full Text</a>
| <a title="PDF (1,014K) of Infectious diseasesAn ill wind for wild chimps?" href="/nature/journal/v460/n7254/pdf/460470a.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,014K)</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Infectious diseases: An ill wind for wild chimps?" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-10.html">Editor's summary</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="af">Articles</h3><h4><span class="atl">Distinctive chromatin in human sperm packages genes for embryo development</span> <span class="page"><abbr title="page">p</abbr>473</span></h4><p class="abs">During spermiogenesis, canonical histones are largely exchanged for protamines, and whether the rarely retained nucleosomes have any function has been unclear. Here, high-resolution genomic approaches are used to localize the nucleosomes retained in mature human sperm; they are found to be significantly enriched at developmentally important genes and to have distinctive patterns of histone modifications.</p><p class="aug">Saher Sue Hammoud,
			David A. Nix,
			Haiying Zhang,
			Jahnvi Purwar,
			Douglas T. Carrell
						&amp;
			Bradley R. Cairns</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08162</span></p><p class="links"><a title="Distinctive chromatin in human sperm packages genes for embryo development" href="/nature/journal/v460/n7254/abs/nature08162.html">Abstract</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08162.html" title="Distinctive chromatin in human sperm packages genes for embryo development">Full Text</a>
| <a title="PDF (402K) of Distinctive chromatin in human sperm packages genes for embryo development" href="/nature/journal/v460/n7254/pdf/nature08162.pdf"><abbr title="Portable Document Format">PDF</abbr> (402K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08162.html" title="Supplementary information: Distinctive chromatin in human sperm packages genes for embryo development">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Distinctive chromatin in human sperm packages genes for embryo development" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-01.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Argonaute HITS-CLIP decodes microRNA&#8211;mRNA interaction maps</span> <span class="page"><abbr title="page">p</abbr>479</span></h4><p class="abs">MicroRNAs (miRNAs) are short RNAs that are ubiquitous, potent regulators of gene expression; however, as miRNA activity requires base pairing with only 6&#8211;8 nucleotides of messenger RNA, predicting target mRNAs is a major challenge. By using a method known as HITS-CLIP, combined with bioinformatic analysis, it has now been possible to demonstrate how the <i>in vivo</i> interactions between miRNAs and the mRNA targets can be validated.</p><p class="aug">Sung Wook Chi,
			Julie B. Zang,
			Aldo Mele
						&amp;
			Robert B. Darnell</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08170</span></p><p class="links"><a title="Argonaute HITS-CLIP decodes microRNA-mRNA interaction maps" href="/nature/journal/v460/n7254/abs/nature08170.html">Abstract</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08170.html" title="Argonaute HITS-CLIP decodes microRNA|[ndash]|mRNA interaction maps">Full Text</a>
| <a title="PDF (1,043K) of Argonaute HITS-CLIP decodes microRNA|[ndash]|mRNA interaction maps" href="/nature/journal/v460/n7254/pdf/nature08170.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,043K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08170.html" title="Supplementary information: Argonaute HITS-CLIP decodes microRNA|[ndash]|mRNA interaction maps">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Argonaute HITS-CLIP decodes microRNA-mRNA interaction maps" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-02.html">Editor's summary</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="lt">Letters</h3><h4><span class="atl">Liquid water on Enceladus from observations of ammonia and <sup>40</sup>Ar in the plume</span> <span class="page"><abbr title="page">p</abbr>487</span></h4><p class="abs">Jets of water ice from surface fractures near the south pole of Saturn's icy moon Enceladus produce a plume of gas and particles. The source of the jets may be a liquid water region under the ice shell. Here, ammonia is reported to be present in the plume, providing strong evidence for the existence of at least some liquid water.</p><p class="aug">J. H. Waite Jr,
			W. S. Lewis,
			B. A. Magee,
			J. I. Lunine,
			W. B. McKinnon,
			C. R. Glein,
			O. Mousis,
			D. T. Young,
			T. Brockwell,
			J. Westlake,
			M.-J. Nguyen,
			B. D. Teolis,
			H. B. Niemann,
			R. L. McNutt Jr,
			M. Perry
						&amp;
			W.-H. Ip</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08153</span></p><p class="links"><a title="Liquid water on Enceladus from observations of ammonia and : 40: Ar in the plume" href="/nature/journal/v460/n7254/abs/nature08153.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08153.html" title="Liquid water on Enceladus from observations of ammonia and 40Ar in the plume">Full Text</a>
| <a title="PDF (222K) of Liquid water on Enceladus from observations of ammonia and 40Ar in the plume" href="/nature/journal/v460/n7254/pdf/nature08153.pdf"><abbr title="Portable Document Format">PDF</abbr> (222K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08153.html" title="Supplementary information: Liquid water on Enceladus from observations of ammonia and 40Ar in the plume">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Liquid water on Enceladus from observations of ammonia and : 40: Ar in the plume" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-03.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Asymmetric auroral intensities in the Earth's Northern and Southern hemispheres</span> <span class="page"><abbr title="page">p</abbr>491</span></h4><p class="abs">It is commonly assumed that the aurora borealis (Northern Hemisphere) and the aurora australis (Southern Hemisphere) are mirror images of each other. Here, observations are reported that clearly contradict this common assumption: intense spots are seen at dawn in the Northern summer Hemisphere, and at dusk in the Southern winter Hemisphere.</p><p class="aug">K. M. Laundal
						&amp;
			N. &Oslash;stgaard</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08154</span></p><p class="links"><a title="Asymmetric auroral intensities in the Earth/'s Northern and Southern hemispheres" href="/nature/journal/v460/n7254/abs/nature08154.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08154.html" title="Asymmetric auroral intensities in the Earth|[rsquo]|s Northern and Southern hemispheres">Full Text</a>
| <a title="PDF (455K) of Asymmetric auroral intensities in the Earth|[rsquo]|s Northern and Southern hemispheres" href="/nature/journal/v460/n7254/pdf/nature08154.pdf"><abbr title="Portable Document Format">PDF</abbr> (455K)</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Asymmetric auroral intensities in the Earth/'s Northern and Southern hemispheres" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-04.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">State-independent experimental test of quantum contextuality</span> <span class="page"><abbr title="page">p</abbr>494</span></h4><p class="abs">The question of whether quantum phenomena can be explained by classical models with hidden variables is the subject of a long-lasting debate. One feature of classical models that is thought to be in conflict with quantum mechanics is non-contextuality, with experiments undertaken with photons and neutrons seeming to support this. However, these tests required the generation of special quantum states and left various loopholes open. Here an experiment is performed with trapped ions that overcomes these problems and cannot be explained in non-contextual terms.</p><p class="aug">G. Kirchmair,
			F. Z&auml;hringer,
			R. Gerritsma,
			M. Kleinmann,
			O. G&uuml;hne,
			A. Cabello,
			R. Blatt
						&amp;
			C. F. Roos</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08172</span></p><p class="links"><a title="State-independent experimental test of quantum contextuality" href="/nature/journal/v460/n7254/abs/nature08172.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08172.html" title="State-independent experimental test of quantum contextuality">Full Text</a>
| <a title="PDF (459K) of State-independent experimental test of quantum contextuality" href="/nature/journal/v460/n7254/pdf/nature08172.pdf"><abbr title="Portable Document Format">PDF</abbr> (459K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08172.html" title="Supplementary information: State-independent experimental test of quantum contextuality">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="State-independent experimental test of quantum contextuality" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-05.html">Editor's summary</a> | <a href="/nature/journal/v460/n7254/full/460464a.html">News and Views by Blinov</a></p><hr class="separator" />
<h4><span class="atl">Near-field focusing and magnification through self-assembled nanoscale spherical lenses</span> <span class="page"><abbr title="page">p</abbr>498</span></h4><p class="abs">Cup-shaped molecules of calix[4]hydroquinone self-assemble on a surface into a lens shape; these lenses are shown to generate near-field magnification beyond the diffraction limit, enabling the resolution of features of the order of 200 nanometres. Such spherical nanolenses provide new pathways for lens-based near-field focusing and high-resolution optical imaging at very low intensities, which are useful for, among other things, bio-imaging and near-field lithography.</p><p class="aug">Ju Young Lee,
			Byung Hee Hong,
			Woo Youn Kim,
			Seung Kyu Min,
			Yukyung Kim,
			Mikhail V. Jouravlev,
			Ranojoy Bose,
			Keun Soo Kim,
			In-Chul Hwang,
			Laura J. Kaufman,
			Chee Wei Wong,
			Philip Kim
						&amp;
			Kwang S. Kim</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08173</span></p><p class="links"><a title="Near-field focusing and magnification through self-assembled nanoscale spherical lenses" href="/nature/journal/v460/n7254/abs/nature08173.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08173.html" title="Near-field focusing and magnification through self-assembled nanoscale spherical lenses">Full Text</a>
| <a title="PDF (1,398K) of Near-field focusing and magnification through self-assembled nanoscale spherical lenses" href="/nature/journal/v460/n7254/pdf/nature08173.pdf"><abbr title="Portable Document Format">PDF</abbr> (1,398K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08173.html" title="Supplementary information: Near-field focusing and magnification through self-assembled nanoscale spherical lenses">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Near-field focusing and magnification through self-assembled nanoscale spherical lenses" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-06.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Formation of evenly spaced ridges and valleys</span> <span class="page"><abbr title="page">p</abbr>502</span></h4><p class="abs">Ridges and valleys in many landscapes are uniformly spaced, but no theory has predicted this fundamental topographic wavelength. A characteristic length scale is now derived from equations of mass conservation and sediment transport; it is found to be directly proportional to the valley spacing in models of landform evolution, and to the measured valley spacing at five study sites in the USA.</p><p class="aug">J. Taylor Perron,
			James W. Kirchner
						&amp;
			William E. Dietrich</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08174</span></p><p class="links"><a title="Formation of evenly spaced ridges and valleys" href="/nature/journal/v460/n7254/abs/nature08174.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08174.html" title="Formation of evenly spaced ridges and valleys">Full Text</a>
| <a title="PDF (639K) of Formation of evenly spaced ridges and valleys" href="/nature/journal/v460/n7254/pdf/nature08174.pdf"><abbr title="Portable Document Format">PDF</abbr> (639K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08174.html" title="Supplementary information: Formation of evenly spaced ridges and valleys">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Formation of evenly spaced ridges and valleys" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-07.html">Editor's summary</a> | <a href="/nature/journal/v460/n7254/full/460468a.html">News and Views by Whipple</a></p><hr class="separator" />
<h4><span class="atl">Light limitation of nutrient-poor lake ecosystems</span> <span class="page"><abbr title="page">p</abbr>506</span></h4><p class="abs">Lake ecosystem productivity, defined by the rate of biomass synthesis, is believed to be limited by nutrient availability. However, the comparison of several small unproductive lakes along a water colour gradient now shows that coloured terrestrial organic matter controls the key process for new biomass synthesis through its effects on light attenuation, suggesting that light is the more important limiting factor.</p><p class="aug">Jan Karlsson,
			P&auml;r Bystr&ouml;m,
			Jenny Ask,
			Per Ask,
			Lennart Persson
						&amp;
			Mats Jansson</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08179</span></p><p class="links"><a title="Light limitation of nutrient-poor lake ecosystems" href="/nature/journal/v460/n7254/abs/nature08179.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08179.html" title="Light limitation of nutrient-poor lake ecosystems">Full Text</a>
| <a title="PDF (243K) of Light limitation of nutrient-poor lake ecosystems" href="/nature/journal/v460/n7254/pdf/nature08179.pdf"><abbr title="Portable Document Format">PDF</abbr> (243K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08179.html" title="Supplementary information: Light limitation of nutrient-poor lake ecosystems">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Light limitation of nutrient-poor lake ecosystems" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-08.html">Editor's summary</a> | <a href="/nature/journal/v460/n7254/full/460463a.html">News and Views by Cole</a></p><hr class="separator" />
<h4><span class="atl">Partial penetrance facilitates developmental evolution in bacteria</span> <span class="page"><abbr title="page">p</abbr>510</span></h4><p class="abs">Individuals with exactly the same genetic make-up can differ from one another in their development and resulting phenotype when the genome contains a mutation &#8212; a phenomenon called 'partial penetrance'. Exploration of the genetic and stochastic factors controlling the proportion of abnormal 'twin' spores in mutant populations of the bacterium <i>Bacillus subtilus</i> now reveals how mutations affecting DNA replication and cell division may act in synergy to significantly increase the penetrance of twin sporulation.</p><p class="aug">Avigdor Eldar,
			Vasant K. Chary,
			Panagiotis Xenopoulos,
			Michelle E. Fontes,
			Oliver C. Los&oacute;n,
			Jonathan Dworkin,
			Patrick J. Piggot
						&amp;
			Michael B. Elowitz</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08150</span></p><p class="links"><a title="Partial penetrance facilitates developmental evolution in bacteria" href="/nature/journal/v460/n7254/abs/nature08150.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08150.html" title="Partial penetrance facilitates developmental evolution in bacteria">Full Text</a>
| <a title="PDF (503K) of Partial penetrance facilitates developmental evolution in bacteria" href="/nature/journal/v460/n7254/pdf/nature08150.pdf"><abbr title="Portable Document Format">PDF</abbr> (503K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08150.html" title="Supplementary information: Partial penetrance facilitates developmental evolution in bacteria">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Partial penetrance facilitates developmental evolution in bacteria" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-09.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Increased mortality and AIDS-like immunopathology in wild chimpanzees infected with SIVcpz</span> <span class="page"><abbr title="page">p</abbr>515</span></h4><p class="abs">There are over 40 different simian immunodeficiency viruses (SIVs) with which African primates are naturally infected; two of these have crossed the species barrier to generate human immunodeficiency virus types 1 and 2 (HIV-1 and HIV-2). Although SIVs do not generally cause AIDS in primates, AIDS-like disease is now shown to occur in chimpanzee populations in the wild who are naturally infected with SIVcpz, a close relative of HIV-1.</p><p class="aug">Brandon F. Keele,
			James Holland Jones,
			Karen A. Terio,
			Jacob D. Estes,
			Rebecca S. Rudicell,
			Michael L. Wilson,
			Yingying Li,
			Gerald H. Learn,
			T. Mark Beasley,
			Joann Schumacher-Stankey,
			Emily Wroblewski,
			Anna Mosser,
			Jane Raphael,
			Shadrack Kamenya,
			Elizabeth V. Lonsdorf,
			Dominic A. Travis,
			Titus Mlengeya,
			Michael J. Kinsel,
			James G. Else,
			Guido Silvestri,
			Jane Goodall,
			Paul M. Sharp,
			George M. Shaw,
			Anne E. Pusey
						&amp;
			Beatrice H. Hahn</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08200</span></p><p class="links"><a title="Increased mortality and AIDS-like immunopathology in wild chimpanzees infected with SIVcpz" href="/nature/journal/v460/n7254/abs/nature08200.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08200.html" title="Increased mortality and AIDS-like immunopathology in wild chimpanzees infected with SIVcpz">Full Text</a>
| <a title="PDF (726K) of Increased mortality and AIDS-like immunopathology in wild chimpanzees infected with SIVcpz" href="/nature/journal/v460/n7254/pdf/nature08200.pdf"><abbr title="Portable Document Format">PDF</abbr> (726K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08200.html" title="Supplementary information: Increased mortality and AIDS-like immunopathology in wild chimpanzees infected with SIVcpz">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Increased mortality and AIDS-like immunopathology in wild chimpanzees infected with SIVcpz" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-10.html">Editor's summary</a> | <a href="/nature/journal/v460/n7254/full/460470a.html">News and Views by Weiss&nbsp;&amp;&nbsp;Heeney</a></p><hr class="separator" />
<h4><span class="atl">Regulation of the innate immune response by threonine-phosphatase of Eyes absent</span> <span class="page"><abbr title="page">p</abbr>520</span></h4><p class="abs">Innate immunity is stimulated by non-microbial danger signals, as well as by viral or bacterial components. The threonine-phosphatase activity of the protein Eyes absent 4 (EYA4), originally identified as a co-transcription factor, is now shown to stimulate the innate immune response to the undigested DNA from apoptotic cells.</p><p class="aug">Yasutaka Okabe,
			Teruyuki Sano
						&amp;
			Shigekazu Nagata</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08138</span></p><p class="links"><a title="Regulation of the innate immune response by threonine-phosphatase of Eyes absent" href="/nature/journal/v460/n7254/abs/nature08138.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08138.html" title="Regulation of the innate immune response by threonine-phosphatase of Eyes absent">Full Text</a>
| <a title="PDF (690K) of Regulation of the innate immune response by threonine-phosphatase of Eyes absent" href="/nature/journal/v460/n7254/pdf/nature08138.pdf"><abbr title="Portable Document Format">PDF</abbr> (690K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08138.html" title="Supplementary information: Regulation of the innate immune response by threonine-phosphatase of Eyes absent">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Regulation of the innate immune response by threonine-phosphatase of Eyes absent" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-11.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Helical extension of the neuronal SNARE complex into the membrane</span> <span class="page"><abbr title="page">p</abbr>525</span></h4><p class="abs">In neurotransmission, synaptic vesicles fuse with the membrane of nerve cells to release neurotransmitter content into the synaptic cleft. This process requires the assembly of several members of the SNARE protein family. Here, the X-ray structure of a neuronal SNARE complex is solved, providing insight into how these proteins assemble.</p><p class="aug">Alexander Stein,
			Gert Weber,
			Markus C. Wahl
						&amp;
			Reinhard Jahn</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08156</span></p><p class="links"><a title="Helical extension of the neuronal SNARE complex into the membrane" href="/nature/journal/v460/n7254/abs/nature08156.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08156.html" title="Helical extension of the neuronal SNARE complex into the membrane">Full Text</a>
| <a title="PDF (687K) of Helical extension of the neuronal SNARE complex into the membrane" href="/nature/journal/v460/n7254/pdf/nature08156.pdf"><abbr title="Portable Document Format">PDF</abbr> (687K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08156.html" title="Supplementary information: Helical extension of the neuronal SNARE complex into the membrane">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Helical extension of the neuronal SNARE complex into the membrane" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-12.html">Editor's summary</a></p><hr class="separator" />
<h4><span class="atl">Modulation of microRNA processing by p53</span> <span class="page"><abbr title="page">p</abbr>529</span></h4><p class="abs">Disruption of the tumour suppressor p53, a transcriptional activator with numerous growth-suppressive targets, is a fundamental event in the development of most cancers. Here, p53 is found to have another function, independent of its role in transcription, enhancing the earliest processing step of precursors for microRNAs that regulate genes affecting cell growth.</p><p class="aug">Hiroshi I. Suzuki,
			Kaoru Yamagata,
			Koichi Sugimoto,
			Takashi Iwamoto,
			Shigeaki Kato
						&amp;
			Kohei Miyazono</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08199</span></p><p class="links"><a title="Modulation of microRNA processing by p53" href="/nature/journal/v460/n7254/abs/nature08199.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08199.html" title="Modulation of microRNA processing by p53">Full Text</a>
| <a title="PDF (603K) of Modulation of microRNA processing by p53" href="/nature/journal/v460/n7254/pdf/nature08199.pdf"><abbr title="Portable Document Format">PDF</abbr> (603K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08199.html" title="Supplementary information: Modulation of microRNA processing by p53">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="Modulation of microRNA processing by p53" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-13.html">Editor's summary</a> | <a href="/nature/journal/v460/n7254/full/460466a.html">News and Views by Toledo&nbsp;&amp;&nbsp;Bardot</a></p><hr class="separator" />
<h4><span class="atl">The CREB coactivator CRTC2 links hepatic ER stress and fasting gluconeogenesis</span> <span class="page"><abbr title="page">p</abbr>534</span></h4><p class="abs">In fasted mammals, circulating pancreatic glucagon stimulates gluconeogenesis in the liver in part through the CREB coactivator CRTC2. The production of glucose by the liver is increased in obesity, reflecting chronic increases in endoplasmic reticulum (ER) stress that promote insulin resistance. Here, CRTC2 is shown to function as a dual sensor for fasting signals and ER stress, thereby contributing to glucose homeostasis.</p><p class="aug">Yiguo Wang,
			Liliana Vera,
			Wolfgang H. Fischer
						&amp;
			Marc Montminy</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08111</span></p><p class="links"><a title="The CREB coactivator CRTC2 links hepatic ER stress and fasting gluconeogenesis" href="/nature/journal/v460/n7254/abs/nature08111.html">First paragraph</a> | <a class="fulltext" href="/nature/journal/v460/n7254/full/nature08111.html" title="The CREB coactivator CRTC2 links hepatic ER stress and fasting gluconeogenesis">Full Text</a>
| <a title="PDF (614K) of The CREB coactivator CRTC2 links hepatic ER stress and fasting gluconeogenesis" href="/nature/journal/v460/n7254/pdf/nature08111.pdf"><abbr title="Portable Document Format">PDF</abbr> (614K)</a> | <a href="/nature/journal/v460/n7254/suppinfo/nature08111.html" title="Supplementary information: The CREB coactivator CRTC2 links hepatic ER stress and fasting gluconeogenesis">Supplementary information</a></p><p class="seealso"><span class="seealso">See also: </span><a title="The CREB coactivator CRTC2 links hepatic ER stress and fasting gluconeogenesis" class="fulltext" href="/nature/journal/v460/n7254/edsumm/e090723-14.html">Editor's summary</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="cg">Corrigendum</h3><h4><span class="atl">Life without a wall or division machine in <i>Bacillus subtilis</i></span> <span class="page"><abbr title="page">p</abbr>538</span></h4><p class="aug">M. Leaver,
			P. Dom&iacute;nguez-Cuevas,
			J. M. Coxhead,
			R. A. Daniel
						&amp;
			J. Errington</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nature08232</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/nature08232.html" title="Life without a wall or division machine in Bacillus subtilis">Full Text</a>
| <a title="PDF (36K) of Life without a wall or division machine in Bacillus subtilis" href="/nature/journal/v460/n7254/pdf/nature08232.pdf"><abbr title="Portable Document Format">PDF</abbr> (36K)</a></p><div class="hr-blank"><!-- --></div><hr /></div>
<div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 xmlns="http://www.w3.org/1999/xhtml" id="naturejobs">Naturejobs</h3>Careers and Recruitment<h4 xmlns="http://www.w3.org/1999/xhtml"><span class="atl">Big opportunities in a small world</span> <span class="page"><abbr title="page">p</abbr>540</span></h4><p xmlns="http://www.w3.org/1999/xhtml" class="abs">Nanomedicine has started to gather momentum in recent years, and cutting-edge jobs abound for those with the right training. Virginia Gewin takes a closer look.</p><p xmlns="http://www.w3.org/1999/xhtml" class="aug">Virginia Gewin</p><p xmlns="http://www.w3.org/1999/xhtml" class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/nj7254-540a</span></p><p xmlns="http://www.w3.org/1999/xhtml" class="links"><a class="fulltext" href="/naturejobs/2009/090723/full/nj7254-540a.html" title="Big opportunities in a small world">Full Text</a>
| <a title="PDF (977K) of Big opportunities in a small world" href="/naturejobs/2009/090723/pdf/nj7254-540a.pdf"><abbr title="Portable Document Format">PDF</abbr> (977K)</a></p><div class="hr-blank"><!-- --></div><hr /></div><div class="container"><a href="#top" class="backtotop">Top<span class="hidden"> of page</span></a><h3 id="fut">Futures</h3><h4><span class="atl">The problem of Junior</span> <span class="page"><abbr title="page">p</abbr>544</span></h4><p class="abs">Parent trap.</p><p class="aug">Swapna Kishore</p><p class="doi"><span class="doi"><abbr title="Digital Object Identifier">doi</abbr>:10.1038/460544a</span></p><p class="links"><a class="fulltext" href="/nature/journal/v460/n7254/full/460544a.html" title="The problem of Junior">Full Text</a>
| <a title="PDF (614K) of The problem of Junior" href="/nature/journal/v460/n7254/pdf/460544a.pdf"><abbr title="Portable Document Format">PDF</abbr> (614K)</a></p><div class="hr-blank"><!-- --></div><hr /></div></div><div id="journalnav" class="issue"><h1 class="hidden">Main navigation</h1><!-- whitespace removed to deal with IE5.0 PC bug. -->
<map title="main journal navigation" id="main-journal-nav" class="journal-nav"><ul><li class="jn-home"><a href="/nature/">Journal home</a><!--<ul class="subnav"><li class="jn-about-cover"><a href="/nature_CSS/about_cover.html">About the cover</a></li></ul>--></li><li class="jn-aop"><a href="/nature/journal/vaop/ncurrent/index.html">Advance online publication</a><ul class="subnav"><li class="jn-about-aop"><a href="/authors/author_services/about_aop.html">About AOP</a></li></ul></li><li class="jn-issue"><a href="/nature/current_issue"> Current issue</a></li><li class="jn-news"><a href="/news/">Nature News</a></li><li class="jn-archive"><a href="/nature/archive/index.html"> Archive</a></li></ul></map><map title="supplementary journal navigation" id="supplementary-journal-nav" class="journal-nav supplementary">
	<ul>
		<li class="jn-supplements"><a href="/nature/supplements/">Supplements</a>
		<ul class="subnav"><li class="jn-insights"><a href="/nature/supplements/insights/">Insights</a></li><li class="jn-outlooks"><a href="/nature/supplements/outlooks/">Outlooks</a></li><li class="jn-collections"><a href="/nature/supplements/collections/">Collections</a></li><!--<li class="jn-custom-publications"><a href="/nature/supplements/custom/">Custom Publications</a></li><li class="jn-tech-features"><a href="/nature/supplements/tech/">Technology Features</a></li>--></ul>
		</li>

		<li class="jn-web-focuses"><a href="/nature/focus/">Web focuses</a><ul class="subnav"><li class="jn-biological-sciences"><a href="/nature/focus/index_biologicalsciences.html">Biological sciences</a></li><li class="jn-earth-environment"><a href="/nature/focus/index_earthandenvironment.html">Earth and environment</a></li><li class="jn-horizons"><a href="/nature/focus/horizons/">Horizons</a></li><li class="jn-physical-sciences"><a href="/nature/focus/index_physicalsciences.html">Physical sciences</a></li><li class="jn-science-politics"><a href="/nature/focus/index_scienceandpolitics.html">Science and politics</a></li><li class="jn-science-culture"><a href="/nature/focus/index_scicult.html">Science, art and culture</a></li></ul>
		</li>

		<!--<li class="jn-web-forums"><a href="/nature/forums/">Web forums</a><ul class="subnav"><li class="jn-npgsub-4"><a href="/nature/forums/archive/scicom.html">Science communication</a></li><li class="jn-npgsub-3"><a href="/nature/forums/archive/scisoc.html">Science in society</a></li><li class="jn-npgsub-2"><a href="/nature/forums/archive/biosci.html">Biological sciences</a></li><li class="jn-npgsub-1"><a href="/nature/forums/archive/physci.html">Physical sciences</a></li></ul>
		</li>-->
		<li class="jn-multimedia"><a href="/nature/multimedia/">Multimedia</a><ul class="subnav"><li class="jn-podcast"><a href="/nature/podcast/">Nature podcast</a></li><li class="jn-video"><a href="/nature/videoarchive/">Video streaming</a></li><li class="jn-google"><a href="/nature/multimedia/googleearth">Google earth</a></li><li class="jn-blogs"><a href="/blogs/index.html">Blogs</a></li></ul>
		</li>
		<li class="jn-about-journal"><a href="/nature/about/">About the journal</a>
		
		<ul class="subnav">
		<li class="jn-contact-journal">
		<a href="/nature/about/contact/">Contact the journal</a>
		</li>
		<li class="jn-about-editors">
		<a href="/nature/about/editors/">About the editors</a>
		</li>
		<li class="jn-nature-family">
		<a href="/nature/about/family/">Nature family of journals</a>
		</li>
		<li class=""><a href="/nature/history/">History of the Journal <span class="i">Nature</span></a></li>
		<li class="jn-for-advertisers">
		<a href="http://npg.nature.com.ezproxy.lib.utexas.edu/media/nature/index.html">For advertisers</a>
		</li>
		<li class="jn-for-librarians">
		<a href="/libraries/">For librarians</a>
		</li>
		</ul>
		
		</li>
		
		<li class="jn-for-authors-and-referees"><a href="/nature/authors/">For authors and referees</a><ul class="subnav"><li class="jn-guide-authors"><a href="/nature/authors/gta/">Formatting guide</a></li><li class="jn-publication-policies"><a href="/nature/authors/policy/">Publication policies</a></li><li class="jn-submissions"><a href="/nature/authors/submissions/">Submissions</a></li><li class="jn-for-referees"><a href="/nature/authors/referees/">For referees</a></li></ul>
		</li>
		<li class="jn-online-submission"><a href="/nature/authors/submissions/">Online submission</a></li><li class="jn-advertising"><a href="http://npg.nature.com.ezproxy.lib.utexas.edu/media/nature/index.html">Advertising</a></li><li class="jn-permissions-and-reprints"><a href="/reprints/">Reprints and permissions</a></li><li class="jn-help"><a href="/nature/awards/">Nature Awards</a></li><li class="jn-help"><a href="/natureconferences/">Nature Conferences</a></li><li class="jn-help"><a href="/nature/history/index.html">History of <span class="i">Nature</span></a></li><li class="jn-help"><a href="http://nature.custhelp.com/cgi-bin/nature.cfg/php/enduser/std_alp.php">Help</a></li></ul>
</map><h2 class="npg-resources">Gateways and databases</h2>
	<ul class="npg-resources">
		<li><a href="http://kb.psi-structuralgenomics.org">Structural Genomics Knowledgebase</a></li>
		<li><a href="http://www.natureasia.com/home.html">Asia gateway</a></li>
		<li><a href="http://www.cellmigration.org/">Cell Migration Gateway</a></li>
		<li><a href="http://www.functionalglycomics.org/">Functional Glycomics Gateway</a></li>
		<li><a href="http://www.nature.com.ezproxy.lib.utexas.edu/stemcells/">Nature Reports Stem Cells</a></li>
		<li><a href="http://network.nature.com.ezproxy.lib.utexas.edu/">Nature Network</a></li>
		<li><a href="http://www.neuroscience-gateway.org">Neuroscience Gateway</a></li>
		<li><a href="http://www.nature.com.ezproxy.lib.utexas.edu/omics/index.html">Omics gateway</a></li>
		<li><a href="http://pid.nci.nih.gov.ezproxy.lib.utexas.edu/">Pathway Interaction Database</a></li>
		<li><a href="http://www.nature.com.ezproxy.lib.utexas.edu/rnai/index.html">RNAi Gateway</a></li>
		<li><a href="http://www.signaling-gateway.org/">Signaling Gateway</a></li>

	</ul> 
<div id="global-subject-areas">
	<h2><span><abbr title="Nature Publishing Group">NPG</abbr> Journals</span></h2>	
	<h3 class="view">by Subject Area</h3>
		<ul class="category-list">
		<li><h4>Chemistry</h4>
            <ul>
                <li><a href="/chemistry/index.html">Chemistry</a></li>
                <li><a href="/drugdisc/index.html">Drug discovery</a></li>
		<li><a href="/biotech/index.html">Biotechnology</a></li>
		<li><a href="/materials/index.html">Materials</a></li>
		<li><a href="/protometh/index.html">Methods &amp; Protocols</a></li>
            </ul>
        </li>        <li><h4>Clinical Practice &amp; Research</h4>
            <ul>
                <li><a href="/cancer/index.html">Cancer</a></li>
                <li><a href="/cardio/index.html">Cardiovascular medicine</a></li>
                <li><a href="/dentistry/index.html">Dentistry</a></li>
                <li><a href="/endocrinology/index.html" title="">Endocrinology</a></li>
                <li><a href="/gastrohep/index.html">Gastroenterology &amp; Hepatology</a></li>
		<li><a href="/protometh/index.html">Methods &amp; Protocols</a></li>
                <li><a href="/pathology/index.html">Pathology &amp; Pathobiology</a></li>
                <li><a href="/urology/index.html">Urology</a></li>

            </ul>
        </li>        <li><h4>Earth &amp; Environment</h4>
            <ul>
                <li><a href="/earthsciences/index.html">Earth sciences</a></li>
                <li><a href="/evoeco/index.html">Evolution &amp; Ecology</a></li>
	
            </ul>
        </li>        <li><h4>Life sciences</h4>
            <ul>
		<li><a href="/biotech/index.html">Biotechnology</a></li>
                <li><a href="/cancer/index.html">Cancer</a></li>
                <li><a href="/development/index.html">Development</a></li>
                <li><a href="/drugdisc/index.html">Drug discovery</a></li>
                <li><a href="/evoeco/index.html">Evolution &amp; Ecology</a></li>
                <li><a href="/genetics/index.html">Genetics</a></li>
                <li><a href="/immuno/index.html">Immunology</a></li>
                <li><a href="/medicalresearch/index.html">Medical research</a></li>
				<li><a href="/protometh/index.html">Methods &amp; Protocols</a></li>
                <li><a href="/micro/index.html">Microbiology</a></li>
                <li><a href="/molcellbio/index.html">Molecular cell biology</a></li>
                <li><a href="/neurosci/index.html">Neuroscience</a></li>
                <li><a href="/pharma/index.html">Pharmacology</a></li>
                <li><a href="/sysbio/index.html">Systems biology</a></li>
            </ul>
        </li>        <li><h4>Physical sciences</h4>
            <ul>
				<li><a href="/physics/index.html">Physics</a></li>
				<li><a href="/materials/index.html">Materials</a></li>
            </ul>
        </li>	</ul>
	
	<h3 class="view"><a href="/siteindex/index.html" title="View A to Z list of Nature Publishing Group journals">by A - Z Index</a></h3>
</div></div></div><div id="extranav"><h1 class="hidden">Extra navigation</h1><span class="page-header-spacer">
			.</span><div class="subscribe-to-nature">
<p>subscribe to
<span class="journalname">Nature</span><br /></p><br /><a href="https://secure-nature-com.ezproxy.lib.utexas.edu/store/svc/campaign?prod=NATURE&amp;text=EW0708B00&amp;src=null" title="subscribe to nature" class="subscribe-button">Subscribe</a></div>

<!-- ============= Old code

<div class="subscribe-to-nature">
<script type="text/javascript">
-->
<!--//--><!--<![CDATA[//>--><!--
document.write ('<ilayer id="layer1" visibility="hidden" width="158" height="60"></ilayer>');
document.write ('<nolayer>');
document.write ('<iframe src="http://ad.doubleclick.net/adi/nature.com/tocpage;type=;artid=index;pos=top;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;dcopt=ist;sz=158x60;ord=' + ordval + '?" width="158" height="60" marginwidth="0" marginheight="0" frameborder="0" scrolling="no">');
document.write ('<a href="http://ad.doubleclick.net/jump/nature.com/tocpage;type=;artid=index;pos=top;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!ie4;abr=!ie5;sz=158x60;ord=' + ordval + '?">');
document.write ('<img src="http://ad.doubleclick.net/ad/nature.com/tocpage;type=;artid=index;pos=top;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!ie4;abr=!ie5;sz=158x60;ord=' + ordval + '?" style="max-width:158px; height:60px; border:0;" /></a></iframe>');
document.write ('</nolayer>');
//--><!--<!]]>-->
<!--
</script> 
<noscript>
<div><a href="http://ad.doubleclick.net/jump/nature.com/tocpage;type=;artid=index;pos=top;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!NN2;sz=158x60;tile=1;ord=07893195?"><img src="http://ad.doubleclick.net/ad/nature.com/tocpage;type=;artid=index;pos=top;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!NN2;sz=158x60;tile=1;ord=07893195?" style="max-width:158px; height:60px; border:0;" alt="Advertisement" /></a></div>
</noscript></div>
-->
<div class="reg-rec">
	<h2 class="hidden">Journal services</h2><!-- necesssary for correct descending order heading hierarchy - do not remove! -->
	<ul><!-- whitespace removed to deal with IE bug --><li class="first"><a href="/nams/svc/myaccount/save/ealert?list_id=1" class="e-alerts">Sign up for e-alerts</a></li><li><a href="/librec/svc/request/makeProdRequest?id=nature" class="recommend">Recommend to your library</a></li><li><a href="/nature/newsfeeds.html" class="newsfeeds">Live newsfeeds</a></li><li class="last"><a href="http://news.google.com/news?sourceid=navclient-ff&amp;ie=UTF-8&amp;rls=GGGL%2CGGGL%3A2005-09%2CGGGL%3Aen&amp;tab=wn&amp;scoring=d&amp;q=%22journal+Nature%22+%7C+%22Nature+magazine%22+%7C+%22magazine+Nature%22+%7C%22edition+of+Nature%22&amp;btnG=Search+News" class="inthenews"><span class="journalname">Nature</span> in the news <br />(external link)</a></li></ul>
</div>

<div class="reg-rec"><ul class="toc"><li class="last"><a class="japanese" href="/nature/journal/v460/n7254/index.html?lang=ja">Japanese table of contents</a></li>

			<li class="javascript-bookmark"><script type="Javascript"><!--//--><![CDATA[//><!-- 
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) { 

var url="http://www.nature.com.ezproxy.lib.utexas.edu/nature_CSS/current_issue"; 
var title="Current Issue of Nature"; 
var txt = "Add current issue to favourites"; 

document.write('<a href="javascript:window.external.AddFavorite(url,title);" '); 
document.write('onMouseOver="window.status='); 
document.write('txt; return true '); 
document.write('"onMouseOut=" window.status='); 
document.write("' '; return true "); 
document.write('" class="bookmark">'+ txt + '</a>'); 
} 
//--><!]]> 
</script></li></ul></div><div id="natpav" class="box">
    <h2 class="natpav"><a href="/openinnovation" title="Visit the Nature.com Open Innovation Pavilion"><span class="first">Open Innovation Challenges</span></a></h2>
    
	<div class="box-item">
        <ul class="chal-list">
	
   			<li>
			                <h3><a href="/openinnovation" title="Protect Enzyme from In Planta Degradation">Protect Enzyme from In Planta Degradation</a></h3>
				<img src="/openinnovation/challenge/images/8254978.jpg" alt="" />
					<ul class="chal-meta">
						<li>Deadline: Jul 15 2009</li>
						<li>Reward: <span class="award">
                                                  						  $20,000 USD
						  </span></li>
					</ul>
				<p>
                              		                			           A proposal for stable expression of an enzyme in corn seed is desired.
		                                           </p>
            </li>
   			<li>
			                <h3><a href="/openinnovation" title="Fast Growth of Transformed Soybean Shoots">Fast Growth of Transformed Soybean Shoots</a></h3>
				<img src="/openinnovation/challenge/images/8124125.jpg" alt="" />
					<ul class="chal-meta">
						<li>Deadline: Jul 15 2009</li>
						<li>Reward: <span class="award">
                                                  						  $10,000 USD
						  </span></li>
					</ul>
				<p>
                              		                			           A method for accelerating growth of soybean shoots is desired.
		                                           </p>
            </li>
   
        </ul>
	    <ul class="more">
			<li><a href="/openinnovation" title="">More Challenges</a></li>
			<li class="powered"><div><span>Powered by:</span><a href="http://www.innocentive.com"><img src="/openinnovation/images/innocentive_logo_small.gif" alt="InnoCentive" /></a></div></li>
	   </ul>
		
    </div>
    

</div>
 



																					
<div class="box" id="natjob">
	<h2 class="natjob"><a href="/naturejobs/"><span class="first">nature</span><span class="hidden"> </span><span class="second">jobs</span></a></h2>	<ul class="natjob">
				<li><h3 class="first"><a href="http://www.nature.com.ezproxy.lib.utexas.edu/naturejobs/science/jobs/101312-Principal-Scientist-for-Development-of-Solid-Dosage-Forms">Principal Scientist for Development of Solid Dosage Forms</a></h3>
			<ul>
				<li>Novo Nordisk</li>
				<li>Bagsværd, Denmark</li>
			</ul>
		</li>	
				<li><h3><a href="http://www.nature.com.ezproxy.lib.utexas.edu/naturejobs/science/jobs/99970-Neuropathology-Assistant-or-Associate-Research-Professor">Neuropathology Assistant or Associate Research Professor</a></h3>
			<ul>
				<li>Indiana University School of Medicine</li>
				<li>Indiana, USA</li>
			</ul>
		</li>	
			</ul>

	<div class="natjobmore"><a href="/naturejobs/science/jobs">More science jobs</a></div>
	<div class="natjobmore"><a href="/naturejobs/science/jobs/new">Post a job for free</a></div>
</div>
<div id="natprod" class="box"><form method="post" action="http://www.biocompare.com/nature/search.asp"><h2 class="natprod"><a href="http://www.biocompare.com/nature/"><span class="first">nature</span><span class="hidden"> </span><span class="second">products</span></a></h2><div class="natprodmore"><label for="buyerguide" class="hidden">enter buyers guide search text here</label><input id="buyerguide" type="text" name="search" /><br /><input type="submit" class="button" value="search buyers guide" /></div></form></div>		<div class="ad-vert">ADVERTISEMENT<br />
<script type="text/javascript">
<!--//--><![CDATA[//><!--
document.write ('<ilayer id="layer2" visibility="hidden" width="160" height="600"></ilayer>');
document.write ('<nolayer>');
document.write ('<iframe src="http://ad.doubleclick.net/adi/nature.com/tocpage;type=;artid=index;pos=right;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;;sz=160x600;ord=' + ordval + '?" width="160" height="600" marginwidth="0" marginheight="0" frameborder="0" scrolling="no">');
document.write ('<a href="http://ad.doubleclick.net/jump/nature.com/tocpage;type=;artid=index;pos=right;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!ie4;abr=!ie5;sz=160x600;ord=' + ordval + '?">');
document.write ('<img src="http://ad.doubleclick.net/ad/nature.com/tocpage;type=;artid=index;pos=right;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!ie4;abr=!ie5;sz=160x600;ord=' + ordval + '?" style="max-width:160px; height:600px; border:0;" /></a></iframe>');
document.write ('</nolayer>');
//--><!]]>
</script> 
<noscript> 
<div><a href="http://ad.doubleclick.net/jump/nature.com/tocpage;type=;artid=index;pos=right;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;abr=!NN2;sz=160x600;ord=07893195?"><img src="http://ad.doubleclick.net/ad/nature.com/tocpage;pos=right;abr=!NN2;sz=160x600;ord=07893195?"   style="max-width:160px; height:600px; border:0;" alt="Advertisement" /></a></div>
</noscript></div></div></div></div>	

	





<div class="cleardiv"><!-- --></div>

	<div class="constrain-outer"><div class="constrain">

		
			<p class="back-to-top hidden"><a href="#top" title="Return to the top of this page">Top</a></p>
	
	<div id="ftr" class="footer">
					<ul id="footer-journal">
				<li class="journal-name">Nature</li>				<li class="issn"><abbr title="International Standard Serial Number">ISSN</abbr><span class="hidden">:</span> 0028-0836</li>				<li class="eissn"><abbr title="Electronic International Standard Serial Number">EISSN</abbr><span class="hidden">:</span> 1476-4687</li>											</ul>
			<span class="cleardiv"><!-- --></span>
				
		<div class="footer-inner">
			
		<div class="baseline-wrapper">
													<ul class="footer-links baseline first">
									<li><a href="/npg/">About <abbr title='Nature Publishing Group'>NPG</abbr></a></li>
														<li><a href="/npg_/contact/">Contact <abbr title='Nature Publishing Group'>NPG</abbr></a></li>
														<li><a href="/webfeeds/"><abbr title='RDF Site Summary'>RSS</abbr> web feeds</a></li>
														<li><a href="/help/">Help</a></li>
													</ul>
							<ul class="footer-links baseline">
									<li><a href="/info/privacy.html">Privacy policy</a></li>
														<li><a href="/info/legal_notice.html">Legal notice</a></li>
														<li><a href="/info/accessibility_statement.html">Accessibility statement</a></li>
													</ul>
							<ul class="footer-links baseline last">
									<li><a href="/news/">Nature News</a></li>
														<li><a href="/naturejobs/">Nature<span class='hidden'> </span>jobs</a></li>
														<li><a href="http://www.natureasia.com/">Nature Asia</a></li>
														<li><a href="/scitable/">Nature Education</a></li>
													</ul>
					
						<form action="/search/executeSearch" method="get" class="search-form baseline">
				<fieldset>
					<label for="footer-search">Search:</label>
					<input type="text" id="footer-search" name="sp-q" value="" class="text" />
					<input type="hidden" name="sp-p" value="all" />
					<input type="hidden" name="sp-c" value="25" />
					<input type="hidden" name="sp-m" value="0" />
					<input type="hidden" name="sp-s" value="date_descending" />
					<input type="hidden" name="include-collections" value="journals_nature,crawled_content" />
					<input type="hidden" name="exclude-collections" value="journals_palgrave,lab_animal" />
					<input type="submit" name="search" value="go" class="button" />
				</fieldset>
			</form>
					</div>
		
		<span class="cleardiv"><!-- --></span>
		
					<div id="footer-copyright">
				<ul class="logo">
					<li>			<a href="/info/copyright_statement.html" title="" class="class java.util.HashMap">&#169; 2009 Nature Publishing Group, a division of Macmillan Publishers Limited. All Rights Reserved.</a>
	</li>					<li>partner of <a href="/info/partners.html">AGORA, HINARI, OARE, INASP, CrossRef and COUNTER</a></li>				</ul>
			</div>
				</div>
	</div>

	</div></div><!-- close constrain divs -->

	

<!--extra code for 160 x 600 ad-->
<script type="text/javascript">
<!--//--><![CDATA[//><!--
document.writeln ('<layer src="http://ad.doubleclick.net/adl/nature.com/tocpage;pos=right;type=;artid=index;pos=right;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;sz=160x600;ord=' + ordval + '?" visibility="hidden" style="max-width:160px; height:600px;" onload="moveToAbsolute(layer2.pageX,layer2.pageY);clip.height=600;clip.width=160;visibility=\'show\';"></layer>');
//--><!]]>
</script>
<!--end of extra code--><!--extra code for 158 x 60 ad-->
<script type="text/javascript">
<!--//--><![CDATA[//><!--
document.writeln ('<layer src="http://ad.doubleclick.net/adl/nature.com/tocpage;type=;artid=index;pos=top;issue=7254;webfo=;prod=;natco=;natcl=;subco=;chaco=;keywd=;sz=158x60;ord=' + ordval + '?" visibility="hidden" style="max-width:158px; height:60px;" onload="moveToAbsolute(layer1.pageX,layer1.pageY);clip.height=60;clip.width=158;visibility=\'show\';"></layer>');
//--><!]]>
</script>
<!--end of extra code-->
<!-- super body bottom -->
<!-- super javascript -->
																		
																								
						<script type="text/javascript" src="/super/scripts/jquery.js"></script>
								<script type="text/javascript" src="/common/scripts/jquery/plugins/baseline.jquery.js"></script>
								<script type="text/javascript" src="/common/scripts/global.baseline.js"></script>
								<script type="text/javascript" src="/super/scripts/tsedge/tsedge_instr-min.js"></script>
			

<script type="text/javascript"><!--//--><![CDATA[//><!--
(function($) {
	$('a.popup-this').bind('click', function() {
		window.open(this.href);
		return false;
	});
})(jQuery);
//--><!]]></script>



																																																																																																																																																																																																																																								
<!--[if IE 6]>
<![endif]-->
																																																																																																																																																																																																																																																																																																																																																																																																																																																																																



						<!-- webtrends Version: 8.6.0 -->
	<script src="/super/scripts/webtrends/webtrends.js" type="text/javascript"></script>
	<script type="text/javascript"><!--//--><![CDATA[//><!--
		var _tag=new WebTrends();
		_tag.dcsGetId();
	//--><!]]></script>
	<script type="text/javascript"><!--//--><![CDATA[//><!--
		// Add custom parameters here.
		// _tag.DCSext.param_name=param_value;
		_tag.dcsCollect();
	//--><!]]></script>
	<noscript>
		<div><img alt="" id="DCSIMG" width="1" height="1" src="http://statse.webtrendslive.com/dcs0zztfg00000s969s37qoal_2f6z/njs.gif?dcsuri=/nojavascript&amp;WT.js=No&amp;WT.tv=8.6.0" /></div>
	</noscript>
	<script type="text/javascript"><!--//--><![CDATA[//><!--
	(function($) {
		$(function() {
			var applyParams = function(wt) {
				var params = [];
				for (var prop in wt) {
					params.push(prop);
					params.push(wt[prop]);
				}
				_tag.dcsMultiTrack.apply(_tag, params);
			};
			
			$('a[href*="/rss"]').each(function() {
				if (this.href.match(/\/rss\/?(\?.*)?$/)) {
					$(this).bind('click', function() {
						var wt = {};
						wt['DCS.dcsuri'] = this.pathname ? this.pathname.indexOf('/') !== 0 ? '/' + this.pathname : this.pathname : '/';
						wt['DCS.dcsqry'] = this.search ? this.search.substring(1) : '';
						wt['WT.ti'] = 'Download:' + (this.hostname ? this.hostname.split(':')[0] : '') + wt['DCS.dcsuri'] + (wt['DCS.dcsqry'] ? '?' + wt['DCS.dcsqry'] : '');
						wt['WT.dl'] = '20';
						applyParams(wt);
					});
				}
			});

			$('div[class*="adunit-"] a').bind('click', function() {
				var classes = $(this).parents('div[class*="adunit-"]:first').attr('class');
				if (classes) {
					var match = /(^|\s)adunit-([^\s]+)/.exec(classes);
					_tag.dcsMultiTrack('WT.ac', (match) ? match[2] : '');
				}
			});
		});	
	})(jQuery);
	//--><!]]></script>
	<!-- end webtrends Version: 8.6.0 -->
</body></html>