function hoverNav()
{
	$('#list-nav .item-nav').each
	(
		function()
		{
			$(this).mouseover
			(
				function()
				{
					if($(this).attr('class') != "item-nav sep")
					{
						$(this).css('background','url(../images/bg-nav-hover.png) scroll center top repeat-x');
					}
				}
			);
			
			$(this).mouseout
			(
				function()
				{
					if($(this).attr('class') != "item-nav sep")
					{
						$(this).css('background','url(../images/bg-nav.png) scroll center top repeat-x');
					}
				}
			);			
		}
	);
}

function appear(id)
{
	$("#"+id).css('display','block');
}

function hide(id)
{
	$("#"+id).css('display','none');
}
