//$(document).ready(function()
//{
//	$("#navigation li").hover(function ()
//	{
//        	$(".anchor", this).animate(
//		{
//			bottom: "-54px"
//		});
//        	$(".hover", this).animate(
//		{
//			bottom: "0px"
//		});
//	},
//
//	function ()
//	{
//        	$(".hover", this).animate(
//		{
//			bottom: "-54px"
//		});
//        	$(".anchor", this).animate(
//		{
//			bottom: "0px"
//		});
//	});
// });

$(document).ready(function()
{
	$("#navigation .hover").hide();
	$("#navigation li").hover(function ()
	{
        	$(".hover", this).fadeIn('fast');
	},
	function ()
	{
        	$(".hover", this).fadeOut('fast');
	});
 });


