// JavaScript Document

/* Script to enable hover function by Samuel Livingston of http://blog.delivi.info */
$().ready(function() {
   $('.hoverable').hover(
	  function() {
		 $(this).addClass('hovered');     /* On hover add the class 'hovered' and apply the hovered styles */
	  }, function() {
		 $(this).removeClass('hovered');  /* On mouseout remove the class 'hovered' and reset the styles   */
	  }
   );
});
	
$().ready(function(){$('.close').click(function () {$('.navbox').hide();return false;});});
$().ready(function(){$('.nav-w').mouseover(function(){$('.navbox').show();}).mouseout(function(){$('.navbox').hide();});});
$().ready(function(){$('tbody tr:odd').addClass('altRow');});

// MM_openBrWindow v2.0
function MM_openBrWindow(theURL,winName,features) {
  window.open(theURL,winName,features);
}