// JavaScript Document

$(document).ready( function()
{
	$('.menu .menuItem').hover(
		function(){
			$(this).children('.subMenu').show();
		},
		function(){
			$(this).children('.subMenu').hide();
		}
	);
});

function errorClose()
{
	$('#error').hide();
}