$(document).ready(function() {
	img = '.img-1';
	$('.photos li a').click(function() {
		caption = $(this).attr('title');
		image = $('img', this).attr('src');
		

		$('.img-1').attr('src', image);

		
		$('.caption').slideUp(function() {
			$(this).html(caption);
			if (caption != '') {
				$(this).slideDown();
			}
		});
		return false;
	});
});
