// 2007.01.01
// Bryan Daniels
// A little script to add collapsable text content that you can easily add to.
// (Make sure 'internalname' is set to something different than other objects on the page)
// (Be careful with quotes)

var name = "Publications";
var internalname = "publications";
var content = new Array();

content[0] = "<a href=http://mypage.iu.edu/~rdbeer/Papers/CTSNSatProb.pdf> Saturation Probabilities of Continuous-Time Sigmoidal Networks.</a> Randall D. Beer, Bryan C. Daniels.  Submitted."

content[1] = "<a href=http://link.aps.org/doi/10.1103/PhysRevE.80.040901>Discontinuities at the DNA supercoiling transition.</a> Bryan C. Daniels, Scott Forth, Maxim Y. Sheinin, Michelle D. Wang, James P. Sethna.  Phys. Rev. E. <b>80</b>, 040901(R) (2009). <a href=http://arxiv.org/abs/0811.3645>arXiv version</a>.  <a href='Plectoneme_Poster_BS_Meeting_2009.pdf'>Poster</a><small> [pdf]</small> for 2009 Biophysical Society Meeting. <a href='MarchMeeting2009.pdf'>Presentation</a><small> [pdf]</small> for 2009 APS March Meeting."

content[2] = "<a href='http://dx.doi.org/10.1049/iet-syb.2008.0167'>Statistical properties of multistep enzyme-mediated reactions.</a> Wiet H. de Ronde, Bryan C. Daniels, Andrew Mugler, Nikolai A. Sinitsyn, and Ilya Nemenman.  IET Systems Biology <b>3</b>, 429 (2009). <a href=http://arxiv.org/abs/0811.3283>arXiv version</a>. Andrew's <a href='qbio09_poster_mm.pdf'>poster</a><small> [pdf]</small> for 2009 <a href=http://cnls.lanl.gov/q-bio/>q-bio Conference</a>."

content[3] = "<a href=http://dx.doi.org/doi:10.1016/j.copbio.2008.06.008>Sloppiness, robustness, and evolvability in systems biology.</a> Bryan C. Daniels, Yan-Jiun Chen, James P. Sethna, Ryan N. Gutenkunst, and Christopher R. Myers. Current Opinion in Biotechnology <b>19</b>, 389 (2008). <a href=http://arxiv.org/abs/0805.2628>arXiv version</a>.  <a href='q-bio Poster.pdf'>Poster</a><small> [pdf]</small> for 2008 <a href=http://cnls.lanl.gov/q-bio/>q-bio Conference</a>."

content[4] = "<a href=http://link.aps.org/doi/10.1103/PhysRevLett.100.148301>Abrupt Buckling Transition Observed during the Plectoneme Formation of Individual DNA Molecules.</a> Scott Forth, Christopher Deufel, Maxim Y. Sheinin, Bryan Daniels, James P. Sethna, and Michelle D. Wang. Phys. Rev. Lett. <b>100</b>, 148301 (2008)."

content[5] = "<a href=http://go.owu.edu/~physics/StudentResearch/2005/BryanDaniels/>Synchronization of Globally Coupled Nonlinear Oscillators: The Rich Behavior of the Kuramoto Model.</a>&nbsp; Website and paper for senior project at Ohio Wesleyan University."

content[6] = "<a href=http://link.aip.org/link/?JAPIAU/97/10A510/1>Absence of Kondo lattice coherence effects in Ce0.6La0.4Pb3: A magnetic field study.</a> Richard Pietri, Costel R. Rotundu, Bohdan Andraka, Bryan C. Daniels, and Kevin Ingersent. J. Appl. Phys. <b>97</b>, 10A510 (2005)."

content[7] = '<a href="http://www.phys.ufl.edu/REU/2004/reports/daniels.pdf">Using NRG to solve quantum impurity models for heavy-fermion systems.</a><small> [pdf]</small> Paper for University of Florida Summer 2004 REU program.'

content[8] = '<a href="http://prola.aps.org/abstract/PRE/v67/i2/e026216">Synchronization of Coupled Rotators: Josephson Junction Ladders and the Locally-Coupled Kuramoto Model.</a> B. C. Daniels, S. T. M. Dissanayake, and B. R. Trees. Phys. Rev. E <b>67</b>, 026216 (2003).'




// The rest of this file will usually be left unchanged.
// 7.31.2009 added width:600px

var len = content.length;

document.write('<div id="' + internalname + 'bar"> <a href="javascript:toggle_visibility(\'' + internalname + '\');"><img src="plus.png" style="border: 0px solid ; width: 13px; height: 13px;"></a> <a href="javascript:toggle_visibility(\'' + internalname + '\');">' + name + '</a></div><div id="' + internalname + '" style="display: none;"> <a href="javascript:toggle_visibility(\'' + internalname + '\');"><img src="minus.png" style="border: 0px solid ; width: 13px; height: 13px;"></a> <a href="javascript:toggle_visibility(\'' + internalname + '\');">' + name + ':</a><br><div style="margin-left: 40px; width:600px">');

for (var i = 0; i < len; i++){
	document.write('<br><table style="text-align: left; height: 1px;" border="0" cellpadding="0" cellspacing="0"><tbody><tr><td style="vertical-align: top;"><img src="blank_small.png" style="width: 13px; height: 13px;"> <br></td><td style="vertical-align: top;">' + content[i] + '<br></td></tr></tbody></table>');
	}

document.write('</div></div>')
