// JavaScript Document

$(document).ready( function()
{
	$('.menu li').hover(
		function()
		{
			$(this).children('.subMenu').show();
		},
		function()
		{
			// null
		}
	);

	$('.subMenu').hover(
		function()
		{
			// null
		},
		function()
		{
			$(this).hide();
		}
	);
});

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

function searchFieldHint(val)
{
	if (val.length > 1)
	{
		$('#searchFieldHints').show();

		$.ajax({
			type: "POST",
			url: "/modules/includes/searchBar.inc.php",
			data: "action=searchFieldHint&val=" + val,
			success: function(data) {
				$('#searchFieldHints').html(data);
			}
		});
	}
	else
	{
		$('#searchFieldHints').hide();
	}
}

function searchFieldHintPop(val)
{
	$('#search').val(val);
	$('#searchFieldHints').hide();
}