/**
* FWR Menu System
*/
  $( document ).ready( function() {
    var menu_container = document.getElementById( "fwr_menu_container" );
    disableSelection( menu_container );
  });

  function disableSelection( target ) {
    if ( typeof target.onselectstart != "undefined" ) { // IE
      target.onselectstart=function() {
        return false;
      }
    } else if ( typeof target.style.MozUserSelect!="undefined" ) { // Firefox
      target.style.MozUserSelect = "none";
    } else // All others (ie: Opera)
      target.onmousedown = function() {
        return false
      }
      target.style.cursor = "default";
  }

  function toggle_factory( id ) {
    if ( $( '#childof_' + id ).is(":visible") ) { 
      $('#childof_' + id  ).fadeOut('slow', function() {
        $( '#cat_' + id ).removeClass( 'make_bold' );
      });
    } else {
      $('#childof_' + id + ':hidden').fadeIn('slow', function() {
        $( '#cat_' + id ).addClass( 'make_bold' );
      });
    }
  }
