$(document).ready(function(){
	$('#nav ul li a span').each(function()
	{
		var theLink=$(this).parent().attr('href');
		var thePath='http://www.zibamedicalspa.com' + location.pathname;
		if(theLink==thePath)
		{
			$(this).css({'display': 'block','color': '#ACE1F3','padding-bottom': '6px','border-bottom': '6px solid #8DD4F2'});
		}
	});
});

