$(document).ready(function(){
	var i = 0;
	$("#navigation ul li:not(.cc) a").each(function() {
		$(this).css("background-color", "#D6D5C2");
		$(this).mouseover(function() {
			$(this).animate({backgroundColor: "#F1F1EA"}, 200);
		}).mouseout(function() {
			$(this).animate({backgroundColor: "#D6D5C2"}, 200);
		});
	});
	$("#sidebar ul li a").each(function() {
		$(this).css("color", "#333");
		$(this).mouseover(function() {
			$(this).animate({marginLeft: "0.5em",color: "#765"}, 200);
		}).mouseout(function() {
			$(this).animate({marginLeft: "0em", color: "#333"}, 200);
		});
	});
	
	if($("h2").length > 2)
	{
		$("#holder").append("<h1>On This Page</h1><ul id='anchors'></ul>");
		$("h2").each(function() {
			$(this).attr("id","heading-"+i);
			$("#anchors").append("<li><a href='#heading-"+i+"'>"+$(this).text()+"</a></li>");
			i++;
		});
	}
	
	$("input").focus(function () {
		if($(this).val() == 'Search')
		{
			$(this).val('');
		}
	});
});