

$(document).ready(function(){
//-------------COMEÇO ANIMAÇÃO BANNER

		var tempo = null;
		
	    $(window).bind("load", function() {		
			$('#brBanner').css({"background-image":"none"});
			clearTimeout(tempo);		
			tempo =	setTimeout(eval("link1"),"0");
		});
		
		function link1(event){					
			//volta banner2
			$('#banner1').animate({"opacity":"0"},0);
			$('#p1b2').css({"margin-left":"-1300px"});
			$('#p2b2').css({"margin-left":"1300px"});
			$('#t1_b2').css({"margin-left":"-130px"});
			$('#t2_b2').css({"margin-left":"-235px"});
					
			$('#banner1').animate({"opacity":"1"},200);
			$('#p1_1b1').animate({"width":"908px"},1100);
			$('#t1_b1').delay(1300).animate({"margin-left":"15px"},500);
			$('#t2_b1').delay(1800).animate({"margin-left":"15px"},500);
			
			clearTimeout(tempo);		
			tempo =	setTimeout(eval("link2"),"4500");
		}	
		
		function link2(event){
			//volta banner1
			$('#banner1').animate({"opacity":"0"},200);
			$('#p1_1b1').css({"width":"0px"});
			$('#t1_b1').css({"margin-left":"-280px"});
			$('#t2_b1').css({"margin-left":"-170px"});
			
			$('#banner2').animate({"opacity":"1"},200);
			$('#p1b2').animate({"margin-left":"0px"},700);
			$('#p2b2').delay(500).animate({"margin-left":"330px"},800);
			$('#t1_b2').delay(1300).animate({"margin-left":"15px"},500);
			$('#t2_b2').delay(1800).animate({"margin-left":"15px"},500);
			
			clearTimeout(tempo);		
			tempo =	setTimeout(eval("link1"),"4500");
		}
	
//-------------FIM ANIMAÇÃO BANNER	
});
