var AvonMaquiagem = {
	init : function(){
		AvonMaquiagem.print_flash_detail();
	},
	open_login : function(){
		jQuery('.login a').click();
	},
	response_login : function(){
		jQuery('#flashProdutoDetalhe').get(0).onLoginStatus();
	},
	print_flash_detail : function(){          
		jQuery('#conteudo #flash_details').media({
			width: "100%",
			height: 349,
			src: URL_BASE + "swf/produtos_detalhes.swf",
			autoplay: true,
			caption: false,
			attrs: { id: 'flashProdutoDetalhe'},
			params: {
				quality: "high",
				bgColor:"#FFFFFF",
				AllowScriptAccess:"always"
			},
			flashvars: {
				URL_BASE: URL_BASE,
				productID: PRODUCT_ID
			}
		});
	}
	
};
AvonMaquiagem.init();