jQuery.fn.liScroll_video = function(settings) {
		settings = jQuery.extend({
		travelocity: 0.05
		}, settings);
		return this.each(function(){
				$('.video_container div').hide();
				$('.panel_video img').click(function(){
					$('.video_container div').hide();
					var e = $(this).attr("class");
					if($('.video_container div').eq(e)){$('.video_container div').eq(e-1).show();}
					//if($('.video_container div').eq(e)){$('.video_container div').eq(e-1).fadeIn("fast");}
				});
			});
};
