j = jQuery.noConflict();
jQuery(document).ready(function() {
	
	function switchImage1(){
		setTimeout(function(){
		j('#bild2').fadeOut('slow');
		j('#bild1').fadeIn('slow');
		switchImage2()
	},4000);
	
	}
	function switchImage2(){
		setTimeout(function(){
		j('#bild1').fadeOut('slow');
		j('#bild2').fadeIn('slow');
		switchImage1()
		},4000);
	}
	setTimeout(function(){
		j('#bild2').fadeOut('slow');
		j('#bild1').fadeIn('slow');
		switchImage2()
	},10);
	switchImage1();
});
