jQuery(document).ready(function($){

	var avon = {
		init : function(){
			avon.flash_avon();
			$('a[rel=external]').attr('target', '_blank');	
		},
	
		flash_avon : function(){		
			$('#flash-box').media({
				width: '100%',
				height: (SECTION == 'home' ? "828" : "74"),			
				src: URL_BASE + (SECTION == 'home' ? "swf/home.swf" : "swf/menu.swf"),
				autoplay: true,
				caption: false,
				attrs:{id:'flash_dz'},
				params: {
					quality:"high",
					wmode: SECTION != 'home' ? 'transparent' : 'window',
					scale:'noScale'			
				},
				flashvars: {			
					URL_BASE: URL_BASE,
					SECTION: SECTION
				}
			});
		}
	};

	avon.init();           


	
	   if(!$.browser.msie){
		   var animar = $('#wrapper #content #right_side').attr('class');
		   if(animar == 'alphatoInit'){ 
			 $('#wrapper #content #right_side').animate({opacity:1}, 2000, "easeOutQuart");
			 
			 $('#flash #bunner_section .section_info h3').animate({marginLeft:-20, opacity:1}, 1500, "easeOutQuart");
			 $('#flash #bunner_section .section_info h2').animate({marginLeft:20, opacity:1}, 1500, "easeOutQuart");
			 			 
			 $('#flash #bunner_section .section_info h3').animate({marginLeft:0}, 1800, "easeOutQuart");
			 $('#flash #bunner_section .section_info h2').animate({marginLeft:0}, 1500, "easeOutQuart");
			 
			 }else{
				$('#flash #bunner_section .section_info h3').animate({marginLeft:-20, opacity:1}, 1500, "easeOutQuart");
				 $('#flash #bunner_section .section_info h2').animate({marginLeft:20, opacity:1}, 1500, "easeOutQuart");
				 $('#flash #bunner_section .section_info h3').animate({marginLeft:0}, 1800, "easeOutQuart");
				 $('#flash #bunner_section .section_info h2').animate({marginLeft:0}, 1500, "easeOutQuart");
			 }
		};
		
        //anima o rodapé, exceto IE 6
     	if (($.browser.msie && $.browser.version != '6.0') || !$.browser.msie){
			$('#footer #center-content ul li').find('a').mouseover(
				function(e) {
				 $(this).animate({color: "#f13592"}, 800, "easeOutQuart");
			});
			
			$('#footer #center-content ul li').find('a').mouseleave(
				function(e) {
					 $(this).animate({color: "#6D6D6D"}, 800, "easeOutQuart");
			});
		}
		
		$('#footer #parceiros ul').cycle({
			timeout: 2500,
			random: true,
			speed: 1000
		});
		
}); //end ready