jQuery(function($) {		
		/*****animacion contactos******/
		$("#img_soporte").hover(
			function(){	$(this).animate({	opacity: '0.7'	}, 300).css({cursor:cursor_support});	},
			function(){ $(this).animate({	opacity: '1'	}, 300);	}
								).click(function(){	window.location.href="../Empresa-de-servicios-informaticos/Asistencia-informatica-en-linea.html";	});

		/************animacion more*****************/
		$($("#proyectos").children("tbody").children("tr").children("td")[1]).children("ul").children("li").children("p").children("input:button").hover(
			function(){	$(this).animate({	opacity: '0.7'	}, 300).css({cursor:cursor_support}); 	},
			function(){ $(this).animate({	opacity: '1'	}, 300);	}
								).click(function(){	window.location.href="../Empresa-de-servicios-informaticos/Software-y-aplicaciones-web.html#"+$(this).attr("id");	});
		});