
$(document).ready(function(){

  var screens = $('.screenshots');

  screens.find('li a').prettyPhoto({
      animationSpeed: 'normal', 
      padding: 140,
			opacity: 0.6, 
			showTitle: true, 
			allowresize: true, 
			counter_separator_label: '/', 
			theme: 'dark_rounded',
			gallery: 'aa'
  
  });
  
  // Hide screenshots and show only the first one
  screens.find('li:not(:first)').hide();
  screens.find('li:first a').text(screens.attr('title'));

  // Open rel external in another window
  $("a[rel='external'], .documents a").click(function(elm){
    window.open(this.href);
    return false;
  });

});
  


