function pageBrowserAnim()
{ 	
	//Mouseover Seitennavigation
	$('.STYLE_pageBrowser div menu li a').mouseover(function(){
		$(this).parent().parent().find('li a span').stop().animate({height: 35, width: 5}, 200);
		$(this).find('span').stop().animate({height: 47, width: 10}, 200);
		$(this).parent().parent().find('li span.seitenZahl').css('visibility', 'hidden');
		$(this).parent().find('span.seitenZahl').css('visibility', 'visible');
		
		$(this).parent().parent().find('li a').stop().animate({marginRight: 4, marginTop: 5}, 200);
		$(this).stop().animate({marginRight: 6, marginTop: 0}, 200);
	});
	
	$('.STYLE_pageBrowser div menu').mouseleave(function(){
		$(this).find('li a span').stop().animate({height: 35, width: 5}, 200);
		$(this).find('li a.Select span').stop().animate({height: 47, width: 10}, 200);
		
		$(this).find('li a').stop().animate({marginRight: 4, marginTop: 5}, 200);
		$(this).find('li a.Select').stop().animate({marginRight: 6, marginTop: 0}, 200);
		
		$(this).find('li span.seitenZahl').css('visibility', 'hidden');
	});
	
	//Mouseover Next Previous Button
	// $('.STYLE_pageBrowser a').not('li a').mouseover(function(){
	// 	$(this).stop().animate({fontSize: 14, paddingTop: 10});
	// });
	// 
	// $('.STYLE_pageBrowser a').not('li a').mouseleave(function(){
	// 	$(this).stop().animate({fontSize: 11, paddingTop: 13});
	// });

}