var store;

var out;

var nav;



function showfirst (arg) {

        if (document.getElementById) {

                store = document.getElementById('con'+arg);

                store.style.visibility='visible';

                nav = document.getElementById('nav'+arg);

                nav.style.color = '#ffb41b';

        }

}



function unhide (arg) {

        if (document.getElementById && store != undefined) {

                store.style.visibility='hidden';

                nav.style.color = '#000000';

                store = document.getElementById('con'+arg);

                store.style.visibility='visible';

                nav = document.getElementById('nav'+arg);

                nav.style.color = '#ffb41b';

                nav.blur();

        }

}



function mover (arg) {

        out = document.getElementById('nav'+arg);

        out.style.color = '#ffb41b';

}



function mout (arg) {

        if (out != nav)

                out.style.color = '#000000';

}





