$(document).ready(function() {
	$('#photography').jcarousel({
		scroll: 4
	});
	$('#photography a').lightBox({
		showTitle: 0
	});
	$('#photography img').css('opacity', 0.4).hover(
		function() {
			//$(this).css('opacity', 1);
			$(this).animate({ opacity: 1 });
		},
		function() {
			//$(this).css('opacity', 0.4);
			$(this).animate({ opacity: 0.4 });
		}
	);
});