function showNews(year) {
  // var onlnk = document.getElementById('gallery_online_link');
  // var on = document.getElementById('gallery_online');
  // var ontitle = document.getElementById('gallery_online_title');
  // var relnk = document.getElementById('gallery_recent_link');
  // var re = document.getElementById('gallery_recent');
  // var retitle = document.getElementById('gallery_recent_title');
  
  var news2012lnk = document.getElementById('navNews2012');
  var news2012 = document.getElementById('news2012');
  var news2011lnk = document.getElementById('navNews2011');
  var news2011 = document.getElementById('news2011');
  var news2010lnk = document.getElementById('navNews2010');
  var news2010 = document.getElementById('news2010');
  var news2009lnk = document.getElementById('navNews2009');
  var news2009 = document.getElementById('news2009');
  // var news2008lnk = document.getElementById('navNews2008');
  // var news2008 = document.getElementById('news2008');
  
  
  if (year == '2012') {
    news2012lnk.style.fontWeight = 'bold'; 
    news2012lnk.style.color = 'black'; 
    news2012lnk.style.textDecoration = 'none'; 
    news2012lnk.style.cursor = 'default'; 
    
    news2011lnk.style.fontWeight = 'normal'; 
    news2011lnk.style.color = '#003399'; 
    news2011lnk.style.textDecoration = 'underline'; 
    news2011lnk.style.cursor = 'pointer'; 
    
    news2010lnk.style.fontWeight = 'normal'; 
    news2010lnk.style.color = '#003399'; 
    news2010lnk.style.textDecoration = 'underline'; 
    news2010lnk.style.cursor = 'pointer'; 
    
    news2009lnk.style.fontWeight = 'normal'; 
    news2009lnk.style.color = '#003399'; 
    news2009lnk.style.textDecoration = 'underline'; 
    news2009lnk.style.cursor = 'pointer'; 
    
    // news2008lnk.style.fontWeight = 'normal'; 
    // news2008lnk.style.color = '#003399'; 
    // news2008lnk.style.textDecoration = 'underline'; 
    // news2008lnk.style.cursor = 'pointer'; 
    
    news2011lnk.style.display = 'inline';
    news2011.style.display = 'none';
    news2010lnk.style.display = 'inline';
    news2010.style.display = 'none';
    news2009lnk.style.display = 'inline';
    news2009.style.display = 'none';
    // news2008lnk.style.display = 'inline';
    // news2008.style.display = 'none';
    news2012.style.display = 'block';
  }
  else if (year == '2011') {
    news2011lnk.style.fontWeight = 'bold'; 
    news2011lnk.style.color = 'black'; 
    news2011lnk.style.textDecoration = 'none'; 
    news2011lnk.style.cursor = 'default'; 
    
    news2012lnk.style.fontWeight = 'normal'; 
    news2012lnk.style.color = '#003399'; 
    news2012lnk.style.textDecoration = 'underline'; 
    news2012lnk.style.cursor = 'pointer'; 
    
    news2010lnk.style.fontWeight = 'normal'; 
    news2010lnk.style.color = '#003399'; 
    news2010lnk.style.textDecoration = 'underline'; 
    news2010lnk.style.cursor = 'pointer'; 
    
    news2009lnk.style.fontWeight = 'normal'; 
    news2009lnk.style.color = '#003399'; 
    news2009lnk.style.textDecoration = 'underline'; 
    news2009lnk.style.cursor = 'pointer'; 
    
    // news2008lnk.style.fontWeight = 'normal'; 
    // news2008lnk.style.color = '#003399'; 
    // news2008lnk.style.textDecoration = 'underline'; 
    // news2008lnk.style.cursor = 'pointer'; 
    
    news2012lnk.style.display = 'inline';
    news2012.style.display = 'none';
    news2010lnk.style.display = 'inline';
    news2010.style.display = 'none';
    news2009lnk.style.display = 'inline';
    news2009.style.display = 'none';
    // news2008lnk.style.display = 'inline';
    // news2008.style.display = 'none';
    news2011.style.display = 'block';
  }
  else if (year == '2010') {
    news2010lnk.style.fontWeight = 'bold'; 
    news2010lnk.style.color = 'black'; 
    news2010lnk.style.textDecoration = 'none'; 
    news2010lnk.style.cursor = 'default'; 

    news2012lnk.style.fontWeight = 'normal'; 
    news2012lnk.style.color = '#003399'; 
    news2012lnk.style.textDecoration = 'underline'; 
    news2012lnk.style.cursor = 'pointer'; 
    
    news2011lnk.style.fontWeight = 'normal'; 
    news2011lnk.style.color = '#003399'; 
    news2011lnk.style.textDecoration = 'underline'; 
    news2011lnk.style.cursor = 'pointer'; 
    
    news2009lnk.style.fontWeight = 'normal'; 
    news2009lnk.style.color = '#003399'; 
    news2009lnk.style.textDecoration = 'underline'; 
    news2009lnk.style.cursor = 'pointer'; 
    
    // news2008lnk.style.fontWeight = 'normal'; 
    // news2008lnk.style.color = '#003399'; 
    // news2008lnk.style.textDecoration = 'underline'; 
    // news2008lnk.style.cursor = 'pointer'; 
    
    news2012lnk.style.display = 'inline';
    news2012.style.display = 'none';
    news2011lnk.style.display = 'inline';
    news2011.style.display = 'none';
    news2009lnk.style.display = 'inline';
    news2009.style.display = 'none';
    // news2008lnk.style.display = 'inline';
    // news2008.style.display = 'none';
    news2010.style.display = 'block';
  }
  else if (year == '2009') {
    news2009lnk.style.fontWeight = 'bold'; 
    news2009lnk.style.color = 'black'; 
    news2009lnk.style.textDecoration = 'none'; 
    news2009lnk.style.cursor = 'default'; 

    news2012lnk.style.fontWeight = 'normal'; 
    news2012lnk.style.color = '#003399'; 
    news2012lnk.style.textDecoration = 'underline'; 
    news2012lnk.style.cursor = 'pointer'; 
    
    news2011lnk.style.fontWeight = 'normal'; 
    news2011lnk.style.color = '#003399'; 
    news2011lnk.style.textDecoration = 'underline'; 
    news2011lnk.style.cursor = 'pointer'; 
    
    news2010lnk.style.fontWeight = 'normal'; 
    news2010lnk.style.color = '#003399'; 
    news2010lnk.style.textDecoration = 'underline'; 
    news2010lnk.style.cursor = 'pointer'; 
    
    // news2008lnk.style.fontWeight = 'normal'; 
    // news2008lnk.style.color = '#003399'; 
    // news2008lnk.style.textDecoration = 'underline'; 
    // news2008lnk.style.cursor = 'pointer'; 
    
    news2012lnk.style.display = 'inline';
    news2012.style.display = 'none';
    news2011lnk.style.display = 'inline';
    news2011.style.display = 'none';
    news2010lnk.style.display = 'inline';
    news2010.style.display = 'none';
    // news2008lnk.style.display = 'inline';
    // news2008.style.display = 'none';
    news2009.style.display = 'block';
  }
  /* else if (year == '2008') {
    news2008lnk.style.fontWeight = 'bold'; 
    news2008lnk.style.color = 'black'; 
    news2008lnk.style.textDecoration = 'none'; 
    news2008lnk.style.cursor = 'default'; 
    
    news2012lnk.style.fontWeight = 'normal'; 
    news2012lnk.style.color = '#003399'; 
    news2012lnk.style.textDecoration = 'underline'; 
    news2012lnk.style.cursor = 'pointer'; 
    
    news2011lnk.style.fontWeight = 'normal'; 
    news2011lnk.style.color = '#003399'; 
    news2011lnk.style.textDecoration = 'underline'; 
    news2011lnk.style.cursor = 'pointer'; 
    
    news2010lnk.style.fontWeight = 'normal'; 
    news2010lnk.style.color = '#003399'; 
    news2010lnk.style.textDecoration = 'underline'; 
    news2010lnk.style.cursor = 'pointer'; 
    
    news2009lnk.style.fontWeight = 'normal'; 
    news2009lnk.style.color = '#003399'; 
    news2009lnk.style.textDecoration = 'underline'; 
    news2009lnk.style.cursor = 'pointer'; 
    
    news2012lnk.style.display = 'inline';
    news2012.style.display = 'none';
    news2011lnk.style.display = 'inline';
    news2011.style.display = 'none';
    news2010lnk.style.display = 'inline';
    news2010.style.display = 'none';
    news2009lnk.style.display = 'inline';
    news2009.style.display = 'none';
    news2008.style.display = 'block';
  } */
  else {
    // onlnk.style.fontWeight = 'bold'; 
    // onlnk.style.color = 'black'; 
    // onlnk.style.textDecoration = 'none'; 
    // onlnk.style.cursor = 'default'; 

    // relnk.style.fontWeight = 'normal'; 
    // relnk.style.color = '#3366CC'; 
    // relnk.style.textDecoration = 'underline'; 
    // relnk.style.cursor = 'pointer'; 

    // on.style.display = 'block';
    // relnk.style.display = 'inline';
    // re.style.display = 'none';
  }
}

function init() {
  var news2012 = document.getElementById('news2012');
  var news2011 = document.getElementById('news2011');
  var news2010 = document.getElementById('news2010');
  var news2009 = document.getElementById('news2009');
  // var news2008 = document.getElementById('news2008');
  
  var news2012lnk = document.getElementById('navNews2012');
  var news2011lnk = document.getElementById('navNews2011');
  var news2010lnk = document.getElementById('navNews2010');
  var news2009lnk = document.getElementById('navNews2009');
  // var news2008lnk = document.getElementById('navNews2008');
  
  news2012lnk.style.fontWeight = 'bold'; 
  news2012lnk.style.color = 'black'; 
  news2012lnk.style.textDecoration = 'none'; 
  news2012lnk.style.cursor = 'default'; 
}

