/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 */

$(function()
{
	$("#program .row .notes").hover(function()
	{
		$(this).parents(".row").animate({ height: 140 }, "fast");
	},
	function()
	{
		$(this).parents(".row").animate({ height: 100 }, "fast");
	});

});
