$(document).ready(function()
{
	$("#nav ul").attr("id", "lavalamp");
	$("#nav ul").addClass("lavalamp");

	function getSection()
	{ 
		var section = window.location.href.split("/");

		for ( i=0; i < section.length; i++ )
		{
			if( section[i] == "training" )
			{
				activeSection = document.getElementById("nav_training");
				activeSection.className = "current";
			}

			if( section[i] == "boarding" )
			{
				activeSection = document.getElementById("nav_boarding");
				activeSection.className = "current";
			}
			
			if( section[i] == "grooming" )
			{
				activeSection = document.getElementById("nav_grooming");
				activeSection.className = "current";
			}

			if( section[i] == "breeding" )
			{
				activeSection = document.getElementById("nav_about");
				activeSection.className = "current";
			}

			if( section[i] == "about_us" )
			{
				activeSection = document.getElementById("nav_about");
				activeSection.className = "current";
			}

			if( section[i] == "testimonials" )
			{
				activeSection = document.getElementById("nav_testimonials");
				activeSection.className = "current";
			}

			if( section[i] == "contact_us" )
			{
				activeSection = document.getElementById("nav_contact");
				activeSection.className = "current";
			}
		}
	}
	getSection();

	$("#lavalamp").lavaLamp({
                fx: "easeOutBack",
                speed: 700
            });
});