<!--
window.status="HRCareerGuide - More Jobs. Better Opportunities."

function bookmarksite(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}
/*
$(document).ready(function() {
/*	
	// Control for TDG Network box
	// options 
    var time = 300;
    var hideDelay = 500;

    var hideDelayTimer = null;

    // tracker
    var beingShown = false;
    var shown = false;	
	
	var trigger = $('a#tdg-toggle');
    var popup = $('#tdg-network').hide();

	$(trigger.get(0)).click(function () {
      // stops the hide event if we move from the trigger to the popup element
      if (hideDelayTimer) clearTimeout(hideDelayTimer);

      // if we're being shown, or already visible, we want to fold it back up
      if (beingShown || shown) {
      	// store the timer so that it can be cleared in the mouseover if required
		hideDelayTimer = setTimeout(function () {
		  hideDelayTimer = null;
		  popup.slideUp(time, function () {
			// once the animate is complete, set the tracker variables
			shown = false;
		  });
		}, hideDelay);
      } else {
        beingShown = true;

        // reset position of popup box
        popup.css({
          left: $('#tdg-toggle').position().left-170
        }).slideDown(time, function() {
          // once the animation is complete, set the tracker variables
          beingShown = false;
          shown = true;
        });
      }
    });
	
    // set the mouseover and mouseout on both element
    $([trigger.get(0), popup.get(0)]).mouseover(function () {
      // stops the hide event if we move from the trigger to the popup element
      if (hideDelayTimer) clearTimeout(hideDelayTimer);
    }).mouseout(function () {
      // reset the timer if we get fired again - avoids double animations
      if (hideDelayTimer) clearTimeout(hideDelayTimer);
      
      // store the timer so that it can be cleared in the mouseover if required
      hideDelayTimer = setTimeout(function () {
        hideDelayTimer = null;
        popup.slideUp(time, function () {
          // once the animate is complete, set the tracker variables
          shown = false;
        });
      }, hideDelay);
    });
 * /
});  */ 

//-->