$(document).ready(function(){
	$('#slider_area').cycle({ 
		fx:     'scrollDown', 
		easing: 'backout', 
		timeout: 5110, 
		pager:  '#numbers', 
		pagerAnchorBuilder: function(idx) { 
			return '<li><a href="#" title="">' + (idx+1) + '</a></li>'; 
		} 
	});
	
	$('.sf > li > ul').each(function() {
        $(this).toggle($(this).children().length <= 2);
  });
  if('.depth_0'){
    $('.current_page_item ul').show();
  }
  if('.depth_1'){
    $('.current_page_item').parents().show();
  }
});


