$(document).ready(function() {

	$('body').removeClass('no-js');
	
	$('#suchbegriff').focus(function(){
		$(this).prev().fadeOut();
	});
	
	$('#suchbegriff').blur(function(){
		if ($(this).attr('value') == 0) $(this).prev().fadeIn();
	});
	
	$('#suchebutton').click(function(){
		$('#suchecontainer').slideToggle(500,"easeOutQuart");
		if (!$(this).hasClass('active')) {
			$(this).addClass('active').children('p').text('abbrechen')
		} else {
			$(this).removeClass('active').children('p').text('Suche');
		}
	});
	
	$('#inhalt table').removeAttr('border').removeAttr('cellspacing');
	$('#inhalt table td').removeAttr('align');
	
});
