// Function to Clear intial value in a form field
function clearText(thefield){
if (thefield.defaultValue==thefield.value)
thefield.value = ""
}

// Copyright year snippet
function setCopyright(element)
{
theSpan = document.getElementById(element);
var date = parseInt(theSpan.innerHTML);
var year = new Date().getFullYear();
if(year > date)
theSpan.innerHTML = year;
else
theSpan.innerHTML = date;
}

// Get year
$(document).ready(function(){
	$("#year").text( (new Date).getFullYear() );
});


// Animated Scrolling Script for Same-Page Links
$(document).ready(function() {
  function filterPath(string) {
  return string
	.replace(/^\//,'')
	.replace(/(index|default).[a-zA-Z]{3,4}$/,'')
	.replace(/\/$/,'');
  }
  var locationPath = filterPath(location.pathname);
  $('a[href*=#]').each(function() {
	var thisPath = filterPath(this.pathname) || locationPath;
	if (  locationPath == thisPath
	&& (location.hostname == this.hostname || !this.hostname)
	&& this.hash.replace(/#/,'') ) {
	  var $target = $(this.hash), target = this.hash;
	  if (target) {
		var targetOffset = $target.offset().top;
		$(this).click(function(event) {
		  event.preventDefault();
		  $('html, body').animate({scrollTop: targetOffset}, 400, function() {
			location.hash = target;
		  });
		});
	  }
	}
  });
});

$(document).ready(function(){
	$('.entry').click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});

$(document).ready(function(){
	$('.office').click(function(){
	  window.location=$(this).find("a").attr("href"); return false;
	});

});

// Breadcrumb class for subnav
$(document).ready(function(){
	$("#res-aside a").each(function() {
	if(this.href == window.location || this.href == document.location.protocol + "//" + window.location.hostname + window.location.pathname.substring(1))
	
		 $(this).addClass("location");
	});
	
});
