$(document).ready(function() {
	$(".search").hover(function(){
		$("#lupe").animate({
			left: 0
		}, "fast");
	},function(){
		$("#lupe").animate({
			left: -50
		}, "fast");
	});
	if($("#content").height() <($("body").height()-42)){
		$("#content").css("height", ($("body").height()-42));
	}
	$('#fader').innerfade({ speed: 1000, timeout: 3500, type: 'random', containerheight: '262px' }); 
});


