$(document).ready(function(){

	$('#menu li a')
	.css( {backgroundPosition: '0 0'} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:'(0 -16px)'}, 
			{duration:350})
		})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:'(0 0)'}, 
			{duration:500})
		})
	
	$('div#slider1').codaSlider();
	
	/*
	$('div#slider1').before('<img src="inc/img/xmas.png" alt="Wir wünschen ein frohes Fest!" title="Wir wünschen ein frohes Fest!" id="xmas" />');
	window.setTimeout('$("#xmas").fadeIn("slow");', 500);
	*/
	
	/*$('.welcome #content-right .fade').fadeTo('fast', 0.5);
	$('.welcome #content-right .fade').mouseover(function(){
      $(this).fadeTo('normal', 1);
    }).mouseout(function(){
      $(this).fadeTo('fast', 0.5);
    });*/

		
});