jQuery(document).ready(function()
{
	
	var total = jQuery(".#video-selection ol li.album").size();
	var count = 1;
	jQuery("#video-selection h2 a").click( function() {
	  jQuery("#video-selection ol li.album:nth-child("+count+")").hide();
	  if( jQuery(this).hasClass('next') ){
	  count++;
	  } else {
	  count--; 
	  }
	  if (count > total) {
	    count = 1;
	  } else if(count <= 0 ){
		 count = total;
	  }
	  
	  jQuery("#video-selection ol li.album:nth-child("+count+")").show();
	  return false;
	});	
});
