﻿// FadeIn Bilderübersicht Archiv


$(document).ready(function(){
						   
		$(".startfoto1").fadeTo("slow", 0.7);
		$(".startfoto1").hover(function(){
			$(this).fadeTo("fast", 1.0);
			},function(){
			$(this).fadeTo("fast", 0.7);
	});
		
	// fade Bild	
	jQuery("#header_foto img").css("display","none");
			jQuery("#header_foto img").fadeIn(2000)
			
	//jQuery("#header_text p").css("display","none");
		//	jQuery("#header_text p").fadeIn(500)
	
});


