$(document).ready(function()
{
	$('.topMenu li.parent').hover(function()
	{
		id = $(this).attr('id').substr(5);
		if(id)
		{
			$(this).children('div.topSubMenu').html($('#subMenu_'+id));
			$('#subMenu_'+id).show();
		}
		$(this).children('div.topSubMenu').show();
	},
	function()
	{
		$(this).children('div.topSubMenu').hide();
	});
	
	// Submit forms
	$('input:text, input:password').keyup(function(e)
	{
		if(e.keyCode==13)
		{
			$(this).parents('form').submit();
		}
	});
});

function doAjaxPost(page, params, success)
{
	$.ajax({
		type: 'POST',
		url: page,
		data: params,
		dataType: 'text',
		success: success
	});
}
