$(document).ready(function() {
	
	$('.links a').hover(
		function(){
			$(this).next('img').show();
		},
		function(){
			if(!$(this).hasClass('active')) $(this).next('img').hide();
		}
	);
	
	$('.links a.active').each(
		function(){
			$(this).next('img').show();
		}
	);
	
	/*
	$('.pers').hover(
		function(){
			$(this).find('img').attr('src','/themes/web_cktwee/img/arrow_left_blue.png');
		},
		function(){
			$(this).find('img').attr('src','/themes/web_cktwee/img/arrow_left_gray.png');
		}
	);
	*/
	
	$('.pcat').hover(
		function(){
			$(this).find('img').attr('src','/themes/web_cktwee/img/arrow_top_blue.png');
		},
		function(){
			$(this).find('img').attr('src','/themes/web_cktwee/img/arrow_top_gray.png');
		}
	);
});
