$(document).ready(function(){
	$('.image_teaser_img:first').fadeIn(0);
	$('.image_teaser_navi a:first').addClass('act');
	
	$('.image_teaser_navi a:not(.act)').live('click', function(){
		var self = $(this);
		$('.image_teaser_img:visible').fadeOut(200, function(){
			$('.image_teaser_navi a.act').removeClass('act');
			self.addClass('act');
			$('#'+self.attr('rel')).fadeIn(200);
		});
	});
});
