$(document).ready(function(){
$('#slider2').fadeTo("fast", 1);
});
	
	
	
	$('.einblender').mouseenter(function() {
		if ( $(this).css("opacity") != '1' ) { 
			$(this).fadeTo("fast", .95);
		}
	});

	$('.einblender').mouseleave(function() {
		if ( $(this).css("opacity") != '1' ) { 
			$(this).fadeTo("slow", .01);
		}
	});

	$('.einblender').mousedown(function() {
		$('.einblender').css("opacity", .01);
		$(this).css("opacity", .95);
		$(this).fadeTo("fast", 1);
	});

