﻿$(document).ready(function() {
    
    // Select every third item in screenshot list for equal spacing
    $("#screenshots li").css("margin-right", "9px").filter(function(index) {
        return index % 3 == 2;
    }).css("margin-right", "0");
    
    // Lightbox
    $('#screenshots li a').lightBox();

});
