var i = 1;
function slideShow() {
	$('#gallery a').removeClass("show").css({opacity: 0.0});
	$('#gallery a:eq(0)').addClass("show").css({opacity: 1});
	$('#gallery .caption').css({opacity: 0.7}).animate({height:'50px'}, 500);
	$('#gallery .content').html($('#gallery a:first').find('img').attr('rel')).animate({opacity: 0.7}, 400);
	setInterval('gallery(i++)', 6000);	
}

function gallery(obj) {
	if (obj > $("#gallery a").size() - 2) {
		i = 0;
	}
	$('#gallery a').removeClass('show').animate({opacity: 0},200);
	$('#gallery .caption').animate({height:'0px'}, 200);
	$('#gallery a:eq(' + obj + ')').addClass("show").animate({opacity: 1},500);
	$('#gallery .caption').css({opacity: 0.7}).animate({height:'50px'}, 500);
	$('#gallery .content').html($('#gallery a:eq(' + obj + ')').find('img').attr('rel')).animate({opacity: 0.7}, 400);
}
