var AvonMaquiagem = {

	init : function(){
		AvonMaquiagem.print_flash_home();
		jQuery('a').click(function(e){
			if(jQuery(this).attr('rel') != 'external' && jQuery(this).attr('href') != '#'){
				e.preventDefault();
				jQuery('#flashHome').get(0).jsChangeSection(jQuery(this).attr('href'));
			}
		});
	},

	print_flash_home : function() {

		if(FlashDetect.installed) {

			if (FlashDetect.majorAtLeast(10)) {
				jQuery('.flash-content').media({
					width: "100%",
					height: "100%",
					src: URL_BASE + "swf/home.swf",
					autoplay: true,
					caption: false,
					attrs: { id: 'flashHome'},
					params: {
						quality: "high",
						bgColor: "#000000",
						AllowScriptAccess: "always"
					},
					flashvars: {
						URL_BASE: URL_BASE
					}
				});

			}else{
				window.location.href = URL_BASE + 'no-flash';
			}

		}else{
			window.location.href = URL_BASE + 'no-flash';
		}

	},

	open_menu : function(){
		jQuery('#menu .wrapper').slideDown("slow");
	}

};
AvonMaquiagem.init();