jQuery( function($) {
	$('a.nc').live('click', function() {
		return false;
	});
	
	$('div#work-intro div.slideshow img, div#home div.slideshow img').each( function() {
		$(this).css({
			marginLeft: -$(this).width()/2,
			marginTop: -$(this).height()/2
		});
	});
	
	
	
	$('div#featured-work img').removeAttr('title');
});
