$().ready(function() {

    //Folgeseiten       
	    $('#hnav li').not('#hnav li.active').hover(
	    function(){
	        $(this).stop().animate({ backgroundColor: "ssg" }, 200);
	        $(this).find('a').stop().animate({ color: "white" }, 200);
	    },
	    function(){
	        $(this).stop().animate({ backgroundColor: "white" }, 200);
	        $(this).find('a').stop().animate({ color: "ssg" }, 200);
	    });

	    $('#subnav ul li a').not('#subnav ul li.active').hover(
	    function(){
	    	$(this).stop()
	    	.animate({backgroundPosition: '-8px 50%' }, 5)
	        .animate({backgroundPosition: '40px 50%' }, 195);
	        //... don«t ask!
	    },
	    function(){
	        $(this).stop().animate({backgroundPosition: '-8px 50%' }, 200);
	    });

//ready function
});

