
var timeout         = 500;
var closetimer		= 0;
var ddmenuitem      = 0;

function jsddm_open()
{	jsddm_canceltimer();
	jsddm_close();
	ddmenuitem = $(this).find('ul').eq(0).css('visibility', 'visible');}

function jsddm_close()
{	if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');}

function jsddm_timer()
{	closetimer = window.setTimeout(jsddm_close, timeout);}

function jsddm_canceltimer()
{	if(closetimer)
	{	window.clearTimeout(closetimer);
		closetimer = null;}}

$(document).ready(function()
{	
	$('#jsddm > li').bind('mouseover', jsddm_open);
	$('#jsddm > li').bind('mouseout',  jsddm_timer);
	$('table.sortable tbody tr:not([th]):odd').addClass('odd');
	 $('table.sortable tbody tr:not([th]):even').addClass('even');
	});

document.onclick = jsddm_close;

/*
$(document).ready(
	function()
	{

	  $('table.sortable tbody tr:not([th]):odd').addClass('odd');
	  $('table.sortable tbody tr:not([th]):even').addClass('even');
	}
);
*/

function init()
{
//register key listener with document object
   document.onkeydown = keyListener; 
}

function keyListener(e){
   if(!e){
      //for IE
      e = window.event;
   }
   if(e.keyCode==121){
 window.open('https://thecampus.xpandit.co.za/owa','','height=600,width=800,resizable=yes,toolbar=yes');

   }
 
}

onload=init;