/* plugin */
jQuery.fn.dwFadingLinks = function(settings) {
	settings = jQuery.extend({
		color: '#291505',
		duration: 500
	}, settings);
	return this.each(function() {
		var original = $(this).css('color');
		$(this).mouseover(function() { $(this).animate({ color: settings.color },settings.duration); });
		$(this).mouseout(function() { $(this).animate({ color: original },settings.duration); });
	});
};

/*new stuff*/
//Grab the original BG color of the link
var originalBG = $(".animate").css("color"); 
//The color you want to fade too
var fadeColor = "#CCCCCC"; 

//Now animate on links with class = animate
$(".animate").hover( 
	function() { 
		$(this)
			//Fade to the new color
			.animate({color:fadeColor}, 750)
			//Fade back to original color
			.animate({color:originalBG},750) 
		}, 
	function(){
			
		}
	);

/* CUSTOM STUFF */
$(document).ready(function(){ 
  $("#subSide").hide(); 
  $("#heads").toggle( 
    function(){$("#subSide").show("slow");},  
    function(){$("#subSide").hide("slow");});  
});

		
$(document).ready(function(){
  $(".subsideTwo").hide(); 
  $("#markers").toggle( 
    function(){$(".subsideTwo").show("slow");},  
    function(){$(".subsideTwo").hide("slow");});
});

$(document).ready(function(){
  $(".subsideThree").hide(); 
  $("#access").toggle( 
    function(){$(".subsideThree").show("slow");},  
    function(){$(".subsideThree").hide("slow");});
});

