$(document).ready(function(){ 
	
	$('#banner_top').cycle({
		fx: 'fade',
		timeout: 9000,
		speed: 250,
		next: '#banner_top',
		pager:  '#menu_under ul',
		pagerAnchorBuilder: function(idx, slide) { 
			return '#menu_under li:eq(' + idx + ') a'; 
		} 
	});

	//$('#banner_top').find('img').click(function(){
	//	$('#banner_top').cycle('pause');
	//	return false;
	//}); 

	$.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
		$(pager).find('li').removeClass('activeLI') 
			.filter('li:eq('+currSlideIndex+')').addClass('activeLI'); 
	}; 

});
