$(document).ready(function () {
  $(document).pngFix();
});

$(function() {
		$( "#datepicker" ).datepicker();
	});

$('.slideshow img:not(:first)').hide();
    setInterval(function(){
      $('.slideshow :first-child').fadeOut('slow')
         .next('img').fadeIn()
         .end().appendTo('.slideshow');}, 
      5000);
      
