jQuery(document).ready(function($) {
	$('#multi-sidebar').tabs();
	
	$('#commentform').validate();
	$('.featured').hover( 
		function() {
			$('#featured-slideshow').cycle('pause');
			//$('#controls').fadeIn();
		}, 
		function() {
			$('#featured-slideshow').cycle('resume');
			//$('#controls').fadeOut();
		}
	);
	$('#featured-slideshow').cycle({
		fx: 'fade',
		speed: 400,
		//next: '#controls .next',
		//prev: '#controls .prev',
        before:   function onBefore(){
                                $("#featured").animate({height: this.id}, 1000)
                               },
		timeout: 6000,
		pager:  '#fnav',
		pagerAnchorBuilder: function(idx, slide) {
            // return sel string for existing anchor
            return '#fnav li:eq(' + (idx) + ') a';
            }
	});

});


