// JavaScript Document

	$(document).ready(function() {
		//$(".widgettitle:contains('Recent Posts')").addClass("recpost");
							   
			$('#portRollover').mousedown(function () {  
					$(this).css("color","#570500");
					//$("#menu_sub").fadeIn(500).load("http://www.heathersincavage.com/resources/menu/portfolio.html");
					$('#menu_sub').load("resources/menu/portfolio.html");
					//$("#menu_sub").ajax({url: "http://www.heathersincavage.com/resources/menu/portfolio.html"});
					
					$("#menu_sub").css("background-image","url('http://www.heathersincavage.com/images/menu_portfolio.png')");
					$("#aboutRollover").css("color","#544b49");
					//alert('loaded');
					//$('#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");
					//alert('loaded');
			 });

		});

