// Actually links the page
function sendUser(elem) {
	if( elem.value != 'none' )
		document.location.href= elem.value;
}

/*// Cross Browser AddEvent
function addEvent(elm, evType, fn, useCapture)
{
  if (elm.addEventListener) {
    elm.addEventListener(evType, fn, useCapture); 
    return true; 
  } else if (elm.attachEvent) {
    var r = elm.attachEvent('on' + evType, fn); 
    return r; 
  } else {
    elm['on' + evType] = fn;
  }
}

// Set up the init
addEvent(window, 'load', init, false);
function init () {
	// Get the nav bar and attach the listener
	var interest_nav = document.getElementById('interest_nav');
	addEvent(interest_nav, 'change', sendUser(this), false);
}*/
