/**
 * JS
 * @author Darío Ruellan <druellan@ecimtech.com>
 * @copyright ecimTech 2009
 */

$(function()
{
	$("#header_main").hide();
//	$("#navigation li").hide();
	$(window).load(function()
	{
		$("#header_main").show("slow");
//		$("#navigation li").show("normal");
	});
});

