﻿
// ONO (www.ono.es) - Código para páginas Home - Octavio Molano - Ago, 2009

$(function() // Inicialización de eventos jQuery
{
	if ($('#ono_topmsg').length > 0) // Asignación de eventos a botón de cierre en mensajes superiores
	{
		$('#ono_topmsg div a').click(closeTopMsg);
	}
});

function closeTopMsg()
{
	$('#ono_topmsg').slideUp('slow');

	i = 0;
	while ($('#home_slider_btn' + (++i)).length > 0) // Se añade "nomsg=true" a los enlaces para accesibilidad de los botones
	{
		$('#home_slider_btn' + i + ' a').attr('href',
			$('#home_slider_btn' + i + ' a').attr('href') + '&nomsg=true'
		);
	}

	return false; // Evita que se cargue el enlace del href
}
