Hi i am new to jquery and i need some help with this image gallery
http://spaceforaname.com/galleryview#demos
i just get a blank page, all the js scripts are referenced ok, so i cant see why its not working??
my code is:
<html>
<head runat="server">
<title></title>
<script src="jquery-1.4.2.min.js" type="text/javascript"></script>
<script src="jquery.galleryview-2.1.1.js" type="text/javascript"></script>
<script src="jquery.easing.1.3.js" type="text/javascript"></script>
<script src="jquery.timers-1.2.js" type="text/javascript"></script>
<link href="galleryview.css" rel="stylesheet" type="text/css" />
<script language="javascript" type="text/javascript">
$('#photos').galleryView({
panel_width: 800,
panel_height: 300,
frame_width: 100,
frame_height: 100
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<div id="photos" class="galleryview">
<div class="panel">
<img src="images/photo1.jpg" />
<div class="panel-overlay">
<h2>Eden</h2>
<p>Photo by <a href="http://www.sxc.hu/profile/emsago" target="_blank">emsago</a>.
View full-size photo <a href="http://www.sxc.hu/photo/152865" target="_blank">here</a>.</p>
</div>
</div>
<ul class="filmstrip">
<li>
<img src="images/photo1.jpg" />
</li>
<li>
<img src="images/photo2.jpg" />
</li>
</ul>
</div>
</div>
</form>
</body>
</html>