jQuery.fn.fadeToggle = function(speed, easing, callback) {
	return this.animate({opacity: 'toggle'}, speed, easing, callback); 
};

$(document).ready(function(){

		$("#suche #inputSuche").attr("style","display:none;");

		$("ul.navigation li").click( function() { 
			$(this).children("ul").fadeToggle();
		});


		// Suche ein und ausblenden
		$("#suche input.submit").mouseover( function() 
		{ 
			$(this).attr("src","images/layout/ico_suche_over.gif");
			$("#suche #inputSuche").fadeIn("normal");
		});
	

		$("#suche #sucheSchliessen").click( function() 
		{ 
			$("#suche input.submit").attr("src","images/layout/ico_suche.gif");
			$("#suche #inputSuche").fadeOut("normal");
		});


});