$(document).ready(function()
{
	
	selectMenu($(".menuItem:first-child"));
	
	$(".menuItem").click(function()
	{
		selectMenu(this);
	});	
	
	$(".menuItem").hover(function() 
	{
		$(".menuItem").not(this).css('opacity','0.25');
		$(this).animate({ color: "#990000" }, 500);
		},
		function() 
		{
			$(".menuItem").not(this).css('opacity','1');
			$(this).animate({ color: '#990000' }, 250);
		}
	);
});	

function selectMenu(menu)
{
	$('#content').text('');
	$('#content').load('content.php',"id="+$(menu).attr('id'),function (responseText, textStatus, XMLHttpRequest) {
		$(this).removeClass('ajax-loading');
		if(responseText.substring(0,3)=="ERR")
			$('#content').text('');
	}).addClass('ajax-loading');
	$(".menuItem").css('background-color','');
	$(menu).css('background-color','#e5b2b2');
}
