/* JSON DATA
-------------------------------------*/
var myJSONObject = {

'secciones' : [
        {'titulo': 'inicio',
        'contenido': '<a id="sobre" href="contact.html">Contact</a>'
        +'<p>&nbsp;</p><h4>ORAL REHABILITATION</h4>'
        +'<p>Through diagnosis we stablish treatment planning with the object of harmony between the correct function and esthetic. Each case is studied  to provide the precisely solution using the different disciplines such as periodoncy, surgery, prosthesis, etc. </p>'
        },

        {'titulo': 'implantes',
        'contenido': '<a id="sobre" href="contact.html">Contact</a>'
        +'<h3>Smile again showing<br />a wide natural smile... </h3><h4>IMPLANTS</h4>'
        +'<p>Dental implants replace a lost tooth with a pure titanium structure (piece) fixed to the maxillary, giving to you not only an esthetic solution, but also comfort and confidence. You can implant a  piece when there’s  only one tooth missing, some or even when you  have no teeth at all.</p>'
        +'<p>Crowns are placed over the implant enabling to speak and eat easily. This method not only make you  look better and feel more comfortable but also help you to preserve your other teeth because it is unnecessary to use them as support.</p>'
        +'<p>There is no age limit for implants. They can be placed in young people who have reached full growth and in  elderly people who are healthy. You will feel them just like natural teeth.</p>'
        +'<p><a href="http://www.straumann.com" target="_blank">Suiss Implants:</a></p>'
        +'<p><img alt="Suiss Implants" class="banners" src="img/straumann.png" /></p><br />'
        },

        {'titulo': 'ortodoncia',
        'contenido': '<a id="sobre" href="contact.html">Contact</a>'
        +'<h3>Younger and more healthy... </h3><h4>ORTHODONTICS</h4>'
        +'<p>Actually, both men and women are looking for a younger  appearance  and a beautiful smile  is the beginning. Orthodontics  allows best results in less time. There are many mechanical systems really efficient  to improve teeth position an facial harmony.</p>'
        +'<h5>Damon System</h5><p>This is a different system, with low forces and  self ligation, that works with  the muscles of the face, tongue, bone and tissue. This system gives as result a beautiful wide smile  without extractions and with more comfort.</p>'
        +'<h5>Esthetics Brackets</h5><p>Nowadays there are a new generation  brackets, practically invisible, made of sapphire crystals. They are completely transparent.</p>'
        +'<h5>Lingual technique</h5><p>This treatment is fully aesthetic because  brackets are bonded behind teeth.</p><br />'
        },

        {'titulo': 'blanqueamiento',
        'contenido': '<a id="sobre" href="contact.html">Contact</a>'
        +'<h3>A great simile...</h3><h4>WHITENING</h4>'
        +'<p>The whitening makes the natural teeth whiter, achieving a beautiful  smile that increases your confidence  and self-esteem.<br />In only one session, in less than an hour, natural teeth , teeth  stained by coffee, tobacco, tea, etc can be whitened.</p><br />'
        },
		
		{'titulo': 'protesis',
        'contenido': '<a id="sobre" href="contact.html">Contact</a>'
        +'<p>&nbsp;</p><h4>PROSTHESIS</h4>'
        +'<p>This is used to replace lost pieces; only one, more than one, or all of them. There are a lot of possibilities to achieve the best result. The professional studies the case to suggest the best way to solve your problem.</p><br />'
        },
]
}

/* FUNCIONES
-------------------------------------*/

/* CAMBIO DE SECCIONES */
function mnu(nro)
    {
    var iditems = "item"+ [nro];
    document.getElementById('contenido').innerHTML = (myJSONObject.secciones[nro].contenido);
    
    };



  
