// script to control highlighting of subnav elements

$().ready(function(){
	var url = '';
	var a = window.location.href.split("//");
	var b = a[1].split("/");
	for(i = 1; i<b.length; i++)
	{
		//if(i>1) url += "\\/";
		url += "/"+b[i];
	}

	$('.site-nav li a').each(function(i, val) {
		if(url.indexOf($(this).attr('href'), 0) > -1)
		{
			$(this).parent().addClass('Selected');
		}
	});


});
