Event.observe(window, 'load', function() {
	$$('li.garota').each(function(element) {
		element.onmouseover = (function(){
			$(this).addClassName('ativado');
		});
		element.onmouseout = (function(){
			$(this).removeClassName('ativado');
		});
	});
});


var Hotlinks = {
	send: function (form) {
		$(form).request({
			onSuccess: function(transport) {
				/*
				* 0 - erro geral
				* 1 - sucesso
				* 2 - link ja existe
				*/
				switch (transport.responseText) {
					case '0': alert('Não foi possível indicar seu link, tente novamente mais tarde.'); break;
					case '1': alert('Seu link foi indicado com sucesso!'); $(form).reset(); GA.track('/site/preparese/hot links/indique'); break;
					case '2': alert('Este link já foi indicado, tente indicar outro link.'); break;
				}
			}
		});
	},

	click: function (click) {
		new Ajax.Request('hotlinks_cadastra_voto.php?click='+click, {method: 'get'});
		GA.track('/site/preparese/hot links/clique');
	}
}