$(function(){		
		
	
		
		$("#pic_news_nav li a").focus(function () { this.blur()}); 
		

							
		function onBefore() {
			//$('#pic_news_text').html('<h2>' + $(this).children()[0].name + '</h2><p>' + $(this).children()[0].alt + '</p>').hide().show();
			$('#pic_news_text').html('<h2>' + $(this).children()[0].name + '</h2>').hide().show();
		};

		$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) {
						$(pager).find('li').removeClass('active_slide').filter('li:eq('+currSlideIndex+')').addClass('active_slide');
							};
							$('.pic_news_pics').cycle({
								fx: 'fade',
								delay: 2000,
								speed: 3000,
								before: onBefore,
								pager: '#pic_news_nav',
								pagerAnchorBuilder: function(idx, slide) {
								return '#pic_news_nav li:eq(' + idx + ') a';
						}
		});

});
