$(document).ready(function(){
	
	$('ul.nav li:last-child a').css({'margin':'0'});
	$('#gallery .project a:first-child').css({'display':'block'});
	$('#gallery .project:nth-child(3n)').css({'margin-right':'0'});
	$('#gallery .project:nth-child(3n+1)').css({'clear':'left'});
	$('#footer p:first-child').css({'color':'#A9A8A5'});
	
	$('a.prev, a.next').hide();
	$('#featured').hover(function(){
		$(this).find('a.prev, a.next').toggle()	
	});
	
	$('img').parent('a').css({'border':'0'});
	
});



