$(function() {
	$('#photostrip li').hover(function() {
		$(this)
			.css('z-index', '100')
			.stop()
			.animate({
				marginRight: '-10px',
				marginBottom: '-10px',
				left   : '-5px',
				top    : '-5px',
				width  : '135px',
				height : '110px'
			}, 'fast');
	},
	function() {
		$(this)
			.css('z-index', '0')
			.stop()
			.animate({
				marginRight: '0px',
				marginBottom: '0px',
				left   : '0px',
				top    : '0px',
				width  : '125px',
				height : '100px'
			}, 'fast');
	});
	$('.photostrip img').hover(function() {
		$(this).attr('src', $(this).attr('src').replace(/-bw\./, '.'));
	},
	function() {
		$(this).attr('src', $(this).attr('src').replace(/\./, '-bw.'));
	});
});