// JavaScript Document
/* Copyright © 2009 Pascal Bajorat. All rights reserved. */

$(document).ready(function(){
	// Suche
	$('#search_input').focus(function(){
		$('#search_input').css('background-position','0px -32px');
	});
	
	// Suche Button
	$('#search_submit').hover(function(){
		$(this).fadeTo("slow", 0.5);
	},function(){
		$(this).fadeTo("slow", 1.0);
	});
	
	// Bild-Link animation
	$('a > img').hover(function(){				
		$(this).fadeTo("slow", 0.5);
	},function(){
		$(this).fadeTo("slow", 1.0);
	});
	
	// Navigation
	$('#navigation > li > a').hover(function(){
		$(this).animate({opacity: 0.0,}, 500);
	},function(){
		$(this).animate({opacity: 1.0,}, 500);
	});
});