$("a[href='#top']").click(function(){$("html").animate({scrollTop:0},"slow");return false;});

$(document).ready(function() 
{
	$(document).pngFix();
	$('#menu li').hover
	(
		function()
		{
			$(this).addClass("mover"); 
		},
		function()
		{
			$(this).removeClass('mover');
			$('#menu a.selected').parent().addClass("mover"); 
		}
	);
	$('#menu li').click
	(
		function()
		{
			window.location = $(this).find("a").attr("href"); return false;
		}
	);

});

