var currentURL;
	
	$(function(){
		
		currentURL = pageURL(document.location.href ? document.location.href : document.location);
		
		$('#navigation>li>a').each(function(){
				if($(this).attr('href') == currentURL){
					$(this).css({'color': '#ffffff', 'background-color': '#005294', 'border-left': 'solid 13px #b4b78b'});
				}									
		});
			
		$('#navigation>li>ul>li>a').each(function(){
			if($(this).attr('href') == currentURL){
				$(this).css({'color': '#ffffff', 'background-color': '#005294', 'border-left': 'solid 13px #b4b78b'});
				$(this).parents('ul:first').show();
			}						
		});
		$('#navigation>li>ul>li>ul>li>a').each(function(){
			if($(this).attr('href') == currentURL){
				$(this).css({'color': '#ffffff', 'background-color': '#005294', 'border-left': 'solid 13px #b4b78b'});
				$(this).parents('ul').show();
			}						
		});
		
	});
	
	function pageURL(url){
		
		var url = url.split('#');
		var url = url[0].split('?');

		var url = url[0].split('/');

		return (url.length<2) ? url : url[url.length-1];         
		
	}