if (window.location.toString().indexOf('empirestaging') < 0) {
  try {
  var pageTracker = _gat._getTracker("UA-0000000-0");
  pageTracker._trackPageview();
  } catch(err) {}
}
$(document).ready(function() {
  
  /* Clear Search text on Focus */
  $('#searchword').focus(function(){
    $(this).val('');
  })
	
	$('#searchForm').submit(function(event){
		//this grabs the search string and redirects to google in new window and appends site: 
		$('#searchForm input[name="q"]').val($('#searchForm input[name="searchword"]').val() + ' site:ethernetalliance.org');
	})
  
	// Activate SuperFish
  $("ul.sf-menu").supersubs({ 
    minWidth:    12,
    maxWidth:    27,
    extraWidth:  1
  }).superfish({
    animation: {
    height: 'show'
   },
   speed: 'fast',
   delay: 500,
   autoArrows: false
  });
	
});