$(document).ready(function() { 
		$("div.features").addClass("includeme");
		//$('.features > ul').tabs({ fx: { opacity: 'toggle' }, event: 'mouseover' }).tabs('rotate', 10000);
		$('#featuredvid > ul').tabs({ fx: { opacity: 'toggle' } });
		$('#tabbox > ul').tabs({ fx: { opacity: 'toggle' } });
	
	var $tabs = $('.features > ul').tabs({ fx: { opacity: 'toggle' }, event: 'mouseover' }).tabs('rotate', 10000);
	
	$(".fhold").each(function(i){
	  var totalSize = $(".fhold").size() - 1;
	  if (i != totalSize) {
	      next = i + 2;
   		  $(this).append("<a href='#' class='next-tab mover' rel='"+next+"'>&#187;</a>");
	  }
	  if (i != 0) {
	      prev = i;
   		  $(this).append("<a href='#' class='prev-tab mover' rel='"+prev+"'>&#171;</a>");
	  }
	});
	
	$('.next-tab, .prev-tab').click(function() {
		   $tabs.tabs('rotate', null);
           $tabs.tabs('select', $(this).attr("rel"));
           return false;
       });
	   
	   
	   
        $('.filter').hide();
        $('a#toggle-filter').click(function() {
          $('.filter').toggle(400);
          return false;
        });


	   
});