$(document).ready(function($){	
	if (($.browser.msie && $.browser.version != '6.0') || !$.browser.msie){
	//action for balls of header
	$('#details #conteudo #products .right-side ul li').mouseover(
		function(e) {			
		//var id = $(this).attr('class');
		$(this).find('a').stop()
			.animate({
				opacity:'.1'		
			},{queue:false, duration:600}
		);
	});
	
	$('#details #conteudo #products .right-side ul li').mouseout(
		function(e) {		
		
		$(this).find('a').stop()
			.animate({
				opacity:'1'
			}, {queue:false, duration:600});		
	});		
	}
});





var AvonMaquiagem = {
	init : function(){
		AvonMaquiagem.print_flash_title();
	},
	
	print_flash_title : function(){          
		jQuery('#details #conteudo #products .destaque-flash').media({
			width: 495,
			height: 402,
			src: CDN_URL_BASE + "swf/standard_photo.swf?" + CDN_HASH,
			autoplay: true,
			caption: false,			
			params: {
				quality: "high",
				wmode:'transparent',
				AllowScriptAccess: 'always'				
			},
			flashvars: {			
				URL_BASE: URL_BASE,
				fileURL: CDN_URL_BASE + "swf/design_e_tecnologia.swf?" + CDN_HASH,
				CDN_URL_BASE: CDN_URL_BASE,
				CDN_HASH: CDN_HASH,
				fileURL: CDN_URL_BASE + "img/produtos/design_e_tecnologia/img_produto.jpg?" + CDN_HASH
			}
		});
	}
};
AvonMaquiagem.init();
