$(document).ready(function() {
  $('#carousel').jqFancyTransitions({ 
    width: 960,
    height: 300,
    delay: 6000,
    navigation: true,
    links: true
  });

  var url = window.location.pathname;
  $('#navbar a').filter(function() {
    return ('/' + $(this).attr('href')) == url.substring(url.lastIndexOf('/'), url.length);
  }).addClass('active');
  
  $(".bde").click(function() {
    $(".bde p").slideUp("slow");
    $(this).children("p").slideToggle("slow");
  });
  
    function test(pid, ppr, ppn, photoset) {$(pid).jflickrfeed({
    limit: ppr,
    qstrings: {
      method: 'flickr.photosets.getPhotos',
      api_key: 'fa002d5fd1549c239e655261a172eb01',
      photoset_id: photoset,
      extras: 'url_s,url_t,url_m,url_sq,url_z',
      per_page: ppr,
      page: ppn
    },
    itemTemplate:
    '<li>' +
      '<a class="cboxElement" rel="colorbox" href="{{url_z}}" title="{{title}}">' +
        '<img src="{{url_t}}" alt="{{title}}" />' +
      '</a>' +
    '</li>'
  }, function(data) {
    $(pid+' li').show('slow');
    $('a.cboxElement').colorbox({transition:'fade', speed:500, slideshow:true, width:"720px", height:"80%"});
  })
  }
  
  $('a.cboxElement').click(function() {
    $('div#colorbox').css('display', 'block');
  });
  
  $('li.photoPageNumber').click(function() {
    $('#photoPager li.active').removeClass('active');
    $('#ia9-cbox').children().remove();
    test('#ia9-cbox', 35, $(this).children('a').text());
    $(this).addClass('active');
  })
  
  test('#ia9-all', 500, 1, '72157626587057860');
  test('#ia9-cbox', 35, 1, '72157626587057860');
  test('#assomiades-all', 500, 1, '72157626948004646');
  
  test('#ia10-all', 500, 1, '72157627847329835');
  test('#ia10-cbox', 35, 1, '72157627847329835');
  
});
