// JavaScript Document

$(document).ready(function(){
	//Add class to every third Image
	$(".grid li:nth-child(3n)").css("margin-right", "0px");
});
