$(function(){
	var iHeight = $('#right').outerHeight();
	$('.mainnav ul').height(iHeight);

	$('.mainnav').superfish({
		delay:800,
	});

	$('#sword').focusin(
		function(){
			if ( $(this).val() == 'Suche' ){
				$(this).val('');
			}
		}
	);
	$('#sword').focusout(
		function(){
			if ( $(this).val() == '' ){
				$(this).val('Suche');
			}
		}
	);
	$('.pager li').has('span.narrow').width('25px');
});