$(function() {
	$('#controller a').click(function(e){
		e.preventDefault();
		clearInterval(intervalgallery);
		$('#controller a').removeClass('selected');
		$(this).addClass('selected');
		var imgIndex = $(this).attr('href').substr(1);
		$('#gallery img.active').fadeOut("normal", function () {
			$(this).removeClass('active');
			$('#gallery img:eq('+imgIndex+')').fadeIn('slow').addClass('active');
		});
		intervalgallery = setInterval("showImg()",5000);
	});
});  
function showImg() { 
	var imgActive = $('#gallery img.active');
	$('#controller a').removeClass('selected');
	$('#gallery img.active').fadeOut("normal", function () {
		if($(this).next('img').attr('src')) {
			$(this).removeClass('active');
			$(this).next('img').fadeIn('slow').addClass('active');
			$("#gallery img").each(function(i, item) {
				if ($(item).hasClass("active")) {
					$('#controller a:eq('+(i)+')').addClass('selected');
					return false;
				}
			});
		}
		else {
			$(this).removeClass('active');
			$('#gallery img:first').fadeIn('slow').addClass('active');
			$('#controller a:first').addClass('selected');
		}
	});
} 
var intervalgallery = setInterval("showImg()",4000);
