$(document).ready(function() {
    $('#banner_teatro_inner').cycle({
		fx: 'fade' // choose your transition type, ex: fade, scrollUp, shuffle, etc...
	});
	$('.tabbed .wrapper_1 div').hide();
	$('.tabbed .wrapper_2 div').hide();
	$('.ie6').hide();
	$('.activo').show();
	$('#banner_teatro_inner').show();
	$('#banner_teatro').show();
	$('#tabs5 a').click(function() { 
		$('.current').removeClass('current');
		$(this).parent().addClass('current');
		var nombre = $(this).attr('href');
		$('.activo').fadeOut(1500 , function(){
			$('.activo').removeClass('activo');
			$(nombre).addClass('activo');
			$(nombre + 'img').addClass('activo');
			$('.activo').fadeIn(1500);
		});
		return false;
	});
});