jQuery(document).ready(function($){
	//matches keywords in the url. if there is a match then it will make sure that that menu item is highlighted
	var url = window.location.href;
	var about = /about/gi;
	var testimonial = /testimonial/gi;
	var classes = /classes/gi;
	var schedules = /schedules/gi;
	var blog = /blog/gi;
	
	if( url.match( about ) )
	{
		$( '#menu-item-917 a:link' ).css( 'color', '#00BCE9' );
	}
	if( url.match( testimonial ) )
	{
		$( '.page-item-1097 a:link' ).css( 'color', '#00BCE9' );
	}
	if( url.match( classes ) || url.match( schedules ) )
	{
		$( '#menu-item-957 a:link' ).css( 'color', '#00BCE9' );
	}
	if( url.match( blog ) )
	{
		$( '#menu-item-911 a:link' ).css( 'color', '#00BCE9' );
	}
});
