// JavaScript Document

$(function() {

    $(".computers_technology").accessNews({
        newsHeadline: "DSgN Comunicación. Servicios ",
        newsSpeed: "normal"
    });



    /*

    newsHeadline: "Top Stories"  (String)          |  Each unique slider (id) or set of sliders (class) can receive a headline.
    newsSpeed: "normal"          (String/Integer)  |  "slow","normal","fast", or an integer, with 1 being the fastest animation.

    */

});



	function mostrar() {
		var unaTabla, mostrar;
		unaTabla = document.getElementById("unaTabla");
		if(unaTabla.style.visibility == "hidden") {
			unaTabla.style.visibility = "visible";
			mostrar = document.getElementById("mostrar").childNodes[0];
			mostrar.data = "Ocultar";
		}
		else {
			unaTabla.style.visibility = "hidden";
			mostrar = document.getElementById("mostrar").childNodes[0];
			mostrar.data = "Acceso clientes";
		}

	}
