$(document).ready(function(){
 
	$(".videoep a").click(function(){
	
		var videocode = $(this).attr("title");
		var len1 = videocode.length;
								
		if (len1 > 20) {
						
		$(".video1").replaceWith("<p class='video1'><object type='application/x-shockwave-flash' width='500' height='380' data='http://video.rutube.ru/"+videocode+"'><param name='movie' value='http://video.rutube.ru/"+videocode+"' /><param name='allowFullScreen' value='true' /><param name='wmode' value='transparent' /><param name='quality' value='high' /></object></p>"); }
		else {
		$(".video1").replaceWith("<p class='video1'><iframe title='Kiwi player' width='640' height='385' src='http://v.kiwi.kz/v2/"+videocode+"/' frameborder='0' allowfullscreen></iframe></p>"); } 
		
		
		$(".videotitle").html( $(this).text() );return false;
		
		
	});
	
});

(function($){

	/* использование: <a class='scrollTop' href='#' style='display:none;'></a>
	------------------------------------------------- */
	$(function(){
		var e = $(".scrollTop");
		var	speed = 500;

		e.click(function(){
			$("html:not(:animated)" +( !$.browser.opera ? ",body:not(:animated)" : "")).animate({ scrollTop: 0}, 500 );
			return false; //важно!
		});
		//появление
		function show_scrollTop(){
			( $(window).scrollTop()>1000 ) ? e.fadeIn(600) : e.hide();
		}
		$(window).scroll( function(){show_scrollTop()} ); show_scrollTop();
	});

})(jQuery)

