/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 */

$(function()
{
	$("#program .row .notes .text").hide();
	$("#program .row .notes a").hover(function()
	{
		$(this).slideUp("fast");
		$(this).parent(".notes").find(".text").slideDown("fast");
	});

});

