	$(document).ready(function() {
			$('#portRollover').mousedown(function () {  
					$(this).css("color","#570500");
					//$("#menu_sub").fadeIn(500).load("resources/menu/portfolio.html");
					$('#menu_sub').load("resources/menu/portfolio.html");
					$("#menu_sub").css("background-image","url('http://www.heathersincavage.com/images/menu_portfolio.png')");
					$("#aboutRollover").css("color","#544b49");
					//$('#menu_portfolio').fadeIn();
					//setTimeout(function()  { $('#menu_portfolio').fadeOut(); }, 2000);
			 });

			$('#aboutRollover').mousedown(function () { 
					//$("#menu_sub").fadeOut(200);
					$(this).css("color","#570500");
					//$("#menu_sub").fadeIn('1000').load("resources/menu/about.html");
					$('#menu_sub').load("resources/menu/about.html");
					$("#menu_sub").css("background-image","url('http://www.heathersincavage.com/images/menu_about.png')");
					$("#portRollover").css("color","#544b49");		
			 });

		});


/*  Old Menu Function

$(document).ready(function() {
			$('#portRollover').mousedown(function () { 
					$(this).css("color","#570500");
					//$('#menu_portfolio').fadeIn();
					$('#menu_portfolio').css("visibility","visible");
					//setTimeout(function()  { $('#menu_portfolio').fadeOut(); }, 2000);		
			 });
		});
*/
