$(document).ready(function()
{
	$(".fade7").fadeTo("fast", 0.7); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".fade7").hover(function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},
	function(){
	$(this).fadeTo("slow", 0.7); // This should set the opacity back to 30% on mouseout
	});
});

$(document).ready(function()
{
	$(".fade3").fadeTo("fast", 0.3); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$(".fade3").hover(function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},
	function(){
	$(this).fadeTo("slow", 0.3); // This should set the opacity back to 30% on mouseout
	});
});



$(document).ready(function()
{
	$("#logo_over").fadeTo("fast", 0.1); // This sets the opacity of the thumbs to fade down to 30% when the page loads
	$("#logo_over").hover(function(){
	$(this).fadeTo("slow", 1.0); // This should set the opacity to 100% on hover
	},
	function(){
	$(this).fadeTo("slow", 0.1); // This should set the opacity back to 30% on mouseout
	});
});




$(document).ready(function()
{
				$('.kwicks').kwicks({
					max : 220,
					spacing : 1,
					duration : 300
				});
});


$(document).ready(function() { 
	/* für Bilder */ 
	$("a.fancy1").fancybox(); 
	$("a img.alignleft").fancybox(); 

/* für Bilder */ 
	$("a.googlemaps").fancybox({ 'hideOnContentClick': false, 'frameWidth': 800, 'frameHeight': 600 }); 
}); 