jQuery(document).ready(function($){
	
	$('li.menu-item')
	.mouseover(function(){
		
		$(this).find('ul').css({'z-index':600}).show();
		
	})
	.mouseout(function(){
		
		$(this).find('ul').hide();
		
	})
	
	$('#password').keypress(function(e) {
        if(e.which == 13) {
        	$('form#loginform').submit();
        }
    });
});
