$(document).ready(function() {
	$('input#suche').focus(function() {
		if($(this).val() == 'Suche') {
			$(this).removeClass('inactive');
			$(this).val('');
		}
	});
	
	$('input#suche').blur(function() {
		if($(this).val() == '') {
			$(this).addClass('inactive');
			$(this).val('Suche');
		}
	});
	
	$('*[rel="fancybox"]').fancybox({
		'transitionIn'	:	'fade',
		'transitionOut'	:	'fade',
		'titlePosition' :	'inside',
		'speedIn'		:	200, 
		'speedOut'		:	200, 
		'overlayShow'	:	true
	});
});



