/*FACEBOX*/
jQuery(document).ready(function($) {
    $('a[rel*=facebox]').facebox({
      })
});



//<![CDATA[
function show_nav( id )
{
    var id = id;

    var section = document.getElementById( id );
    var head = document.getElementById ( id+'head' );
    var pic =  document.getElementById ( id+'pic' );
    
    if ( section.style.display == 'none')

        {
        section.style.display='block';
        head.style.marginBottom='0px';
        pic.setAttribute("src", "/pics/down.png");


        }
    else
        {
        section.style.display='none';
        head.style.marginBottom='10px';
        pic.setAttribute("src", "/pics/right.png");
        }
}
//]]>
