// Cufon
Cufon.replace('ul#navi02 a, input#submit', {fontFamily:'ChunkFive', hover:'true'});
Cufon.replace('ul#navi01 ul a', {hover:'true'});
Cufon.replace('h2, div#footer h3, div#content02 h3, #footer strong, #footer em', {textShadow:'1px 1px 1px #000;'});
Cufon.replace('div#content-box h3, p#greeting, h4',  {textShadow:'1px 1px 0 #fff;'});


// Pullout lists
function pullOut(elements) {
	elements.each(function() {
		$(this).css({cursor:'pointer'}).next().hide();
		$(this).click(function() {
			$(this).next().toggle('slow');
		});
	});
}



$(document).ready(function() {
	// load mailmask
	if (typeof noSpam == 'function') {
		noSpam();
	}
	
	Cufon.replace('#footer a', {textShadow:'1px 1px 1px #000;', hover:'true'});

	// load lightbox
	if (jQuery().lightbox) {
		$('a[rel^="lightbox"]').lightbox();
	}
	
	// load slideshow
	if (jQuery().cycle) {
		$('#slideshow').after('<a id="next" title="N&auml;chstes Bild">n&auml;chstes Bild</a>');
		$('#slideshow').after('<a id="prev" title="Vorheriges Bild">vorheriges Bild</a>');
		
		$('#slideshow').cycle({ 
			prev:   '#prev', 
			next:   '#next'
		});
	}
		
	// validation
	if (jQuery().ketchup) {
		$('#Kontaktformular').ketchup();
	}
	
	pullOut($('.pullout'));

});

