I was wondering why my code isn't working, normally the first image should be displayed on my screen but I don't know what it might be, my css is prefixed, and should normally work with jquery.
<script>
(document).ready(function(){
var photoArray["p/2012/03/73133.jpg","p/2013/03/73096", "p/2013/03/72940", "p/2013/03/72922", "p/2013/03/72913","p/2013/03/72492"]
var url = "http://weerfoto.buienradar.nl/"
$("gallery").html("<div id='frame'><img /> </div>" + "<ul class='fotolist> </ul>")
$("#frame img").attr("src", url + photoArray[0]);
});
</script>