There may be other errors, but right now I see:
1) Your reference to jQuery near the top of your page is incorrect. It should be:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
The correction is in red. Also, you have another reference to jQuery again further down on your page, which is redundant and potentially problematic, and should be removed:
Code:
<script type="text/javascript" src="jquery.min.js"></script>
2) The references to all your images inside touch gallery are broken, ie:
Code:
<li><img src="rad1.jpg" /></li>
In other words, rad1.jpg doesn't exist on the server.
Bookmarks