$(document).ready(function(){


jQuery(function( $ ){
  $('#tags').children('ul').removeClass("unstyled").wrap('<div id="tagsscroll"></div>');
  
  if($('#tags').css("display")!="none")
   {
   $('#tagsscroll').serialScroll({
		items:'li',
		prev:'#prevtag',
		next:'#nexttag',
		offset:-80, //when scrolling to photo, stop 230 before reaching it (from the left)
		duration:50,
		force:false,
		navigation:true,
		stop:true,
		lock:false,
		cycle:false, //don't pull back once you reach the end
		easing:'easeOutQuart', //use this easing equation for a funny effect
		jump: false //click on the images to scroll to them
	});
 }
 });

$('#tags').children('a.left').mousedown(function (){$('#zone_active').stopTime();$(this).everyTime(100, function() { $(this).click();}, 22);  }).mouseup(function () { $(this).stopTime(); } );
 
});