;
(function($){

	$.fn.top_slideshow = function(){
		this.each(function(){
			var $imgCollection = $('img',this);
			$imgCollection.filter(':first').show();
			var imgNums = $imgCollection.size();
			var currentImg = 0;
			var table=$("<table border=0 cellspacing=0 cellpadding=0 width='100%'><tr></tr></table>");
			$imgCollection.each(function(){
				var text = $(this).attr('alt');
				var id = this.id.replace('movie_id_','');
				$(this).wrap('<a href="/ru/movies/?id='+id+'"></a>');
				var cell = $("<td><a href='/ru/movies/?id="+id+"'>"+text+"</a></td>");
				$('tr',table).append(cell);
			});
			table.appendTo('#text_box');
			var td = $('td',table);
			td.filter(':first').addClass('select');
			function slide(){
				var $imgCurrent = $imgCollection.filter(':eq('+currentImg+')');
				$imgCurrent.fadeOut('slow',function(){
					td.removeClass('select');
					currentImg++;
					if(currentImg>=imgNums)currentImg=0;
					$imgCollection.filter(':eq('+currentImg+')').fadeIn('slow',function(){
						td.filter(':eq('+currentImg+')').addClass('select');
					});
				});
			};

			setInterval(slide, 5000);
		});
	};

}) (jQuery);
