$(document).ready(function() {

	/*****************************
	* Hovereffect for Navigation-Bar
	****************************/
	$('ul.level_1 li').hover(	
		function() {
			if ($(this).hasClass('submenu')) {
				$(this).find('ul.level_2').show();
			}
		},
		function() {
			if ($(this).hasClass('submenu')) {
				$(this).find('ul.level_2').hide();
			}
		}
	);
	
	$('ul.level_2 li').hover(	
		function() {
			if ($(this).hasClass('submenu')) {
				$(this).find('ul.level_3').show();
			}
		},
		function() {
			if ($(this).hasClass('submenu')) {
				$(this).find('ul.level_3').hide();
			}
		}
	);
	
	$('ul.navi_dd').hover(	
		function() {
			$(this).show();
		},
		function() {
			$(this).hide();
		}
	);
	
	
	/*****************************
	* Searchbox: hide/display default value
	****************************/
	$('.search input[type=text]').click(
		function() {
			if ($('.search input[type=text]').val() == 'Suche') {
				$('.search input[type=text]').val('');
			}
		}
	);
	
	$('.search input[type=text]').blur(
		function() {
			if ($('.search input[type=text]').val() == '') {
				$('.search input[type=text]').val('Suche');
			}
		}
	);
});