$(document).ready(function(){

  $("a[rel^='prettyPhoto']").prettyPhoto({animationSpeed:'fast',slideshow:10000, theme:'dark_rounded'});
 

   
  
});



   var Hours   = $('#hours').text();
   var Minutes = $('#minutes').text();
   var Seconds = $('#secunds').text();

   function clock() {
    Time = Hours + ((Minutes < 10) ? ":0" : ":") + Minutes + ((Seconds < 10) ? ":0" : ":") + Seconds;
    document.getElementById('time').innerHTML = ' - '+Time;
    if(Seconds == '59') {
     Seconds = 0;
     Minutes++;
    } else {
     Seconds++
    }
    if(Minutes == '59') {
     Minutes = 0;
     Hours++;
    }
    Timer = setTimeout("clock()", 1000);
   }
   clock();
