$(document).ready(function() {

	$('#gallery .big').show().html('<div class="loading"></div><img src="'+$('#gallery a:first').attr('href')+'" />');
	$('#gallery .caption').show().text($('#gallery a:first').attr('title'));
	$('#gallery ul a').click(function() {
		href = $(this).attr('href');
		title = $(this).attr('title');
		$('#gallery .big img').fadeOut(300, function(){
			$(this).attr('src', href);
			$('#gallery .big .loading').show();
			$(this).load(function() {
				$('#gallery .caption').text(title);
				$('#gallery .big .loading').hide();
  			$(this).fadeIn(300);
			});
		});

		return false;
	});
	
	$("#slides").slides({
		generatePagination: false,
		play: 4000
	});
		
});
