$(function() {

	$('#bildwechsel > div').fadeTo(0, 0.0);

	$('.produktfinder .link_box').hover(function() {
		var index = $('.produktfinder .link_box').index(this);
		$('#bildwechsel > div').eq(index).css('z-index', 200);
		$('#bildwechsel > div').eq(index).stop().fadeTo(1000, 1.0);
	}, function() {
		var index = $('.produktfinder .link_box').index(this);
		$('#bildwechsel > div').eq(index).stop().fadeTo(1000, 0.0);

	});

	$('.produktfinder .link_box').click(function() {
		window.location.href = $('a', this).eq(0).attr('href');
	});

});
