$(document).ready(function()
{
	$('#content').hide().fadeIn(2000);
	$('#menu ul li a').hover(
		function() 
		{
			$(this).stop().animate({backgroundColor:'#0693E2', color:'#FFFFFF'}, "slow");
		},
		function() 
		{
			$(this).stop().animate({backgroundColor:'#FFFFFF',color:'#0693E2'}, "slow");
		}
	);
	
	$("a.inside").click(function()
	{
		$("#content").load($(this).attr("href"));
		return false;
	});

	$('#news').innerfade(
	{ 
		animationtype: 'fade', speed:2000, timeout:4000, type: 'random', containerheight: '1em' 
	}); 		
});
