$(function() {
// BOF
	
	
	/* right nav fading */
	
	
	$('#rightWidgetSidebar').children().fadeTo(500,0.5);
	
	
	
		$('#rightWidgetSidebar .sidebox .sideboxContent div ul').cycle({ 

    fx:     'fade', 
    speed:   800, 
    timeout: 8000, 
    next:   '#s3', 
    pause:   1 
	});



	
	$('#rightWidgetSidebar .widget').hover(function() {
		$(this).fadeTo(200,1);
	}, function() {
		$(this).fadeTo(500,0.5);
	});
	

// EOF  
});