function decem () {
	document.write('<a href="mailto:info');
	document.write('@'+'Peter-Maier'+'-GmbH.de">');
	document.write('info'+' [at] Peter-Maier'+'-GmbH.de');
	document.write('</a>');
}

function decen () {
	document.write('<a href="mailto:info@nis');
	document.write('tler-badperle'+'n.de">');
	document.write('info'+' [at] nistler-ba'+'dperlen.de');
	document.write('</a>');
}

$(function() {
    var stack = [];
    for (var i = 3; i < 10; i++) {
        var img = new Image(424,187);
        img.src = 'images/slides-home/' + i + '.jpg';
        if (img.complete)
            stack.push(img);
        else 
            $(img).bind('load', function() {
                stack.push(this);
            });
    } 

   function onBefore(curr, next, opts) {
        if (opts.addSlide)
            while(stack.length)
                opts.addSlide(stack.pop()); 
    };
	
	$(function() {
	var slideshow = $('#head-pic').cycle({ 
		fx:'fade',
		delay:0,
			speed:   1000,
			timeout: 4000,
			before:   onBefore
	});
	});
	
});

