$(document).ready(function() {


    $('#slideshow').innerfade({
	animationtype: 'fade',
	speed: 1750,
	timeout: 5000,
	type: 'random',
	containerheight: '298px'
	});

        // Mein Konto 
	$("#a1 a").click(function() {
        $("#bestellhistorie").hide();
	$("#adresse").fadeIn('slow');
        });

        $("#a2 a").click(function() {
	$("#adresse").hide();
        $("#bestellhistorie").fadeIn('slow');
	});


 });
