$(document).ready(function() { 
	$('#nav').find('a').each(function(){
	if( location.href.indexOf(this.href) != -1) {
	$(this).addClass('active');}
	});
	
	$("h1").dropShadow({left: -1, top: -1, blur: 3, opacity: 0.8, color: "#456A13"});
	$("#tagline span").dropShadow({left: 0, top: 0, blur: 3, opacity: 0.8, color: "#456A13"});

	//$('#content').corners("8px top");
	//$('#6monthsmile').corners("8px");
 
});