 $(document).ready(function(){


// Setze Bildbreite in rechter spalte

	$(".sidebox .content img").attr({width: 207});
	$(".sidebox .content img").removeAttr("height");


// Animation der Header Navigation

$('.mainmenu li:not(.active) a ')
	.css( {backgroundPosition: "0 40px"} )
	.mouseover(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 0px)"}, 
			{duration:250})
		})
	//.mousedown(function(){
	//	$(this).stop().animate(
	//		{backgroundPosition:"(0 -60px)"}, 
	//		{duration:10})
	//	})
	.mouseout(function(){
		$(this).stop().animate(
			{backgroundPosition:"(0 40px)"}, 
			{duration:100})
		});

	
});