$(function() {
	$('div#work li:nth-child(2)').addClass('middle');
	$('div#work li:nth-child(5)').addClass('middle');
	$('ul#project-gallery li:nth-child(even)').addClass('even');
	$('a[rel*=lightbox]').lightBox();
	$('div#work li').mouseover(function() {
		$(this).children().css('color', '#6dc067');
	});
	$('div#work li').mouseout(function() {
		$(this).children().css('color', '#0071bc');
	});
	
	// About Images
	$('div#about-images img:first').css('margin-left', '0');
});