$(document).ready( function() {
	// PNG FIX für IE6
	$(document).pngFix();

	//IMG ohne alt Text füllen
	$("img[alt='']").attr('alt','Dr. Schilhan Gebäudeservice');

	// fancybox
	$("a[href$='jpg'], a[href$='JPG'], a[href$='jpeg'], a[href$='JPEG'], a[href$='png'], a[href$='PNG'], a[href$='gif'], a[href$='GIF']").fancybox();

	//header start
	$("h1.iBlend").hover(function() {
		$(this).next().height(0).show().animate({height:'90px'},250);;
	}, function() {
		$(this).next().animate({height:'0'}, 250, function() {
			$(this).hide();
			
			
		});
	});

	//header start
	$("h1.iBlendluft").hover(function() {
		$(this).next().height(0).show().animate({height:'78px'},250);;
	}, function() {
		$(this).next().animate({height:'0'}, 250, function() {
			$(this).hide();
		});
	});

	// fader wenn 1>bilder in #cPicture
	if($('#cPicture > img').size()>1) {
		$('#cPicture').innerfade({speed:500, timeout: 3500});
	}
	
});
