//** jmenu by Junhao
/* without jQuery
window.onload = function() {
	var lis = document.getElementById('jmenu').getElementsByTagName('li');
	  for (i = 0; i < lis.length; i++) {
	      var li = lis[i];
	      if (li.className == 'topmenu') {
	          li.onmouseover = function() { this.getElementsByTagName('ul').item(0).style.display = 'block'; }
	          li.onmouseout = function() { this.getElementsByTagName('ul').item(0).style.display = 'none'; }
	      }
	  }
}
 or with jQuery: */
$(document).ready(function(){
$('#jmenu li.topmenu').hover(
function() { $('ul', this).css('display', 'block'); },
function() { $('ul', this).css('display', 'none'); });
});
//** jmenu (end)