
						   
						   
				$(document).ready(function() {
					var accordion = $("#example3 ul").zAccordion({
						slideWidth: 356,
						width: 950,
						height: 107,
						timeout: 5000,
						slideClass: "frame",
						slideOpenClass: "frame-open",
						slideClosedClass: "frame-closed",
						slidePreviousClass: "frame-previous",
						easing: "easeOutCirc",
						trigger: "mouseover",
						speed: 800,
						afterBuild: function() {
							$("#example3").fadeIn(2000);
						}
					});	
					
					var image1 = $('<img />').attr('src', 'http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap11.jpg');
					var image2 = $('<img />').attr('src', 'http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap21.jpg');
					var image3 = $('<img />').attr('src', 'http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap31.jpg');
					var image4 = $('<img />').attr('src', 'http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap41.jpg');
			
					
					
					$('#frame-1 img').hover(function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap21.jpg");
						
							}, function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap2.jpg");
						
						
					});
					
					$('#frame-2 img').hover(function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap31.jpg");
						
							}, function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap3.jpg");
						
						
					});
					
					$('#frame-3 img').hover(function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap11.jpg");
						
							}, function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap1.jpg");
						
						
					});
					
					$('#frame-4 img').hover(function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap41.jpg");
						
							}, function() {
						$(this).attr("src","http://www.teatrodacidade.com.br/wp-content/themes/teatrodacidade1/images/esteirap4.jpg");
						
						
					});
					
					
				
					
				});
			
