//menu HTML code
var thesetabs = "\
<a href='index.htm'><img src='images/tab01dwn.jpg' border='0' width='180' height='20' alt='Decisiones' /></a>\
<a href='estudiar_mejor.htm'><img src='images/tab02dwn.jpg' border='0' width='180' height='20' alt='Para estudiar mejor' /></a>\
<a href='stress.htm'><img src='images/tab03dwn.jpg' border='0' width='180' height='20' alt='Estoy estresado' /></a>";

//menu insert function
function InsertMeTB(cons_tabs_menu)
{
 if (document.getElementById || document.all || document.layers)
 		{
		document.getElementById(cons_tabs_menu).innerHTML+=thesetabs;
		}
}