$(function(){
	$('.refNav li a img').mouseover(function(){
		$(this).animate({opacity:0.5},300)
		.animate({opacity:1},300);
	});
	$('.refNav li a img').mouseleave(function(){
		
		if($(this).parents('li').hasClass('current') != true){
			$(this).animate({opacity:0.5},300);
		}
	});
	
	$('.bildNav li a img').mouseover(function(){
		$(this).animate({opacity:0.5},300)
		.animate({opacity:1},300);
	});	
});