// JavaScript Document

$(document).ready(function() {

	$('div.abouttext').hide()
	
	$('a#prev').click(function() { $('div.abouttext').fadeOut();  })
	$('a#next').click(function() { $('div.abouttext').fadeOut();  })
	$('a').click(function() { $('div.abouttext').fadeOut();  })
	$('a#about').click(function() { $('div.abouttext').fadeIn();  });
	$('a#texthide').click(function() { $('p').hide(); $('div.anmerkung').hide(); $('a#texthide').hide(); $('a#textshow').show(); $('div.klein p').show(); });
	
	$('a.mail').mouseover(function() { $('body').addClass("mailground"); });
	$('a.mail').mouseout(function() { $('body').removeClass("mailground"); });
	
	$('#s1') 
		.cycle({ 
		random:  0,
    	fx:     'fade', 
    	speed:  'fast', 
    	timeout: 0, 
		next:   '#s1'
	});

});
