// MAILMASK
jQuery(document).ready(function(){			  
	noSpam();
});

function noSpam(){
	jQuery('a.escape').each(function(){
		jQuery(this).find('span').first().html('@');
		jQuery(this).attr('href','mailto:'+jQuery(this).text());
	});
}

/* Animation für die Navi oben */
jQuery(document).ready(function(){
	jQuery(".drop > ul").hide(); 
	jQuery(".drop").hover(function(){
		jQuery(this).children("ul").stop(true, true);
		jQuery(this).children("ul").slideDown(600); 
		},function(){
		jQuery(this).children("ul").slideUp(400);});
});

// select all desired input fields and attach tooltips to them
jQuery(".form :input.tool").tooltip({
	position: "center right",
	offset: [-2, 10],
	effect: "fade",
	opacity: 0.7
});

jQuery(function(){
    jQuery('#slideshow img:gt(0)').hide();
    setInterval(function(){
      jQuery('#slideshow :first-child').fadeOut()
         .next('img').fadeIn()
         .end().appendTo('#slideshow');}, 
      5000);
});

