if(screen.height < 770){
var link = document.createElement("link");
link.setAttribute("href", "fixed.css");
link.setAttribute("rel", "stylesheet");
link.setAttribute("type", "text/css");
document.getElementsByTagName("head")[0].appendChild(link);
}

function muestra_oculta(id){
if (document.getElementById){ //se obtiene el id
var el = document.getElementById(id); //se define la variable "el" igual a nuestro div
el.style.display = (el.style.display == 'none') ? 'block' : 'none'; //damos un atributo display:none que oculta el div
}
}
window.onload = function(){
muestra_oculta('discografia');
muestra_oculta('comprar');
}